123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- syntax = "proto3";
- package google.cloud.sql.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/sql/v1;sql";
- option java_multiple_files = true;
- option java_outer_classname = "CloudSqlTiersProto";
- option java_package = "com.google.cloud.sql.v1";
- service SqlTiersService {
- 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 List(SqlTiersListRequest) returns (TiersListResponse) {
- option (google.api.http) = {
- get: "/v1/projects/{project}/tiers"
- };
- }
- }
- message SqlTiersListRequest {
-
- string project = 1;
- }
- message TiersListResponse {
-
- string kind = 1;
-
- repeated Tier items = 2;
- }
- message Tier {
-
-
- string tier = 1;
-
- int64 RAM = 2;
-
- string kind = 3;
-
- int64 Disk_Quota = 4;
-
- repeated string region = 5;
- }
|