-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added support for BigQuery connections entries feat: Added supp…
…ort for BigQuery routines entries feat: Added usage_signal field feat: Added labels field feat: Added ReplaceTaxonomy in Policy Tag Manager Serialization API feat: Added support for p... (#277) * feat: Added support for BigQuery connections entries feat: Added support for BigQuery routines entries feat: Added usage_signal field feat: Added labels field feat: Added ReplaceTaxonomy in Policy Tag Manager Serialization API feat: Added support for public tag templates feat: Added support for rich text tags docs: Documentation improvements PiperOrigin-RevId: 387350333 Source-Link: googleapis/googleapis@5b1f7cf Source-Link: googleapis/googleapis-gen@171a5d0 * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/master/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Jeffrey Rennie <rennie@google.com>
- Loading branch information
1 parent
ba649f8
commit fb312c1
Showing
25 changed files
with
13,398 additions
and
8,806 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
packages/google-cloud-datacatalog/protos/google/cloud/datacatalog/v1/bigquery.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// 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 = "BigQueryProto"; | ||
option java_package = "com.google.cloud.datacatalog.v1"; | ||
option php_namespace = "Google\\Cloud\\DataCatalog\\V1"; | ||
option ruby_package = "Google::Cloud::DataCatalog::V1"; | ||
|
||
// Specification for the BigQuery connection. | ||
message BigQueryConnectionSpec { | ||
// The type of the BigQuery connection. | ||
enum ConnectionType { | ||
// Unspecified type. | ||
CONNECTION_TYPE_UNSPECIFIED = 0; | ||
|
||
// Cloud SQL connection. | ||
CLOUD_SQL = 1; | ||
} | ||
|
||
// The type of the BigQuery connection. | ||
ConnectionType connection_type = 1; | ||
|
||
oneof connection_spec { | ||
// Specification for the BigQuery connection to a Cloud SQL instance. | ||
CloudSqlBigQueryConnectionSpec cloud_sql = 2; | ||
} | ||
|
||
// True if there are credentials attached to the BigQuery connection; false | ||
// otherwise. | ||
bool has_credential = 3; | ||
} | ||
|
||
// Specification for the BigQuery connection to a Cloud SQL instance. | ||
message CloudSqlBigQueryConnectionSpec { | ||
// Supported Cloud SQL database types. | ||
enum DatabaseType { | ||
// Unspecified database type. | ||
DATABASE_TYPE_UNSPECIFIED = 0; | ||
|
||
// Cloud SQL for PostgreSQL. | ||
POSTGRES = 1; | ||
|
||
// Cloud SQL for MySQL. | ||
MYSQL = 2; | ||
} | ||
|
||
// Cloud SQL instance ID in the format of `project:location:instance`. | ||
string instance_id = 1; | ||
|
||
// Database name. | ||
string database = 2; | ||
|
||
// Type of the Cloud SQL database. | ||
DatabaseType type = 3; | ||
} | ||
|
||
// Fields specific for BigQuery routines. | ||
message BigQueryRoutineSpec { | ||
// Paths of the imported libraries. | ||
repeated string imported_libraries = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.