google-cloud-gaming-v1 0.3.1 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +8 -8
- data/README.md +1 -1
- data/lib/google/cloud/gaming/v1/common_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/game_server_clusters_pb.rb +33 -2
- data/lib/google/cloud/gaming/v1/game_server_clusters_service/client.rb +275 -108
- data/lib/google/cloud/gaming/v1/game_server_clusters_service/operations.rb +149 -37
- data/lib/google/cloud/gaming/v1/game_server_clusters_service_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/game_server_configs_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/game_server_configs_service/client.rb +148 -69
- data/lib/google/cloud/gaming/v1/game_server_configs_service/operations.rb +149 -37
- data/lib/google/cloud/gaming/v1/game_server_configs_service_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/game_server_deployments_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/game_server_deployments_service/client.rb +286 -116
- data/lib/google/cloud/gaming/v1/game_server_deployments_service/operations.rb +149 -37
- data/lib/google/cloud/gaming/v1/game_server_deployments_service_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/realms_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/realms_service/client.rb +204 -85
- data/lib/google/cloud/gaming/v1/realms_service/operations.rb +149 -37
- data/lib/google/cloud/gaming/v1/realms_service_pb.rb +2 -2
- data/lib/google/cloud/gaming/v1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +7 -1
- data/proto_docs/google/cloud/gaming/v1/common.rb +0 -3
- data/proto_docs/google/cloud/gaming/v1/game_server_clusters.rb +117 -19
- data/proto_docs/google/cloud/gaming/v1/game_server_configs.rb +5 -11
- data/proto_docs/google/cloud/gaming/v1/game_server_deployments.rb +12 -28
- data/proto_docs/google/cloud/gaming/v1/realms.rb +7 -13
- metadata +4 -4
@@ -24,7 +24,7 @@ module Google
|
|
24
24
|
# Request message for GameServerDeploymentsService.ListGameServerDeployments.
|
25
25
|
# @!attribute [rw] parent
|
26
26
|
# @return [::String]
|
27
|
-
# Required. The parent resource name
|
27
|
+
# Required. The parent resource name, in the following form:
|
28
28
|
# `projects/{project}/locations/{location}`.
|
29
29
|
# @!attribute [rw] page_size
|
30
30
|
# @return [::Integer]
|
@@ -68,8 +68,7 @@ module Google
|
|
68
68
|
# Request message for GameServerDeploymentsService.GetGameServerDeployment.
|
69
69
|
# @!attribute [rw] name
|
70
70
|
# @return [::String]
|
71
|
-
# Required. The name of the game server delpoyment to retrieve
|
72
|
-
#
|
71
|
+
# Required. The name of the game server delpoyment to retrieve, in the following form:
|
73
72
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}`.
|
74
73
|
class GetGameServerDeploymentRequest
|
75
74
|
include ::Google::Protobuf::MessageExts
|
@@ -80,8 +79,7 @@ module Google
|
|
80
79
|
# GameServerDeploymentsService.GetGameServerDeploymentRollout.
|
81
80
|
# @!attribute [rw] name
|
82
81
|
# @return [::String]
|
83
|
-
# Required. The name of the game server delpoyment to retrieve
|
84
|
-
#
|
82
|
+
# Required. The name of the game server delpoyment to retrieve, in the following form:
|
85
83
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/rollout`.
|
86
84
|
class GetGameServerDeploymentRolloutRequest
|
87
85
|
include ::Google::Protobuf::MessageExts
|
@@ -91,7 +89,7 @@ module Google
|
|
91
89
|
# Request message for GameServerDeploymentsService.CreateGameServerDeployment.
|
92
90
|
# @!attribute [rw] parent
|
93
91
|
# @return [::String]
|
94
|
-
# Required. The parent resource name
|
92
|
+
# Required. The parent resource name, in the following form:
|
95
93
|
# `projects/{project}/locations/{location}`.
|
96
94
|
# @!attribute [rw] deployment_id
|
97
95
|
# @return [::String]
|
@@ -107,8 +105,7 @@ module Google
|
|
107
105
|
# Request message for GameServerDeploymentsService.DeleteGameServerDeployment.
|
108
106
|
# @!attribute [rw] name
|
109
107
|
# @return [::String]
|
110
|
-
# Required. The name of the game server delpoyment to delete
|
111
|
-
#
|
108
|
+
# Required. The name of the game server delpoyment to delete, in the following form:
|
112
109
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}`.
|
113
110
|
class DeleteGameServerDeploymentRequest
|
114
111
|
include ::Google::Protobuf::MessageExts
|
@@ -125,10 +122,7 @@ module Google
|
|
125
122
|
# @return [::Google::Protobuf::FieldMask]
|
126
123
|
# Required. Mask of fields to update. At least one path must be supplied in
|
127
124
|
# this field. For the `FieldMask` definition, see
|
128
|
-
#
|
129
|
-
# https:
|
130
|
-
# //developers.google.com/protocol-buffers
|
131
|
-
# // /docs/reference/google.protobuf#fieldmask
|
125
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
132
126
|
class UpdateGameServerDeploymentRequest
|
133
127
|
include ::Google::Protobuf::MessageExts
|
134
128
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -144,10 +138,7 @@ module Google
|
|
144
138
|
# @return [::Google::Protobuf::FieldMask]
|
145
139
|
# Required. Mask of fields to update. At least one path must be supplied in
|
146
140
|
# this field. For the `FieldMask` definition, see
|
147
|
-
#
|
148
|
-
# https:
|
149
|
-
# //developers.google.com/protocol-buffers
|
150
|
-
# // /docs/reference/google.protobuf#fieldmask
|
141
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
151
142
|
class UpdateGameServerDeploymentRolloutRequest
|
152
143
|
include ::Google::Protobuf::MessageExts
|
153
144
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -156,8 +147,7 @@ module Google
|
|
156
147
|
# Request message for GameServerDeploymentsService.FetchDeploymentState.
|
157
148
|
# @!attribute [rw] name
|
158
149
|
# @return [::String]
|
159
|
-
# Required. The name of the game server delpoyment
|
160
|
-
#
|
150
|
+
# Required. The name of the game server delpoyment, in the following form:
|
161
151
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}`.
|
162
152
|
class FetchDeploymentStateRequest
|
163
153
|
include ::Google::Protobuf::MessageExts
|
@@ -192,8 +182,7 @@ module Google
|
|
192
182
|
# A game server deployment resource.
|
193
183
|
# @!attribute [rw] name
|
194
184
|
# @return [::String]
|
195
|
-
# The resource name of the game server deployment
|
196
|
-
#
|
185
|
+
# The resource name of the game server deployment, in the following form:
|
197
186
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}`.
|
198
187
|
# For example,
|
199
188
|
# `projects/my-project/locations/global/gameServerDeployments/my-deployment`.
|
@@ -243,11 +232,10 @@ module Google
|
|
243
232
|
# state.
|
244
233
|
# @!attribute [rw] name
|
245
234
|
# @return [::String]
|
246
|
-
# The resource name of the game server deployment rollout
|
247
|
-
#
|
235
|
+
# The resource name of the game server deployment rollout, in the following
|
236
|
+
# form:
|
248
237
|
# `projects/{project}/locations/{location}/gameServerDeployments/{deployment}/rollout`.
|
249
238
|
# For example,
|
250
|
-
#
|
251
239
|
# `projects/my-project/locations/global/gameServerDeployments/my-deployment/rollout`.
|
252
240
|
# @!attribute [r] create_time
|
253
241
|
# @return [::Google::Protobuf::Timestamp]
|
@@ -259,7 +247,6 @@ module Google
|
|
259
247
|
# @return [::String]
|
260
248
|
# The default game server config is applied to all realms unless overridden
|
261
249
|
# in the rollout. For example,
|
262
|
-
#
|
263
250
|
# `projects/my-project/locations/global/gameServerDeployments/my-game/configs/my-config`.
|
264
251
|
# @!attribute [rw] game_server_config_overrides
|
265
252
|
# @return [::Array<::Google::Cloud::Gaming::V1::GameServerConfigOverride>]
|
@@ -283,10 +270,7 @@ module Google
|
|
283
270
|
# @return [::Google::Protobuf::FieldMask]
|
284
271
|
# Optional. Mask of fields to update. At least one path must be supplied in
|
285
272
|
# this field. For the `FieldMask` definition, see
|
286
|
-
#
|
287
|
-
# https:
|
288
|
-
# //developers.google.com/protocol-buffers
|
289
|
-
# // /docs/reference/google.protobuf#fieldmask
|
273
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
290
274
|
# @!attribute [rw] preview_time
|
291
275
|
# @return [::Google::Protobuf::Timestamp]
|
292
276
|
# Optional. The target timestamp to compute the preview. Defaults to the immediately
|
@@ -24,7 +24,7 @@ module Google
|
|
24
24
|
# Request message for RealmsService.ListRealms.
|
25
25
|
# @!attribute [rw] parent
|
26
26
|
# @return [::String]
|
27
|
-
# Required. The parent resource name
|
27
|
+
# Required. The parent resource name, in the following form:
|
28
28
|
# `projects/{project}/locations/{location}`.
|
29
29
|
# @!attribute [rw] page_size
|
30
30
|
# @return [::Integer]
|
@@ -68,7 +68,7 @@ module Google
|
|
68
68
|
# Request message for RealmsService.GetRealm.
|
69
69
|
# @!attribute [rw] name
|
70
70
|
# @return [::String]
|
71
|
-
# Required. The name of the realm to retrieve
|
71
|
+
# Required. The name of the realm to retrieve, in the following form:
|
72
72
|
# `projects/{project}/locations/{location}/realms/{realm}`.
|
73
73
|
class GetRealmRequest
|
74
74
|
include ::Google::Protobuf::MessageExts
|
@@ -78,7 +78,7 @@ module Google
|
|
78
78
|
# Request message for RealmsService.CreateRealm.
|
79
79
|
# @!attribute [rw] parent
|
80
80
|
# @return [::String]
|
81
|
-
# Required. The parent resource name
|
81
|
+
# Required. The parent resource name, in the following form:
|
82
82
|
# `projects/{project}/locations/{location}`.
|
83
83
|
# @!attribute [rw] realm_id
|
84
84
|
# @return [::String]
|
@@ -94,7 +94,7 @@ module Google
|
|
94
94
|
# Request message for RealmsService.DeleteRealm.
|
95
95
|
# @!attribute [rw] name
|
96
96
|
# @return [::String]
|
97
|
-
# Required. The name of the realm to delete
|
97
|
+
# Required. The name of the realm to delete, in the following form:
|
98
98
|
# `projects/{project}/locations/{location}/realms/{realm}`.
|
99
99
|
class DeleteRealmRequest
|
100
100
|
include ::Google::Protobuf::MessageExts
|
@@ -110,10 +110,7 @@ module Google
|
|
110
110
|
# @return [::Google::Protobuf::FieldMask]
|
111
111
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
112
112
|
# definition, see
|
113
|
-
#
|
114
|
-
# https:
|
115
|
-
# //developers.google.com/protocol-buffers
|
116
|
-
# // /docs/reference/google.protobuf#fieldmask
|
113
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
117
114
|
class UpdateRealmRequest
|
118
115
|
include ::Google::Protobuf::MessageExts
|
119
116
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -128,10 +125,7 @@ module Google
|
|
128
125
|
# @return [::Google::Protobuf::FieldMask]
|
129
126
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
130
127
|
# definition, see
|
131
|
-
#
|
132
|
-
# https:
|
133
|
-
# //developers.google.com/protocol-buffers
|
134
|
-
# // /docs/reference/google.protobuf#fieldmask
|
128
|
+
# https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
135
129
|
# @!attribute [rw] preview_time
|
136
130
|
# @return [::Google::Protobuf::Timestamp]
|
137
131
|
# Optional. The target timestamp to compute the preview.
|
@@ -155,7 +149,7 @@ module Google
|
|
155
149
|
# A realm resource.
|
156
150
|
# @!attribute [rw] name
|
157
151
|
# @return [::String]
|
158
|
-
# The resource name of the realm
|
152
|
+
# The resource name of the realm, in the following form:
|
159
153
|
# `projects/{project}/locations/{location}/realms/{realm}`. For
|
160
154
|
# example, `projects/my-project/locations/{location}/realms/my-realm`.
|
161
155
|
# @!attribute [r] create_time
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gaming-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|