cloud_sql_connect.proto 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.sql.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/cloud/sql/v1/cloud_sql_resources.proto";
  19. import "google/protobuf/timestamp.proto";
  20. import "google/api/client.proto";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/sql/v1;sql";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "CloudSqlConnectProto";
  24. option java_package = "com.google.cloud.sql.v1";
  25. // LINT: LEGACY_NAMES
  26. // Cloud SQL connect service.
  27. service SqlConnectService {
  28. option (google.api.default_host) = "sqladmin.googleapis.com";
  29. option (google.api.oauth_scopes) =
  30. "https://www.googleapis.com/auth/cloud-platform,"
  31. "https://www.googleapis.com/auth/sqlservice.admin";
  32. // Retrieves connect settings about a Cloud SQL instance.
  33. rpc GetConnectSettings(GetConnectSettingsRequest) returns (ConnectSettings) {
  34. option (google.api.http) = {
  35. get: "/v1/projects/{project}/instances/{instance}/connectSettings"
  36. };
  37. }
  38. // Generates a short-lived X509 certificate containing the provided public key
  39. // and signed by a private key specific to the target instance. Users may use
  40. // the certificate to authenticate as themselves when connecting to the
  41. // database.
  42. rpc GenerateEphemeralCert(GenerateEphemeralCertRequest) returns (GenerateEphemeralCertResponse) {
  43. option (google.api.http) = {
  44. post: "/v1/projects/{project}/instances/{instance}:generateEphemeralCert"
  45. body: "*"
  46. };
  47. }
  48. }
  49. // Connect settings retrieval request.
  50. message GetConnectSettingsRequest {
  51. // Cloud SQL instance ID. This does not include the project ID.
  52. string instance = 1;
  53. // Project ID of the project that contains the instance.
  54. string project = 2;
  55. // Optional. Optional snapshot read timestamp to trade freshness for performance.
  56. google.protobuf.Timestamp read_time = 7 [(google.api.field_behavior) = OPTIONAL];
  57. }
  58. // Connect settings retrieval response.
  59. message ConnectSettings {
  60. // This is always `sql#connectSettings`.
  61. string kind = 1;
  62. // SSL configuration.
  63. SslCert server_ca_cert = 2;
  64. // The assigned IP addresses for the instance.
  65. repeated IpMapping ip_addresses = 3;
  66. // The cloud region for the instance. e.g. **us-central1**, **europe-west1**.
  67. // The region cannot be changed after instance creation.
  68. string region = 4;
  69. // The database engine type and version. The **databaseVersion**
  70. // field cannot be changed after instance creation.
  71. // MySQL instances: **MYSQL_8_0**, **MYSQL_5_7** (default),
  72. // or **MYSQL_5_6**.
  73. // PostgreSQL instances: **POSTGRES_9_6**, **POSTGRES_10**,
  74. // **POSTGRES_11** or **POSTGRES_12** (default).
  75. // SQL Server instances: **SQLSERVER_2017_STANDARD** (default),
  76. // **SQLSERVER_2017_ENTERPRISE**, **SQLSERVER_2017_EXPRESS**, or
  77. // **SQLSERVER_2017_WEB**.
  78. SqlDatabaseVersion database_version = 31;
  79. // **SECOND_GEN**: Cloud SQL database instance.
  80. // **EXTERNAL**: A database server that is not managed by Google.
  81. // This property is read-only; use the **tier** property in the **settings**
  82. // object to determine the database type.
  83. SqlBackendType backend_type = 32;
  84. }
  85. // Ephemeral certificate creation request.
  86. message GenerateEphemeralCertRequest {
  87. // Cloud SQL instance ID. This does not include the project ID.
  88. string instance = 1;
  89. // Project ID of the project that contains the instance.
  90. string project = 2;
  91. // PEM encoded public key to include in the signed certificate.
  92. string public_key = 3;
  93. // Optional. Access token to include in the signed certificate.
  94. string access_token = 4 [(google.api.field_behavior) = OPTIONAL];
  95. // Optional. Optional snapshot read timestamp to trade freshness for performance.
  96. google.protobuf.Timestamp read_time = 7 [(google.api.field_behavior) = OPTIONAL];
  97. }
  98. // Ephemeral certificate creation request.
  99. message GenerateEphemeralCertResponse {
  100. // Generated cert
  101. SslCert ephemeral_cert = 1;
  102. }