123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- syntax = "proto3";
- package google.cloud.datacatalog.v1;
- import "google/api/field_behavior.proto";
- import "google/cloud/datacatalog/v1/common.proto";
- import "google/protobuf/timestamp.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.DataCatalog.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1;datacatalog";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.datacatalog.v1";
- option php_namespace = "Google\\Cloud\\DataCatalog\\V1";
- option ruby_package = "Google::Cloud::DataCatalog::V1";
- message SearchCatalogResult {
-
-
-
-
- SearchResultType search_result_type = 1;
-
-
-
-
-
-
- string search_result_subtype = 2;
-
-
-
-
-
-
- string relative_resource_name = 3;
-
-
-
-
-
-
-
-
- string linked_resource = 4;
-
- google.protobuf.Timestamp modify_time = 7;
-
-
- oneof system {
-
-
- IntegratedSystem integrated_system = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string user_specified_system = 9;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string fully_qualified_name = 10;
-
- string display_name = 12;
-
-
- string description = 13;
- }
- enum SearchResultType {
-
- SEARCH_RESULT_TYPE_UNSPECIFIED = 0;
-
- ENTRY = 1;
-
- TAG_TEMPLATE = 2;
-
- ENTRY_GROUP = 3;
- }
|