google-cloud-gaming-v1 0.3.0 → 0.4.0
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/game_server_clusters_pb.rb +31 -0
- data/lib/google/cloud/gaming/v1/game_server_clusters_service/client.rb +88 -84
- data/lib/google/cloud/gaming/v1/game_server_clusters_service/operations.rb +34 -25
- data/lib/google/cloud/gaming/v1/game_server_configs_service/client.rb +48 -57
- data/lib/google/cloud/gaming/v1/game_server_configs_service/operations.rb +34 -25
- data/lib/google/cloud/gaming/v1/game_server_deployments_service/client.rb +72 -89
- data/lib/google/cloud/gaming/v1/game_server_deployments_service/operations.rb +34 -25
- data/lib/google/cloud/gaming/v1/realms_service/client.rb +57 -67
- data/lib/google/cloud/gaming/v1/realms_service/operations.rb +34 -25
- 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 +13 -7
@@ -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,29 +1,35 @@
|
|
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.0
|
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-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.7'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.7'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: google-cloud-errors
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -234,7 +240,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
234
240
|
- !ruby/object:Gem::Version
|
235
241
|
version: '0'
|
236
242
|
requirements: []
|
237
|
-
rubygems_version: 3.2.
|
243
|
+
rubygems_version: 3.2.17
|
238
244
|
signing_key:
|
239
245
|
specification_version: 4
|
240
246
|
summary: API Client library for the Cloud Gaming V1 API
|