Skip to content

Commit

Permalink
feat: new RenameTagTemplateFieldEnumValue API (#244)
Browse files Browse the repository at this point in the history
* feat: Policy Tag Manager v1 API service feat: new RenameTagTemplateFieldEnumValue API feat: adding fully_qualified_name in lookup and search feat: added DATAPROC_METASTORE integrated system along with new entry types: DATABASE and SERVICE docs: Documentation improvements

PiperOrigin-RevId: 365620142

Source-Author: Google APIs <[email protected]>
Source-Date: Mon Mar 29 11:20:23 2021 -0700
Source-Repo: googleapis/googleapis
Source-Sha: a1ab4d44db02d59ff58810c6d4182d84e4b9abaa
Source-Link: googleapis/googleapis@a1ab4d4

* docs: reformat comments in PolicyTagManager definition

PiperOrigin-RevId: 368687296

Source-Author: Google APIs <[email protected]>
Source-Date: Thu Apr 15 11:56:51 2021 -0700
Source-Repo: googleapis/googleapis
Source-Sha: 91eee3d039fbdbadee008393504900287bbc6f43
Source-Link: googleapis/googleapis@91eee3d
  • Loading branch information
yoshi-automation authored Apr 27, 2021
1 parent 4e82a45 commit 470ebd9
Show file tree
Hide file tree
Showing 30 changed files with 20,542 additions and 1,169 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -35,4 +35,7 @@ enum IntegratedSystem {

// Cloud Pub/Sub.
CLOUD_PUBSUB = 2;

// Dataproc Metastore.
DATAPROC_METASTORE = 3;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2021 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.v1;

import "google/api/field_behavior.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_outer_classname = "DataSourceProto";
option java_package = "com.google.cloud.datacatalog.v1";
option php_namespace = "Google\\Cloud\\DataCatalog\\V1";
option ruby_package = "Google::Cloud::DataCatalog::V1";

// Describes the physical location of an entry.
message DataSource {
// Service name where the data is stored.
enum Service {
// Default unknown service.
SERVICE_UNSPECIFIED = 0;

// Google Cloud Storage service.
CLOUD_STORAGE = 1;

// BigQuery service.
BIGQUERY = 2;
}

// Service in which the data is physically stored.
Service service = 1;

// Full name of the resource as defined by the service, e.g.
// //bigquery.googleapis.com/projects/{project_id}/locations/{location}/datasets/{dataset_id}/tables/{table_id}
string resource = 2;
}
Loading

0 comments on commit 470ebd9

Please sign in to comment.