1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186 |
- syntax = "proto3";
- package google.cloud.datacatalog.v1beta1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/datacatalog/v1beta1/common.proto";
- import "google/cloud/datacatalog/v1beta1/gcs_fileset_spec.proto";
- import "google/cloud/datacatalog/v1beta1/schema.proto";
- import "google/cloud/datacatalog/v1beta1/search.proto";
- import "google/cloud/datacatalog/v1beta1/table_spec.proto";
- import "google/cloud/datacatalog/v1beta1/tags.proto";
- import "google/cloud/datacatalog/v1beta1/timestamps.proto";
- import "google/iam/v1/iam_policy.proto";
- import "google/iam/v1/policy.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/field_mask.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.DataCatalog.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1beta1;datacatalog";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.datacatalog.v1beta1";
- option php_namespace = "Google\\Cloud\\DataCatalog\\V1beta1";
- option ruby_package = "Google::Cloud::DataCatalog::V1beta1";
- service DataCatalog {
- option (google.api.default_host) = "datacatalog.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc SearchCatalog(SearchCatalogRequest) returns (SearchCatalogResponse) {
- option (google.api.http) = {
- post: "/v1beta1/catalog:search"
- body: "*"
- };
- option (google.api.method_signature) = "scope,query";
- }
-
-
-
-
-
-
-
- rpc CreateEntryGroup(CreateEntryGroupRequest) returns (EntryGroup) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*}/entryGroups"
- body: "entry_group"
- };
- option (google.api.method_signature) = "parent,entry_group_id,entry_group";
- }
-
-
-
-
-
- rpc UpdateEntryGroup(UpdateEntryGroupRequest) returns (EntryGroup) {
- option (google.api.http) = {
- patch: "/v1beta1/{entry_group.name=projects/*/locations/*/entryGroups/*}"
- body: "entry_group"
- };
- option (google.api.method_signature) = "entry_group";
- option (google.api.method_signature) = "entry_group,update_mask";
- }
-
- rpc GetEntryGroup(GetEntryGroupRequest) returns (EntryGroup) {
- option (google.api.http) = {
- get: "/v1beta1/{name=projects/*/locations/*/entryGroups/*}"
- };
- option (google.api.method_signature) = "name";
- option (google.api.method_signature) = "name,read_mask";
- }
-
-
-
-
-
- rpc DeleteEntryGroup(DeleteEntryGroupRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/entryGroups/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListEntryGroups(ListEntryGroupsRequest) returns (ListEntryGroupsResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{parent=projects/*/locations/*}/entryGroups"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
-
-
-
-
-
-
-
- rpc CreateEntry(CreateEntryRequest) returns (Entry) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*}/entries"
- body: "entry"
- };
- option (google.api.method_signature) = "parent,entry_id,entry";
- }
-
-
-
-
-
- rpc UpdateEntry(UpdateEntryRequest) returns (Entry) {
- option (google.api.http) = {
- patch: "/v1beta1/{entry.name=projects/*/locations/*/entryGroups/*/entries/*}"
- body: "entry"
- };
- option (google.api.method_signature) = "entry";
- option (google.api.method_signature) = "entry,update_mask";
- }
-
-
-
-
-
-
-
- rpc DeleteEntry(DeleteEntryRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/entryGroups/*/entries/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc GetEntry(GetEntryRequest) returns (Entry) {
- option (google.api.http) = {
- get: "/v1beta1/{name=projects/*/locations/*/entryGroups/*/entries/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
- rpc LookupEntry(LookupEntryRequest) returns (Entry) {
- option (google.api.http) = {
- get: "/v1beta1/entries:lookup"
- };
- }
-
- rpc ListEntries(ListEntriesRequest) returns (ListEntriesResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*}/entries"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
-
-
-
- rpc CreateTagTemplate(CreateTagTemplateRequest) returns (TagTemplate) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*}/tagTemplates"
- body: "tag_template"
- };
- option (google.api.method_signature) = "parent,tag_template_id,tag_template";
- }
-
- rpc GetTagTemplate(GetTagTemplateRequest) returns (TagTemplate) {
- option (google.api.http) = {
- get: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
-
-
-
-
- rpc UpdateTagTemplate(UpdateTagTemplateRequest) returns (TagTemplate) {
- option (google.api.http) = {
- patch: "/v1beta1/{tag_template.name=projects/*/locations/*/tagTemplates/*}"
- body: "tag_template"
- };
- option (google.api.method_signature) = "tag_template";
- option (google.api.method_signature) = "tag_template,update_mask";
- }
-
-
-
-
-
- rpc DeleteTagTemplate(DeleteTagTemplateRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*}"
- };
- option (google.api.method_signature) = "name,force";
- }
-
-
-
-
-
- rpc CreateTagTemplateField(CreateTagTemplateFieldRequest) returns (TagTemplateField) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*/tagTemplates/*}/fields"
- body: "tag_template_field"
- };
- option (google.api.method_signature) = "parent,tag_template_field_id,tag_template_field";
- }
-
-
-
-
-
- rpc UpdateTagTemplateField(UpdateTagTemplateFieldRequest) returns (TagTemplateField) {
- option (google.api.http) = {
- patch: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}"
- body: "tag_template_field"
- };
- option (google.api.method_signature) = "name,tag_template_field";
- option (google.api.method_signature) = "name,tag_template_field,update_mask";
- }
-
-
-
-
-
- rpc RenameTagTemplateField(RenameTagTemplateFieldRequest) returns (TagTemplateField) {
- option (google.api.http) = {
- post: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}:rename"
- body: "*"
- };
- option (google.api.method_signature) = "name,new_tag_template_field_id";
- }
-
-
-
-
-
- rpc DeleteTagTemplateField(DeleteTagTemplateFieldRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}"
- };
- option (google.api.method_signature) = "name,force";
- }
-
-
-
-
-
-
-
- rpc CreateTag(CreateTagRequest) returns (Tag) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*/entries/*}/tags"
- body: "tag"
- additional_bindings {
- post: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*}/tags"
- body: "tag"
- }
- };
- option (google.api.method_signature) = "parent,tag";
- }
-
- rpc UpdateTag(UpdateTagRequest) returns (Tag) {
- option (google.api.http) = {
- patch: "/v1beta1/{tag.name=projects/*/locations/*/entryGroups/*/entries/*/tags/*}"
- body: "tag"
- additional_bindings {
- patch: "/v1beta1/{tag.name=projects/*/locations/*/entryGroups/*/tags/*}"
- body: "tag"
- }
- };
- option (google.api.method_signature) = "tag";
- option (google.api.method_signature) = "tag,update_mask";
- }
-
- rpc DeleteTag(DeleteTagRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/entryGroups/*/entries/*/tags/*}"
- additional_bindings {
- delete: "/v1beta1/{name=projects/*/locations/*/entryGroups/*/tags/*}"
- }
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListTags(ListTagsRequest) returns (ListTagsResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*/entries/*}/tags"
- additional_bindings {
- get: "/v1beta1/{parent=projects/*/locations/*/entryGroups/*}/tags"
- }
- };
- option (google.api.method_signature) = "parent";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:setIamPolicy"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/entryGroups/*}:setIamPolicy"
- body: "*"
- }
- };
- option (google.api.method_signature) = "resource,policy";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:getIamPolicy"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/entryGroups/*}:getIamPolicy"
- body: "*"
- }
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/entryGroups/*/entries/*}:getIamPolicy"
- body: "*"
- }
- };
- option (google.api.method_signature) = "resource";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:testIamPermissions"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/entryGroups/*}:testIamPermissions"
- body: "*"
- }
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/entryGroups/*/entries/*}:testIamPermissions"
- body: "*"
- }
- };
- }
- }
- message SearchCatalogRequest {
-
- message Scope {
-
-
-
- repeated string include_org_ids = 2;
-
-
-
- repeated string include_project_ids = 3;
-
-
-
-
- bool include_gcp_public_datasets = 7;
- }
-
-
-
-
- Scope scope = 6 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
- string query = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- int32 page_size = 2;
-
-
-
-
-
-
- string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
-
- string order_by = 5;
- }
- message SearchCatalogResponse {
-
- repeated SearchCatalogResult results = 1;
-
- string next_page_token = 3;
- }
- message CreateEntryGroupRequest {
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
-
-
- string entry_group_id = 3 [(google.api.field_behavior) = REQUIRED];
-
- EntryGroup entry_group = 2;
- }
- message UpdateEntryGroupRequest {
-
- EntryGroup entry_group = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- google.protobuf.FieldMask update_mask = 2;
- }
- message GetEntryGroupRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
- google.protobuf.FieldMask read_mask = 2;
- }
- message DeleteEntryGroupRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
- bool force = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message ListEntryGroupsRequest {
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
-
- int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
- string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message ListEntryGroupsResponse {
-
- repeated EntryGroup entry_groups = 1;
-
-
- string next_page_token = 2;
- }
- message CreateEntryRequest {
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
- string entry_id = 3 [(google.api.field_behavior) = REQUIRED];
-
- Entry entry = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message UpdateEntryRequest {
-
- Entry entry = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.FieldMask update_mask = 2;
- }
- message DeleteEntryRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/Entry"
- }
- ];
- }
- message GetEntryRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/Entry"
- }
- ];
- }
- message LookupEntryRequest {
-
-
- oneof target_name {
-
-
-
-
-
-
-
-
-
- string linked_resource = 1;
-
-
-
-
-
-
-
-
-
-
-
-
- string sql_resource = 3;
- }
- }
- message Entry {
- option (google.api.resource) = {
- type: "datacatalog.googleapis.com/Entry"
- pattern: "projects/{project}/locations/{location}/entryGroups/{entry_group}/entries/{entry}"
- };
-
-
-
-
-
-
- string name = 1 [(google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- }];
-
-
-
-
-
-
-
-
-
-
-
-
- string linked_resource = 9;
-
- oneof entry_type {
-
-
- EntryType type = 2;
-
-
-
-
-
-
-
-
-
-
- string user_specified_type = 16;
- }
-
- oneof system {
-
-
- IntegratedSystem integrated_system = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string user_specified_system = 18;
- }
-
- oneof type_spec {
-
-
- GcsFilesetSpec gcs_fileset_spec = 6;
-
-
- BigQueryTableSpec bigquery_table_spec = 12;
-
-
-
- BigQueryDateShardedSpec bigquery_date_sharded_spec = 15;
- }
-
-
-
- string display_name = 3;
-
-
- string description = 4;
-
- Schema schema = 5;
-
-
-
-
- SystemTimestamps source_system_timestamps = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message EntryGroup {
- option (google.api.resource) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- pattern: "projects/{project}/locations/{location}/entryGroups/{entry_group}"
- };
-
-
-
-
-
-
- string name = 1;
-
-
- string display_name = 2;
-
-
-
- string description = 3;
-
- SystemTimestamps data_catalog_timestamps = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message CreateTagTemplateRequest {
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/TagTemplate"
- }
- ];
-
- string tag_template_id = 3 [(google.api.field_behavior) = REQUIRED];
-
- TagTemplate tag_template = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message GetTagTemplateRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplate"
- }
- ];
- }
- message UpdateTagTemplateRequest {
-
- TagTemplate tag_template = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
- google.protobuf.FieldMask update_mask = 2;
- }
- message DeleteTagTemplateRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplate"
- }
- ];
-
-
-
- bool force = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message CreateTagRequest {
-
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/Tag"
- }
- ];
-
- Tag tag = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message UpdateTagRequest {
-
- Tag tag = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- google.protobuf.FieldMask update_mask = 2;
- }
- message DeleteTagRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/Tag"
- }
- ];
- }
- message CreateTagTemplateFieldRequest {
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplate"
- }
- ];
-
-
-
-
-
- string tag_template_field_id = 2 [(google.api.field_behavior) = REQUIRED];
-
- TagTemplateField tag_template_field = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message UpdateTagTemplateFieldRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplateField"
- }
- ];
-
- TagTemplateField tag_template_field = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.FieldMask update_mask = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message RenameTagTemplateFieldRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplateField"
- }
- ];
-
- string new_tag_template_field_id = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteTagTemplateFieldRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/TagTemplateField"
- }
- ];
-
-
-
- bool force = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message ListTagsRequest {
-
-
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "datacatalog.googleapis.com/Tag"
- }
- ];
-
- int32 page_size = 2;
-
-
- string page_token = 3;
- }
- message ListTagsResponse {
-
- repeated Tag tags = 1;
-
-
- string next_page_token = 2;
- }
- message ListEntriesRequest {
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "datacatalog.googleapis.com/EntryGroup"
- }
- ];
-
-
- int32 page_size = 2;
-
-
- string page_token = 3;
-
-
-
-
- google.protobuf.FieldMask read_mask = 4;
- }
- message ListEntriesResponse {
-
- repeated Entry entries = 1;
-
-
- string next_page_token = 2;
- }
- enum EntryType {
-
- ENTRY_TYPE_UNSPECIFIED = 0;
-
-
- TABLE = 2;
-
-
- MODEL = 5;
-
-
- DATA_STREAM = 3;
-
-
- FILESET = 4;
- }
|