game_server_configs.proto 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. // Copyright 2020 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.v1beta;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/gaming/v1beta/common.proto";
  19. import "google/protobuf/timestamp.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/gaming/v1beta;gaming";
  21. option java_multiple_files = true;
  22. option java_package = "com.google.cloud.gaming.v1beta";
  23. option php_namespace = "Google\\Cloud\\Gaming\\V1beta";
  24. // Request message for GameServerConfigsService.ListGameServerConfigs.
  25. message ListGameServerConfigsRequest {
  26. // Required. The parent resource name. Uses the form:
  27. //
  28. // `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/configs/*`.
  29. string parent = 1 [
  30. (google.api.field_behavior) = REQUIRED,
  31. (google.api.resource_reference) = {
  32. child_type: "gameservices.googleapis.com/GameServerConfig"
  33. }
  34. ];
  35. // Optional. The maximum number of items to return. If unspecified, server
  36. // will pick an appropriate default. Server may return fewer items than
  37. // requested. A caller should only rely on response's
  38. // [next_page_token][google.cloud.gaming.v1beta.ListGameServerConfigsResponse.next_page_token]
  39. // to determine if there are more GameServerConfigs left to be queried.
  40. int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
  41. // Optional. The next_page_token value returned from a previous list request,
  42. // if any.
  43. string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
  44. // Optional. The filter to apply to list results.
  45. string filter = 4 [(google.api.field_behavior) = OPTIONAL];
  46. // Optional. Specifies the ordering of results following syntax at
  47. // https://cloud.google.com/apis/design/design_patterns#sorting_order.
  48. string order_by = 5 [(google.api.field_behavior) = OPTIONAL];
  49. }
  50. // Response message for GameServerConfigsService.ListGameServerConfigs.
  51. message ListGameServerConfigsResponse {
  52. // The list of game server configs.
  53. repeated GameServerConfig game_server_configs = 1;
  54. // Token to retrieve the next page of results, or empty if there are no more
  55. // results in the list.
  56. string next_page_token = 2;
  57. // List of locations that could not be reached.
  58. repeated string unreachable = 4;
  59. }
  60. // Request message for GameServerConfigsService.GetGameServerConfig.
  61. message GetGameServerConfigRequest {
  62. // Required. The name of the game server config to retrieve. Uses the form:
  63. //
  64. // `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/configs/{config}`.
  65. string name = 1 [
  66. (google.api.field_behavior) = REQUIRED,
  67. (google.api.resource_reference) = {
  68. type: "gameservices.googleapis.com/GameServerConfig"
  69. }
  70. ];
  71. }
  72. // Request message for GameServerConfigsService.CreateGameServerConfig.
  73. message CreateGameServerConfigRequest {
  74. // Required. The parent resource name. Uses the form:
  75. //
  76. // `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/`.
  77. string parent = 1 [
  78. (google.api.field_behavior) = REQUIRED,
  79. (google.api.resource_reference) = {
  80. child_type: "gameservices.googleapis.com/GameServerConfig"
  81. }
  82. ];
  83. // Required. The ID of the game server config resource to be created.
  84. string config_id = 2 [(google.api.field_behavior) = REQUIRED];
  85. // Required. The game server config resource to be created.
  86. GameServerConfig game_server_config = 3
  87. [(google.api.field_behavior) = REQUIRED];
  88. }
  89. // Request message for GameServerConfigsService.DeleteGameServerConfig.
  90. message DeleteGameServerConfigRequest {
  91. // Required. The name of the game server config to delete. Uses the form:
  92. //
  93. // `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/configs/{config}`.
  94. string name = 1 [
  95. (google.api.field_behavior) = REQUIRED,
  96. (google.api.resource_reference) = {
  97. type: "gameservices.googleapis.com/GameServerConfig"
  98. }
  99. ];
  100. }
  101. // Autoscaling config for an Agones fleet.
  102. message ScalingConfig {
  103. // Required. The name of the Scaling Config
  104. string name = 1 [(google.api.field_behavior) = REQUIRED];
  105. // Required. Agones fleet autoscaler spec. Example spec:
  106. // https://agones.dev/site/docs/reference/fleetautoscaler/
  107. string fleet_autoscaler_spec = 2 [(google.api.field_behavior) = REQUIRED];
  108. // Labels used to identify the game server clusters to which this Agones
  109. // scaling config applies. A game server cluster is subject to this Agones
  110. // scaling config if its labels match any of the selector entries.
  111. repeated LabelSelector selectors = 4;
  112. // The schedules to which this Scaling Config applies.
  113. repeated Schedule schedules = 5;
  114. }
  115. // Fleet configs for Agones.
  116. message FleetConfig {
  117. // Agones fleet spec. Example spec:
  118. // `https://agones.dev/site/docs/reference/fleet/`.
  119. string fleet_spec = 1;
  120. // The name of the FleetConfig.
  121. string name = 2;
  122. }
  123. // A game server config resource.
  124. message GameServerConfig {
  125. option (google.api.resource) = {
  126. type: "gameservices.googleapis.com/GameServerConfig"
  127. pattern: "projects/{project}/locations/{location}/gameServerDeployments/{deployment}/configs/{config}"
  128. };
  129. // The resource name of the game server config. Uses the form:
  130. //
  131. // `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/configs/{config}`.
  132. // For example,
  133. //
  134. // `projects/my-project/locations/global/gameServerDeployments/my-game/configs/my-config`.
  135. string name = 1;
  136. // Output only. The creation time.
  137. google.protobuf.Timestamp create_time = 2
  138. [(google.api.field_behavior) = OUTPUT_ONLY];
  139. // Output only. The last-modified time.
  140. google.protobuf.Timestamp update_time = 3
  141. [(google.api.field_behavior) = OUTPUT_ONLY];
  142. // The labels associated with this game server config. Each label is a
  143. // key-value pair.
  144. map<string, string> labels = 4;
  145. // FleetConfig contains a list of Agones fleet specs. Only one FleetConfig
  146. // is allowed.
  147. repeated FleetConfig fleet_configs = 5;
  148. // The autoscaling settings.
  149. repeated ScalingConfig scaling_configs = 6;
  150. // The description of the game server config.
  151. string description = 7;
  152. }