123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- syntax = "proto3";
- package google.cloud.sql.v1beta4;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/cloud/sql/v1beta4/cloud_sql_resources.proto";
- import "google/protobuf/duration.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/sql/v1beta4;sql";
- option java_multiple_files = true;
- option java_outer_classname = "CloudSqlConnectProto";
- option java_package = "com.google.cloud.sql.v1beta4";
- service SqlConnectService {
- option (google.api.default_host) = "sqladmin.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform,"
- "https://www.googleapis.com/auth/sqlservice.admin";
-
- rpc GetConnectSettings(GetConnectSettingsRequest) returns (ConnectSettings) {
- option (google.api.http) = {
- get: "/sql/v1beta4/projects/{project}/instances/{instance}/connectSettings"
- };
- }
-
-
-
-
- rpc GenerateEphemeralCert(GenerateEphemeralCertRequest) returns (GenerateEphemeralCertResponse) {
- option (google.api.http) = {
- post: "/sql/v1beta4/projects/{project}/instances/{instance}:generateEphemeralCert"
- body: "*"
- };
- }
- }
- message GetConnectSettingsRequest {
-
- string instance = 1;
-
- string project = 2;
-
- google.protobuf.Timestamp read_time = 7 [(google.api.field_behavior) = OPTIONAL];
- }
- message ConnectSettings {
-
- string kind = 1;
-
- SslCert server_ca_cert = 2;
-
- repeated IpMapping ip_addresses = 3;
-
-
- string region = 4;
-
-
-
-
-
-
-
-
-
-
-
- SqlDatabaseVersion database_version = 31;
-
-
-
-
- SqlBackendType backend_type = 32;
- }
- message GenerateEphemeralCertRequest {
-
- string instance = 1;
-
- string project = 2;
-
- string public_key = 3;
-
- string access_token = 4 [(google.api.field_behavior) = OPTIONAL];
-
- google.protobuf.Timestamp read_time = 7 [(google.api.field_behavior) = OPTIONAL];
-
- google.protobuf.Duration valid_duration = 12 [(google.api.field_behavior) = OPTIONAL];
- }
- message GenerateEphemeralCertResponse {
-
- SslCert ephemeral_cert = 1;
- }
|