realms_service.proto 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.gaming.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/cloud/gaming/v1/realms.proto";
  19. import "google/longrunning/operations.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/gaming/v1;gaming";
  21. option java_multiple_files = true;
  22. option java_package = "com.google.cloud.gaming.v1";
  23. // A realm is a grouping of game server clusters that are considered
  24. // interchangeable.
  25. service RealmsService {
  26. option (google.api.default_host) = "gameservices.googleapis.com";
  27. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  28. // Lists realms in a given project and location.
  29. rpc ListRealms(ListRealmsRequest) returns (ListRealmsResponse) {
  30. option (google.api.http) = {
  31. get: "/v1/{parent=projects/*/locations/*}/realms"
  32. };
  33. option (google.api.method_signature) = "parent";
  34. }
  35. // Gets details of a single realm.
  36. rpc GetRealm(GetRealmRequest) returns (Realm) {
  37. option (google.api.http) = {
  38. get: "/v1/{name=projects/*/locations/*/realms/*}"
  39. };
  40. option (google.api.method_signature) = "name";
  41. }
  42. // Creates a new realm in a given project and location.
  43. rpc CreateRealm(CreateRealmRequest) returns (google.longrunning.Operation) {
  44. option (google.api.http) = {
  45. post: "/v1/{parent=projects/*/locations/*}/realms"
  46. body: "realm"
  47. };
  48. option (google.api.method_signature) = "parent,realm,realm_id";
  49. option (google.longrunning.operation_info) = {
  50. response_type: "Realm"
  51. metadata_type: "OperationMetadata"
  52. };
  53. }
  54. // Deletes a single realm.
  55. rpc DeleteRealm(DeleteRealmRequest) returns (google.longrunning.Operation) {
  56. option (google.api.http) = {
  57. delete: "/v1/{name=projects/*/locations/*/realms/*}"
  58. };
  59. option (google.api.method_signature) = "name";
  60. option (google.longrunning.operation_info) = {
  61. response_type: "google.protobuf.Empty"
  62. metadata_type: "OperationMetadata"
  63. };
  64. }
  65. // Patches a single realm.
  66. rpc UpdateRealm(UpdateRealmRequest) returns (google.longrunning.Operation) {
  67. option (google.api.http) = {
  68. patch: "/v1/{realm.name=projects/*/locations/*/realms/*}"
  69. body: "realm"
  70. };
  71. option (google.api.method_signature) = "realm,update_mask";
  72. option (google.longrunning.operation_info) = {
  73. response_type: "Realm"
  74. metadata_type: "OperationMetadata"
  75. };
  76. }
  77. // Previews patches to a single realm.
  78. rpc PreviewRealmUpdate(PreviewRealmUpdateRequest) returns (PreviewRealmUpdateResponse) {
  79. option (google.api.http) = {
  80. patch: "/v1/{realm.name=projects/*/locations/*/realms/*}:previewUpdate"
  81. body: "realm"
  82. };
  83. }
  84. }