123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- syntax = "proto3";
- package google.cloud.bigquery.connection.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.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 csharp_namespace = "Google.Cloud.BigQuery.Connection.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/connection/v1;connection";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.bigquery.connection.v1";
- option php_namespace = "Google\\Cloud\\BigQuery\\Connection\\V1";
- service ConnectionService {
- option (google.api.default_host) = "bigqueryconnection.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/bigquery,"
- "https://www.googleapis.com/auth/cloud-platform";
-
- rpc CreateConnection(CreateConnectionRequest) returns (Connection) {
- option (google.api.http) = {
- post: "/v1/{parent=projects/*/locations/*}/connections"
- body: "connection"
- };
- option (google.api.method_signature) = "parent,connection,connection_id";
- }
-
- rpc GetConnection(GetConnectionRequest) returns (Connection) {
- option (google.api.http) = {
- get: "/v1/{name=projects/*/locations/*/connections/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListConnections(ListConnectionsRequest) returns (ListConnectionsResponse) {
- option (google.api.http) = {
- get: "/v1/{parent=projects/*/locations/*}/connections"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
- rpc UpdateConnection(UpdateConnectionRequest) returns (Connection) {
- option (google.api.http) = {
- patch: "/v1/{name=projects/*/locations/*/connections/*}"
- body: "connection"
- };
- option (google.api.method_signature) = "name,connection,update_mask";
- }
-
- rpc DeleteConnection(DeleteConnectionRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/{name=projects/*/locations/*/connections/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
- rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1/{resource=projects/*/locations/*/connections/*}:getIamPolicy"
- body: "*"
- };
- option (google.api.method_signature) = "resource,options";
- }
-
-
-
-
- rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1/{resource=projects/*/locations/*/connections/*}:setIamPolicy"
- body: "*"
- };
- option (google.api.method_signature) = "resource,policy";
- }
-
-
-
-
-
-
-
- rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) {
- option (google.api.http) = {
- post: "/v1/{resource=projects/*/locations/*/connections/*}:testIamPermissions"
- body: "*"
- };
- option (google.api.method_signature) = "resource,permissions";
- }
- }
- message CreateConnectionRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- string connection_id = 2 [(google.api.field_behavior) = OPTIONAL];
-
- Connection connection = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message GetConnectionRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "bigqueryconnection.googleapis.com/Connection"
- }
- ];
- }
- message ListConnectionsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- int32 page_size = 4 [(google.api.field_behavior) = REQUIRED];
-
- string page_token = 3;
- }
- message ListConnectionsResponse {
-
- string next_page_token = 1;
-
- repeated Connection connections = 2;
- }
- message UpdateConnectionRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "bigqueryconnection.googleapis.com/Connection"
- }
- ];
-
- Connection connection = 2 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.FieldMask update_mask = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteConnectionRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "bigqueryconnection.googleapis.com/Connection"
- }
- ];
- }
- message Connection {
- option (google.api.resource) = {
- type: "bigqueryconnection.googleapis.com/Connection"
- pattern: "projects/{project}/locations/{location}/connections/{connection}"
- };
-
-
- string name = 1;
-
- string friendly_name = 2;
-
- string description = 3;
-
- oneof properties {
-
- CloudSqlProperties cloud_sql = 4;
-
- AwsProperties aws = 8;
-
- AzureProperties azure = 11;
-
- CloudSpannerProperties cloud_spanner = 21;
-
- CloudResourceProperties cloud_resource = 22;
- }
-
- int64 creation_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- int64 last_modified_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- bool has_credential = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message CloudSqlProperties {
-
- enum DatabaseType {
-
- DATABASE_TYPE_UNSPECIFIED = 0;
-
- POSTGRES = 1;
-
- MYSQL = 2;
- }
-
- string instance_id = 1;
-
- string database = 2;
-
- DatabaseType type = 3;
-
- CloudSqlCredential credential = 4 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
-
-
- string service_account_id = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message CloudSqlCredential {
-
- string username = 1;
-
- string password = 2;
- }
- message CloudSpannerProperties {
-
- string database = 1;
-
- bool use_parallelism = 2;
- }
- message AwsProperties {
-
- oneof authentication_method {
-
-
-
- AwsCrossAccountRole cross_account_role = 2 [deprecated = true];
-
-
- AwsAccessRole access_role = 3;
- }
- }
- message AwsCrossAccountRole {
-
-
- string iam_role_id = 1;
-
- string iam_user_id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string external_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message AwsAccessRole {
-
-
- string iam_role_id = 1;
-
-
- string identity = 2;
- }
- message AzureProperties {
-
- string application = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string client_id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string object_id = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string customer_tenant_id = 4;
-
-
- string redirect_uri = 5;
-
-
- string federated_application_client_id = 6;
-
-
-
- string identity = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message CloudResourceProperties {
-
-
-
-
-
-
-
-
-
-
- string service_account_id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|