12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // Copyright 2020 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.datacatalog.v1beta1;
- import "google/cloud/datacatalog/v1beta1/common.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";
- // A result that appears in the response of a search request. Each result
- // captures details of one entry that matches the search.
- message SearchCatalogResult {
- // Type of the search result. This field can be used to determine which Get
- // method to call to fetch the full resource.
- SearchResultType search_result_type = 1;
- // Sub-type of the search result. This is a dot-delimited description of the
- // resource's full type, and is the same as the value callers would provide in
- // the "type" search facet. Examples: `entry.table`, `entry.dataStream`,
- // `tagTemplate`.
- string search_result_subtype = 2;
- // The relative resource name of the resource in URL format.
- // Examples:
- //
- // * `projects/{project_id}/locations/{location_id}/entryGroups/{entry_group_id}/entries/{entry_id}`
- // * `projects/{project_id}/tagTemplates/{tag_template_id}`
- string relative_resource_name = 3;
- // The full name of the cloud resource the entry belongs to. See:
- // https://cloud.google.com/apis/design/resource_names#full_resource_name.
- // Example:
- //
- // * `//bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/tableId`
- string linked_resource = 4;
- }
- // The different types of resources that can be returned in search.
- enum SearchResultType {
- // Default unknown type.
- SEARCH_RESULT_TYPE_UNSPECIFIED = 0;
- // An [Entry][google.cloud.datacatalog.v1beta1.Entry].
- ENTRY = 1;
- // A [TagTemplate][google.cloud.datacatalog.v1beta1.TagTemplate].
- TAG_TEMPLATE = 2;
- // An [EntryGroup][google.cloud.datacatalog.v1beta1.EntryGroup].
- ENTRY_GROUP = 3;
- }
|