aws-sdk-gamelift 1.75.0 → 1.77.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gamelift/client.rb +1012 -287
- data/lib/aws-sdk-gamelift/client_api.rb +292 -0
- data/lib/aws-sdk-gamelift/endpoints.rb +56 -0
- data/lib/aws-sdk-gamelift/errors.rb +16 -0
- data/lib/aws-sdk-gamelift/plugins/endpoints.rb +9 -0
- data/lib/aws-sdk-gamelift/types.rb +1551 -192
- data/lib/aws-sdk-gamelift.rb +1 -1
- data/sig/client.rbs +1743 -0
- data/sig/errors.rbs +64 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +2159 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,1743 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module GameLift
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AcceptMatchResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptMatchOutput]
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#accept_match-instance_method
|
80
|
+
def accept_match: (
|
81
|
+
ticket_id: ::String,
|
82
|
+
player_ids: Array[::String],
|
83
|
+
acceptance_type: ("ACCEPT" | "REJECT")
|
84
|
+
) -> _AcceptMatchResponseSuccess
|
85
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptMatchResponseSuccess
|
86
|
+
|
87
|
+
interface _ClaimGameServerResponseSuccess
|
88
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ClaimGameServerOutput]
|
89
|
+
def game_server: () -> Types::GameServer
|
90
|
+
end
|
91
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#claim_game_server-instance_method
|
92
|
+
def claim_game_server: (
|
93
|
+
game_server_group_name: ::String,
|
94
|
+
?game_server_id: ::String,
|
95
|
+
?game_server_data: ::String,
|
96
|
+
?filter_option: {
|
97
|
+
instance_statuses: Array[("ACTIVE" | "DRAINING")]?
|
98
|
+
}
|
99
|
+
) -> _ClaimGameServerResponseSuccess
|
100
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ClaimGameServerResponseSuccess
|
101
|
+
|
102
|
+
interface _CreateAliasResponseSuccess
|
103
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAliasOutput]
|
104
|
+
def alias: () -> Types::Alias
|
105
|
+
end
|
106
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_alias-instance_method
|
107
|
+
def create_alias: (
|
108
|
+
name: ::String,
|
109
|
+
?description: ::String,
|
110
|
+
routing_strategy: {
|
111
|
+
type: ("SIMPLE" | "TERMINAL")?,
|
112
|
+
fleet_id: ::String?,
|
113
|
+
message: ::String?
|
114
|
+
},
|
115
|
+
?tags: Array[
|
116
|
+
{
|
117
|
+
key: ::String,
|
118
|
+
value: ::String
|
119
|
+
},
|
120
|
+
]
|
121
|
+
) -> _CreateAliasResponseSuccess
|
122
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAliasResponseSuccess
|
123
|
+
|
124
|
+
interface _CreateBuildResponseSuccess
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBuildOutput]
|
126
|
+
def build: () -> Types::Build
|
127
|
+
def upload_credentials: () -> Types::AwsCredentials
|
128
|
+
def storage_location: () -> Types::S3Location
|
129
|
+
end
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_build-instance_method
|
131
|
+
def create_build: (
|
132
|
+
?name: ::String,
|
133
|
+
?version: ::String,
|
134
|
+
?storage_location: {
|
135
|
+
bucket: ::String?,
|
136
|
+
key: ::String?,
|
137
|
+
role_arn: ::String?,
|
138
|
+
object_version: ::String?
|
139
|
+
},
|
140
|
+
?operating_system: ("WINDOWS_2012" | "AMAZON_LINUX" | "AMAZON_LINUX_2" | "WINDOWS_2016" | "AMAZON_LINUX_2023"),
|
141
|
+
?tags: Array[
|
142
|
+
{
|
143
|
+
key: ::String,
|
144
|
+
value: ::String
|
145
|
+
},
|
146
|
+
],
|
147
|
+
?server_sdk_version: ::String
|
148
|
+
) -> _CreateBuildResponseSuccess
|
149
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBuildResponseSuccess
|
150
|
+
|
151
|
+
interface _CreateContainerGroupDefinitionResponseSuccess
|
152
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContainerGroupDefinitionOutput]
|
153
|
+
def container_group_definition: () -> Types::ContainerGroupDefinition
|
154
|
+
end
|
155
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_container_group_definition-instance_method
|
156
|
+
def create_container_group_definition: (
|
157
|
+
name: ::String,
|
158
|
+
?scheduling_strategy: ("REPLICA" | "DAEMON"),
|
159
|
+
total_memory_limit: ::Integer,
|
160
|
+
total_cpu_limit: ::Integer,
|
161
|
+
container_definitions: Array[
|
162
|
+
{
|
163
|
+
container_name: ::String,
|
164
|
+
image_uri: ::String,
|
165
|
+
memory_limits: {
|
166
|
+
soft_limit: ::Integer?,
|
167
|
+
hard_limit: ::Integer?
|
168
|
+
}?,
|
169
|
+
port_configuration: {
|
170
|
+
container_port_ranges: Array[
|
171
|
+
{
|
172
|
+
from_port: ::Integer,
|
173
|
+
to_port: ::Integer,
|
174
|
+
protocol: ("TCP" | "UDP")
|
175
|
+
},
|
176
|
+
]
|
177
|
+
}?,
|
178
|
+
cpu: ::Integer?,
|
179
|
+
health_check: {
|
180
|
+
command: Array[::String],
|
181
|
+
interval: ::Integer?,
|
182
|
+
timeout: ::Integer?,
|
183
|
+
retries: ::Integer?,
|
184
|
+
start_period: ::Integer?
|
185
|
+
}?,
|
186
|
+
command: Array[::String]?,
|
187
|
+
essential: bool?,
|
188
|
+
entry_point: Array[::String]?,
|
189
|
+
working_directory: ::String?,
|
190
|
+
environment: Array[
|
191
|
+
{
|
192
|
+
name: ::String,
|
193
|
+
value: ::String
|
194
|
+
},
|
195
|
+
]?,
|
196
|
+
depends_on: Array[
|
197
|
+
{
|
198
|
+
container_name: ::String,
|
199
|
+
condition: ("START" | "COMPLETE" | "SUCCESS" | "HEALTHY")
|
200
|
+
},
|
201
|
+
]?
|
202
|
+
},
|
203
|
+
],
|
204
|
+
operating_system: ("AMAZON_LINUX_2023"),
|
205
|
+
?tags: Array[
|
206
|
+
{
|
207
|
+
key: ::String,
|
208
|
+
value: ::String
|
209
|
+
},
|
210
|
+
]
|
211
|
+
) -> _CreateContainerGroupDefinitionResponseSuccess
|
212
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContainerGroupDefinitionResponseSuccess
|
213
|
+
|
214
|
+
interface _CreateFleetResponseSuccess
|
215
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetOutput]
|
216
|
+
def fleet_attributes: () -> Types::FleetAttributes
|
217
|
+
def location_states: () -> ::Array[Types::LocationState]
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_fleet-instance_method
|
220
|
+
def create_fleet: (
|
221
|
+
name: ::String,
|
222
|
+
?description: ::String,
|
223
|
+
?build_id: ::String,
|
224
|
+
?script_id: ::String,
|
225
|
+
?server_launch_path: ::String,
|
226
|
+
?server_launch_parameters: ::String,
|
227
|
+
?log_paths: Array[::String],
|
228
|
+
?ec2_instance_type: ("t2.micro" | "t2.small" | "t2.medium" | "t2.large" | "c3.large" | "c3.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "r3.large" | "r3.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "m3.medium" | "m3.large" | "m3.xlarge" | "m3.2xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "c5d.large" | "c5d.xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c6a.large" | "c6a.xlarge" | "c6a.2xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6i.large" | "c6i.xlarge" | "c6i.2xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "r5d.large" | "r5d.xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "c6gn.medium" | "c6gn.large" | "c6gn.xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c7g.medium" | "c7g.large" | "c7g.xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "r7g.medium" | "r7g.large" | "r7g.xlarge" | "r7g.2xlarge" | "r7g.4xlarge" | "r7g.8xlarge" | "r7g.12xlarge" | "r7g.16xlarge" | "m7g.medium" | "m7g.large" | "m7g.xlarge" | "m7g.2xlarge" | "m7g.4xlarge" | "m7g.8xlarge" | "m7g.12xlarge" | "m7g.16xlarge" | "g5g.xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.16xlarge"),
|
229
|
+
?ec2_inbound_permissions: Array[
|
230
|
+
{
|
231
|
+
from_port: ::Integer,
|
232
|
+
to_port: ::Integer,
|
233
|
+
ip_range: ::String,
|
234
|
+
protocol: ("TCP" | "UDP")
|
235
|
+
},
|
236
|
+
],
|
237
|
+
?new_game_session_protection_policy: ("NoProtection" | "FullProtection"),
|
238
|
+
?runtime_configuration: {
|
239
|
+
server_processes: Array[
|
240
|
+
{
|
241
|
+
launch_path: ::String,
|
242
|
+
parameters: ::String?,
|
243
|
+
concurrent_executions: ::Integer
|
244
|
+
},
|
245
|
+
]?,
|
246
|
+
max_concurrent_game_session_activations: ::Integer?,
|
247
|
+
game_session_activation_timeout_seconds: ::Integer?
|
248
|
+
},
|
249
|
+
?resource_creation_limit_policy: {
|
250
|
+
new_game_sessions_per_creator: ::Integer?,
|
251
|
+
policy_period_in_minutes: ::Integer?
|
252
|
+
},
|
253
|
+
?metric_groups: Array[::String],
|
254
|
+
?peer_vpc_aws_account_id: ::String,
|
255
|
+
?peer_vpc_id: ::String,
|
256
|
+
?fleet_type: ("ON_DEMAND" | "SPOT"),
|
257
|
+
?instance_role_arn: ::String,
|
258
|
+
?certificate_configuration: {
|
259
|
+
certificate_type: ("DISABLED" | "GENERATED")
|
260
|
+
},
|
261
|
+
?locations: Array[
|
262
|
+
{
|
263
|
+
location: ::String
|
264
|
+
},
|
265
|
+
],
|
266
|
+
?tags: Array[
|
267
|
+
{
|
268
|
+
key: ::String,
|
269
|
+
value: ::String
|
270
|
+
},
|
271
|
+
],
|
272
|
+
?compute_type: ("EC2" | "ANYWHERE" | "CONTAINER"),
|
273
|
+
?anywhere_configuration: {
|
274
|
+
cost: ::String
|
275
|
+
},
|
276
|
+
?instance_role_credentials_provider: ("SHARED_CREDENTIAL_FILE"),
|
277
|
+
?container_groups_configuration: {
|
278
|
+
container_group_definition_names: Array[::String],
|
279
|
+
connection_port_range: {
|
280
|
+
from_port: ::Integer,
|
281
|
+
to_port: ::Integer
|
282
|
+
},
|
283
|
+
desired_replica_container_groups_per_instance: ::Integer?
|
284
|
+
}
|
285
|
+
) -> _CreateFleetResponseSuccess
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
|
287
|
+
|
288
|
+
interface _CreateFleetLocationsResponseSuccess
|
289
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetLocationsOutput]
|
290
|
+
def fleet_id: () -> ::String
|
291
|
+
def fleet_arn: () -> ::String
|
292
|
+
def location_states: () -> ::Array[Types::LocationState]
|
293
|
+
end
|
294
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_fleet_locations-instance_method
|
295
|
+
def create_fleet_locations: (
|
296
|
+
fleet_id: ::String,
|
297
|
+
locations: Array[
|
298
|
+
{
|
299
|
+
location: ::String
|
300
|
+
},
|
301
|
+
]
|
302
|
+
) -> _CreateFleetLocationsResponseSuccess
|
303
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetLocationsResponseSuccess
|
304
|
+
|
305
|
+
interface _CreateGameServerGroupResponseSuccess
|
306
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGameServerGroupOutput]
|
307
|
+
def game_server_group: () -> Types::GameServerGroup
|
308
|
+
end
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_game_server_group-instance_method
|
310
|
+
def create_game_server_group: (
|
311
|
+
game_server_group_name: ::String,
|
312
|
+
role_arn: ::String,
|
313
|
+
min_size: ::Integer,
|
314
|
+
max_size: ::Integer,
|
315
|
+
launch_template: {
|
316
|
+
launch_template_id: ::String?,
|
317
|
+
launch_template_name: ::String?,
|
318
|
+
version: ::String?
|
319
|
+
},
|
320
|
+
instance_definitions: Array[
|
321
|
+
{
|
322
|
+
instance_type: ("c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge"),
|
323
|
+
weighted_capacity: ::String?
|
324
|
+
},
|
325
|
+
],
|
326
|
+
?auto_scaling_policy: {
|
327
|
+
estimated_instance_warmup: ::Integer?,
|
328
|
+
target_tracking_configuration: {
|
329
|
+
target_value: ::Float
|
330
|
+
}
|
331
|
+
},
|
332
|
+
?balancing_strategy: ("SPOT_ONLY" | "SPOT_PREFERRED" | "ON_DEMAND_ONLY"),
|
333
|
+
?game_server_protection_policy: ("NO_PROTECTION" | "FULL_PROTECTION"),
|
334
|
+
?vpc_subnets: Array[::String],
|
335
|
+
?tags: Array[
|
336
|
+
{
|
337
|
+
key: ::String,
|
338
|
+
value: ::String
|
339
|
+
},
|
340
|
+
]
|
341
|
+
) -> _CreateGameServerGroupResponseSuccess
|
342
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGameServerGroupResponseSuccess
|
343
|
+
|
344
|
+
interface _CreateGameSessionResponseSuccess
|
345
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGameSessionOutput]
|
346
|
+
def game_session: () -> Types::GameSession
|
347
|
+
end
|
348
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_game_session-instance_method
|
349
|
+
def create_game_session: (
|
350
|
+
?fleet_id: ::String,
|
351
|
+
?alias_id: ::String,
|
352
|
+
maximum_player_session_count: ::Integer,
|
353
|
+
?name: ::String,
|
354
|
+
?game_properties: Array[
|
355
|
+
{
|
356
|
+
key: ::String,
|
357
|
+
value: ::String
|
358
|
+
},
|
359
|
+
],
|
360
|
+
?creator_id: ::String,
|
361
|
+
?game_session_id: ::String,
|
362
|
+
?idempotency_token: ::String,
|
363
|
+
?game_session_data: ::String,
|
364
|
+
?location: ::String
|
365
|
+
) -> _CreateGameSessionResponseSuccess
|
366
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGameSessionResponseSuccess
|
367
|
+
|
368
|
+
interface _CreateGameSessionQueueResponseSuccess
|
369
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGameSessionQueueOutput]
|
370
|
+
def game_session_queue: () -> Types::GameSessionQueue
|
371
|
+
end
|
372
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_game_session_queue-instance_method
|
373
|
+
def create_game_session_queue: (
|
374
|
+
name: ::String,
|
375
|
+
?timeout_in_seconds: ::Integer,
|
376
|
+
?player_latency_policies: Array[
|
377
|
+
{
|
378
|
+
maximum_individual_player_latency_milliseconds: ::Integer?,
|
379
|
+
policy_duration_seconds: ::Integer?
|
380
|
+
},
|
381
|
+
],
|
382
|
+
?destinations: Array[
|
383
|
+
{
|
384
|
+
destination_arn: ::String?
|
385
|
+
},
|
386
|
+
],
|
387
|
+
?filter_configuration: {
|
388
|
+
allowed_locations: Array[::String]?
|
389
|
+
},
|
390
|
+
?priority_configuration: {
|
391
|
+
priority_order: Array[("LATENCY" | "COST" | "DESTINATION" | "LOCATION")]?,
|
392
|
+
location_order: Array[::String]?
|
393
|
+
},
|
394
|
+
?custom_event_data: ::String,
|
395
|
+
?notification_target: ::String,
|
396
|
+
?tags: Array[
|
397
|
+
{
|
398
|
+
key: ::String,
|
399
|
+
value: ::String
|
400
|
+
},
|
401
|
+
]
|
402
|
+
) -> _CreateGameSessionQueueResponseSuccess
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGameSessionQueueResponseSuccess
|
404
|
+
|
405
|
+
interface _CreateLocationResponseSuccess
|
406
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationOutput]
|
407
|
+
def location: () -> Types::LocationModel
|
408
|
+
end
|
409
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_location-instance_method
|
410
|
+
def create_location: (
|
411
|
+
location_name: ::String,
|
412
|
+
?tags: Array[
|
413
|
+
{
|
414
|
+
key: ::String,
|
415
|
+
value: ::String
|
416
|
+
},
|
417
|
+
]
|
418
|
+
) -> _CreateLocationResponseSuccess
|
419
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationResponseSuccess
|
420
|
+
|
421
|
+
interface _CreateMatchmakingConfigurationResponseSuccess
|
422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMatchmakingConfigurationOutput]
|
423
|
+
def configuration: () -> Types::MatchmakingConfiguration
|
424
|
+
end
|
425
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_matchmaking_configuration-instance_method
|
426
|
+
def create_matchmaking_configuration: (
|
427
|
+
name: ::String,
|
428
|
+
?description: ::String,
|
429
|
+
?game_session_queue_arns: Array[::String],
|
430
|
+
request_timeout_seconds: ::Integer,
|
431
|
+
?acceptance_timeout_seconds: ::Integer,
|
432
|
+
acceptance_required: bool,
|
433
|
+
rule_set_name: ::String,
|
434
|
+
?notification_target: ::String,
|
435
|
+
?additional_player_count: ::Integer,
|
436
|
+
?custom_event_data: ::String,
|
437
|
+
?game_properties: Array[
|
438
|
+
{
|
439
|
+
key: ::String,
|
440
|
+
value: ::String
|
441
|
+
},
|
442
|
+
],
|
443
|
+
?game_session_data: ::String,
|
444
|
+
?backfill_mode: ("AUTOMATIC" | "MANUAL"),
|
445
|
+
?flex_match_mode: ("STANDALONE" | "WITH_QUEUE"),
|
446
|
+
?tags: Array[
|
447
|
+
{
|
448
|
+
key: ::String,
|
449
|
+
value: ::String
|
450
|
+
},
|
451
|
+
]
|
452
|
+
) -> _CreateMatchmakingConfigurationResponseSuccess
|
453
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMatchmakingConfigurationResponseSuccess
|
454
|
+
|
455
|
+
interface _CreateMatchmakingRuleSetResponseSuccess
|
456
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMatchmakingRuleSetOutput]
|
457
|
+
def rule_set: () -> Types::MatchmakingRuleSet
|
458
|
+
end
|
459
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_matchmaking_rule_set-instance_method
|
460
|
+
def create_matchmaking_rule_set: (
|
461
|
+
name: ::String,
|
462
|
+
rule_set_body: ::String,
|
463
|
+
?tags: Array[
|
464
|
+
{
|
465
|
+
key: ::String,
|
466
|
+
value: ::String
|
467
|
+
},
|
468
|
+
]
|
469
|
+
) -> _CreateMatchmakingRuleSetResponseSuccess
|
470
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMatchmakingRuleSetResponseSuccess
|
471
|
+
|
472
|
+
interface _CreatePlayerSessionResponseSuccess
|
473
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePlayerSessionOutput]
|
474
|
+
def player_session: () -> Types::PlayerSession
|
475
|
+
end
|
476
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_player_session-instance_method
|
477
|
+
def create_player_session: (
|
478
|
+
game_session_id: ::String,
|
479
|
+
player_id: ::String,
|
480
|
+
?player_data: ::String
|
481
|
+
) -> _CreatePlayerSessionResponseSuccess
|
482
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePlayerSessionResponseSuccess
|
483
|
+
|
484
|
+
interface _CreatePlayerSessionsResponseSuccess
|
485
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePlayerSessionsOutput]
|
486
|
+
def player_sessions: () -> ::Array[Types::PlayerSession]
|
487
|
+
end
|
488
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_player_sessions-instance_method
|
489
|
+
def create_player_sessions: (
|
490
|
+
game_session_id: ::String,
|
491
|
+
player_ids: Array[::String],
|
492
|
+
?player_data_map: Hash[::String, ::String]
|
493
|
+
) -> _CreatePlayerSessionsResponseSuccess
|
494
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePlayerSessionsResponseSuccess
|
495
|
+
|
496
|
+
interface _CreateScriptResponseSuccess
|
497
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateScriptOutput]
|
498
|
+
def script: () -> Types::Script
|
499
|
+
end
|
500
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_script-instance_method
|
501
|
+
def create_script: (
|
502
|
+
?name: ::String,
|
503
|
+
?version: ::String,
|
504
|
+
?storage_location: {
|
505
|
+
bucket: ::String?,
|
506
|
+
key: ::String?,
|
507
|
+
role_arn: ::String?,
|
508
|
+
object_version: ::String?
|
509
|
+
},
|
510
|
+
?zip_file: ::String,
|
511
|
+
?tags: Array[
|
512
|
+
{
|
513
|
+
key: ::String,
|
514
|
+
value: ::String
|
515
|
+
},
|
516
|
+
]
|
517
|
+
) -> _CreateScriptResponseSuccess
|
518
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScriptResponseSuccess
|
519
|
+
|
520
|
+
interface _CreateVpcPeeringAuthorizationResponseSuccess
|
521
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcPeeringAuthorizationOutput]
|
522
|
+
def vpc_peering_authorization: () -> Types::VpcPeeringAuthorization
|
523
|
+
end
|
524
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_vpc_peering_authorization-instance_method
|
525
|
+
def create_vpc_peering_authorization: (
|
526
|
+
game_lift_aws_account_id: ::String,
|
527
|
+
peer_vpc_id: ::String
|
528
|
+
) -> _CreateVpcPeeringAuthorizationResponseSuccess
|
529
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcPeeringAuthorizationResponseSuccess
|
530
|
+
|
531
|
+
interface _CreateVpcPeeringConnectionResponseSuccess
|
532
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcPeeringConnectionOutput]
|
533
|
+
end
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#create_vpc_peering_connection-instance_method
|
535
|
+
def create_vpc_peering_connection: (
|
536
|
+
fleet_id: ::String,
|
537
|
+
peer_vpc_aws_account_id: ::String,
|
538
|
+
peer_vpc_id: ::String
|
539
|
+
) -> _CreateVpcPeeringConnectionResponseSuccess
|
540
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcPeeringConnectionResponseSuccess
|
541
|
+
|
542
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_alias-instance_method
|
543
|
+
def delete_alias: (
|
544
|
+
alias_id: ::String
|
545
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
546
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
547
|
+
|
548
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_build-instance_method
|
549
|
+
def delete_build: (
|
550
|
+
build_id: ::String
|
551
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
552
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
553
|
+
|
554
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_container_group_definition-instance_method
|
555
|
+
def delete_container_group_definition: (
|
556
|
+
name: ::String
|
557
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
558
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
559
|
+
|
560
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_fleet-instance_method
|
561
|
+
def delete_fleet: (
|
562
|
+
fleet_id: ::String
|
563
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
564
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
565
|
+
|
566
|
+
interface _DeleteFleetLocationsResponseSuccess
|
567
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFleetLocationsOutput]
|
568
|
+
def fleet_id: () -> ::String
|
569
|
+
def fleet_arn: () -> ::String
|
570
|
+
def location_states: () -> ::Array[Types::LocationState]
|
571
|
+
end
|
572
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_fleet_locations-instance_method
|
573
|
+
def delete_fleet_locations: (
|
574
|
+
fleet_id: ::String,
|
575
|
+
locations: Array[::String]
|
576
|
+
) -> _DeleteFleetLocationsResponseSuccess
|
577
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFleetLocationsResponseSuccess
|
578
|
+
|
579
|
+
interface _DeleteGameServerGroupResponseSuccess
|
580
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGameServerGroupOutput]
|
581
|
+
def game_server_group: () -> Types::GameServerGroup
|
582
|
+
end
|
583
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_game_server_group-instance_method
|
584
|
+
def delete_game_server_group: (
|
585
|
+
game_server_group_name: ::String,
|
586
|
+
?delete_option: ("SAFE_DELETE" | "FORCE_DELETE" | "RETAIN")
|
587
|
+
) -> _DeleteGameServerGroupResponseSuccess
|
588
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGameServerGroupResponseSuccess
|
589
|
+
|
590
|
+
interface _DeleteGameSessionQueueResponseSuccess
|
591
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGameSessionQueueOutput]
|
592
|
+
end
|
593
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_game_session_queue-instance_method
|
594
|
+
def delete_game_session_queue: (
|
595
|
+
name: ::String
|
596
|
+
) -> _DeleteGameSessionQueueResponseSuccess
|
597
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGameSessionQueueResponseSuccess
|
598
|
+
|
599
|
+
interface _DeleteLocationResponseSuccess
|
600
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLocationOutput]
|
601
|
+
end
|
602
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_location-instance_method
|
603
|
+
def delete_location: (
|
604
|
+
location_name: ::String
|
605
|
+
) -> _DeleteLocationResponseSuccess
|
606
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLocationResponseSuccess
|
607
|
+
|
608
|
+
interface _DeleteMatchmakingConfigurationResponseSuccess
|
609
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMatchmakingConfigurationOutput]
|
610
|
+
end
|
611
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_matchmaking_configuration-instance_method
|
612
|
+
def delete_matchmaking_configuration: (
|
613
|
+
name: ::String
|
614
|
+
) -> _DeleteMatchmakingConfigurationResponseSuccess
|
615
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMatchmakingConfigurationResponseSuccess
|
616
|
+
|
617
|
+
interface _DeleteMatchmakingRuleSetResponseSuccess
|
618
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMatchmakingRuleSetOutput]
|
619
|
+
end
|
620
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_matchmaking_rule_set-instance_method
|
621
|
+
def delete_matchmaking_rule_set: (
|
622
|
+
name: ::String
|
623
|
+
) -> _DeleteMatchmakingRuleSetResponseSuccess
|
624
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMatchmakingRuleSetResponseSuccess
|
625
|
+
|
626
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_scaling_policy-instance_method
|
627
|
+
def delete_scaling_policy: (
|
628
|
+
name: ::String,
|
629
|
+
fleet_id: ::String
|
630
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
631
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
632
|
+
|
633
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_script-instance_method
|
634
|
+
def delete_script: (
|
635
|
+
script_id: ::String
|
636
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
637
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
638
|
+
|
639
|
+
interface _DeleteVpcPeeringAuthorizationResponseSuccess
|
640
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcPeeringAuthorizationOutput]
|
641
|
+
end
|
642
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_vpc_peering_authorization-instance_method
|
643
|
+
def delete_vpc_peering_authorization: (
|
644
|
+
game_lift_aws_account_id: ::String,
|
645
|
+
peer_vpc_id: ::String
|
646
|
+
) -> _DeleteVpcPeeringAuthorizationResponseSuccess
|
647
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcPeeringAuthorizationResponseSuccess
|
648
|
+
|
649
|
+
interface _DeleteVpcPeeringConnectionResponseSuccess
|
650
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcPeeringConnectionOutput]
|
651
|
+
end
|
652
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#delete_vpc_peering_connection-instance_method
|
653
|
+
def delete_vpc_peering_connection: (
|
654
|
+
fleet_id: ::String,
|
655
|
+
vpc_peering_connection_id: ::String
|
656
|
+
) -> _DeleteVpcPeeringConnectionResponseSuccess
|
657
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcPeeringConnectionResponseSuccess
|
658
|
+
|
659
|
+
interface _DeregisterComputeResponseSuccess
|
660
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterComputeOutput]
|
661
|
+
end
|
662
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#deregister_compute-instance_method
|
663
|
+
def deregister_compute: (
|
664
|
+
fleet_id: ::String,
|
665
|
+
compute_name: ::String
|
666
|
+
) -> _DeregisterComputeResponseSuccess
|
667
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterComputeResponseSuccess
|
668
|
+
|
669
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#deregister_game_server-instance_method
|
670
|
+
def deregister_game_server: (
|
671
|
+
game_server_group_name: ::String,
|
672
|
+
game_server_id: ::String
|
673
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
674
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
675
|
+
|
676
|
+
interface _DescribeAliasResponseSuccess
|
677
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAliasOutput]
|
678
|
+
def alias: () -> Types::Alias
|
679
|
+
end
|
680
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_alias-instance_method
|
681
|
+
def describe_alias: (
|
682
|
+
alias_id: ::String
|
683
|
+
) -> _DescribeAliasResponseSuccess
|
684
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAliasResponseSuccess
|
685
|
+
|
686
|
+
interface _DescribeBuildResponseSuccess
|
687
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBuildOutput]
|
688
|
+
def build: () -> Types::Build
|
689
|
+
end
|
690
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_build-instance_method
|
691
|
+
def describe_build: (
|
692
|
+
build_id: ::String
|
693
|
+
) -> _DescribeBuildResponseSuccess
|
694
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBuildResponseSuccess
|
695
|
+
|
696
|
+
interface _DescribeComputeResponseSuccess
|
697
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeComputeOutput]
|
698
|
+
def compute: () -> Types::Compute
|
699
|
+
end
|
700
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_compute-instance_method
|
701
|
+
def describe_compute: (
|
702
|
+
fleet_id: ::String,
|
703
|
+
compute_name: ::String
|
704
|
+
) -> _DescribeComputeResponseSuccess
|
705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeComputeResponseSuccess
|
706
|
+
|
707
|
+
interface _DescribeContainerGroupDefinitionResponseSuccess
|
708
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContainerGroupDefinitionOutput]
|
709
|
+
def container_group_definition: () -> Types::ContainerGroupDefinition
|
710
|
+
end
|
711
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_container_group_definition-instance_method
|
712
|
+
def describe_container_group_definition: (
|
713
|
+
name: ::String
|
714
|
+
) -> _DescribeContainerGroupDefinitionResponseSuccess
|
715
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerGroupDefinitionResponseSuccess
|
716
|
+
|
717
|
+
interface _DescribeEC2InstanceLimitsResponseSuccess
|
718
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEC2InstanceLimitsOutput]
|
719
|
+
def ec2_instance_limits: () -> ::Array[Types::EC2InstanceLimit]
|
720
|
+
end
|
721
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_ec2_instance_limits-instance_method
|
722
|
+
def describe_ec2_instance_limits: (
|
723
|
+
?ec2_instance_type: ("t2.micro" | "t2.small" | "t2.medium" | "t2.large" | "c3.large" | "c3.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "r3.large" | "r3.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "m3.medium" | "m3.large" | "m3.xlarge" | "m3.2xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "c5d.large" | "c5d.xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c6a.large" | "c6a.xlarge" | "c6a.2xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6i.large" | "c6i.xlarge" | "c6i.2xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "r5d.large" | "r5d.xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "c6gn.medium" | "c6gn.large" | "c6gn.xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c7g.medium" | "c7g.large" | "c7g.xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "r7g.medium" | "r7g.large" | "r7g.xlarge" | "r7g.2xlarge" | "r7g.4xlarge" | "r7g.8xlarge" | "r7g.12xlarge" | "r7g.16xlarge" | "m7g.medium" | "m7g.large" | "m7g.xlarge" | "m7g.2xlarge" | "m7g.4xlarge" | "m7g.8xlarge" | "m7g.12xlarge" | "m7g.16xlarge" | "g5g.xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.16xlarge"),
|
724
|
+
?location: ::String
|
725
|
+
) -> _DescribeEC2InstanceLimitsResponseSuccess
|
726
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEC2InstanceLimitsResponseSuccess
|
727
|
+
|
728
|
+
interface _DescribeFleetAttributesResponseSuccess
|
729
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetAttributesOutput]
|
730
|
+
def fleet_attributes: () -> ::Array[Types::FleetAttributes]
|
731
|
+
def next_token: () -> ::String
|
732
|
+
end
|
733
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_attributes-instance_method
|
734
|
+
def describe_fleet_attributes: (
|
735
|
+
?fleet_ids: Array[::String],
|
736
|
+
?limit: ::Integer,
|
737
|
+
?next_token: ::String
|
738
|
+
) -> _DescribeFleetAttributesResponseSuccess
|
739
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetAttributesResponseSuccess
|
740
|
+
|
741
|
+
interface _DescribeFleetCapacityResponseSuccess
|
742
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetCapacityOutput]
|
743
|
+
def fleet_capacity: () -> ::Array[Types::FleetCapacity]
|
744
|
+
def next_token: () -> ::String
|
745
|
+
end
|
746
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_capacity-instance_method
|
747
|
+
def describe_fleet_capacity: (
|
748
|
+
?fleet_ids: Array[::String],
|
749
|
+
?limit: ::Integer,
|
750
|
+
?next_token: ::String
|
751
|
+
) -> _DescribeFleetCapacityResponseSuccess
|
752
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetCapacityResponseSuccess
|
753
|
+
|
754
|
+
interface _DescribeFleetEventsResponseSuccess
|
755
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetEventsOutput]
|
756
|
+
def events: () -> ::Array[Types::Event]
|
757
|
+
def next_token: () -> ::String
|
758
|
+
end
|
759
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_events-instance_method
|
760
|
+
def describe_fleet_events: (
|
761
|
+
fleet_id: ::String,
|
762
|
+
?start_time: ::Time,
|
763
|
+
?end_time: ::Time,
|
764
|
+
?limit: ::Integer,
|
765
|
+
?next_token: ::String
|
766
|
+
) -> _DescribeFleetEventsResponseSuccess
|
767
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetEventsResponseSuccess
|
768
|
+
|
769
|
+
interface _DescribeFleetLocationAttributesResponseSuccess
|
770
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetLocationAttributesOutput]
|
771
|
+
def fleet_id: () -> ::String
|
772
|
+
def fleet_arn: () -> ::String
|
773
|
+
def location_attributes: () -> ::Array[Types::LocationAttributes]
|
774
|
+
def next_token: () -> ::String
|
775
|
+
end
|
776
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_location_attributes-instance_method
|
777
|
+
def describe_fleet_location_attributes: (
|
778
|
+
fleet_id: ::String,
|
779
|
+
?locations: Array[::String],
|
780
|
+
?limit: ::Integer,
|
781
|
+
?next_token: ::String
|
782
|
+
) -> _DescribeFleetLocationAttributesResponseSuccess
|
783
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetLocationAttributesResponseSuccess
|
784
|
+
|
785
|
+
interface _DescribeFleetLocationCapacityResponseSuccess
|
786
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetLocationCapacityOutput]
|
787
|
+
def fleet_capacity: () -> Types::FleetCapacity
|
788
|
+
end
|
789
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_location_capacity-instance_method
|
790
|
+
def describe_fleet_location_capacity: (
|
791
|
+
fleet_id: ::String,
|
792
|
+
location: ::String
|
793
|
+
) -> _DescribeFleetLocationCapacityResponseSuccess
|
794
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetLocationCapacityResponseSuccess
|
795
|
+
|
796
|
+
interface _DescribeFleetLocationUtilizationResponseSuccess
|
797
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetLocationUtilizationOutput]
|
798
|
+
def fleet_utilization: () -> Types::FleetUtilization
|
799
|
+
end
|
800
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_location_utilization-instance_method
|
801
|
+
def describe_fleet_location_utilization: (
|
802
|
+
fleet_id: ::String,
|
803
|
+
location: ::String
|
804
|
+
) -> _DescribeFleetLocationUtilizationResponseSuccess
|
805
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetLocationUtilizationResponseSuccess
|
806
|
+
|
807
|
+
interface _DescribeFleetPortSettingsResponseSuccess
|
808
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetPortSettingsOutput]
|
809
|
+
def fleet_id: () -> ::String
|
810
|
+
def fleet_arn: () -> ::String
|
811
|
+
def inbound_permissions: () -> ::Array[Types::IpPermission]
|
812
|
+
def update_status: () -> ("PENDING_UPDATE")
|
813
|
+
def location: () -> ::String
|
814
|
+
end
|
815
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_port_settings-instance_method
|
816
|
+
def describe_fleet_port_settings: (
|
817
|
+
fleet_id: ::String,
|
818
|
+
?location: ::String
|
819
|
+
) -> _DescribeFleetPortSettingsResponseSuccess
|
820
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetPortSettingsResponseSuccess
|
821
|
+
|
822
|
+
interface _DescribeFleetUtilizationResponseSuccess
|
823
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetUtilizationOutput]
|
824
|
+
def fleet_utilization: () -> ::Array[Types::FleetUtilization]
|
825
|
+
def next_token: () -> ::String
|
826
|
+
end
|
827
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_fleet_utilization-instance_method
|
828
|
+
def describe_fleet_utilization: (
|
829
|
+
?fleet_ids: Array[::String],
|
830
|
+
?limit: ::Integer,
|
831
|
+
?next_token: ::String
|
832
|
+
) -> _DescribeFleetUtilizationResponseSuccess
|
833
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetUtilizationResponseSuccess
|
834
|
+
|
835
|
+
interface _DescribeGameServerResponseSuccess
|
836
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameServerOutput]
|
837
|
+
def game_server: () -> Types::GameServer
|
838
|
+
end
|
839
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_server-instance_method
|
840
|
+
def describe_game_server: (
|
841
|
+
game_server_group_name: ::String,
|
842
|
+
game_server_id: ::String
|
843
|
+
) -> _DescribeGameServerResponseSuccess
|
844
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameServerResponseSuccess
|
845
|
+
|
846
|
+
interface _DescribeGameServerGroupResponseSuccess
|
847
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameServerGroupOutput]
|
848
|
+
def game_server_group: () -> Types::GameServerGroup
|
849
|
+
end
|
850
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_server_group-instance_method
|
851
|
+
def describe_game_server_group: (
|
852
|
+
game_server_group_name: ::String
|
853
|
+
) -> _DescribeGameServerGroupResponseSuccess
|
854
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameServerGroupResponseSuccess
|
855
|
+
|
856
|
+
interface _DescribeGameServerInstancesResponseSuccess
|
857
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameServerInstancesOutput]
|
858
|
+
def game_server_instances: () -> ::Array[Types::GameServerInstance]
|
859
|
+
def next_token: () -> ::String
|
860
|
+
end
|
861
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_server_instances-instance_method
|
862
|
+
def describe_game_server_instances: (
|
863
|
+
game_server_group_name: ::String,
|
864
|
+
?instance_ids: Array[::String],
|
865
|
+
?limit: ::Integer,
|
866
|
+
?next_token: ::String
|
867
|
+
) -> _DescribeGameServerInstancesResponseSuccess
|
868
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameServerInstancesResponseSuccess
|
869
|
+
|
870
|
+
interface _DescribeGameSessionDetailsResponseSuccess
|
871
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameSessionDetailsOutput]
|
872
|
+
def game_session_details: () -> ::Array[Types::GameSessionDetail]
|
873
|
+
def next_token: () -> ::String
|
874
|
+
end
|
875
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_session_details-instance_method
|
876
|
+
def describe_game_session_details: (
|
877
|
+
?fleet_id: ::String,
|
878
|
+
?game_session_id: ::String,
|
879
|
+
?alias_id: ::String,
|
880
|
+
?location: ::String,
|
881
|
+
?status_filter: ::String,
|
882
|
+
?limit: ::Integer,
|
883
|
+
?next_token: ::String
|
884
|
+
) -> _DescribeGameSessionDetailsResponseSuccess
|
885
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameSessionDetailsResponseSuccess
|
886
|
+
|
887
|
+
interface _DescribeGameSessionPlacementResponseSuccess
|
888
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameSessionPlacementOutput]
|
889
|
+
def game_session_placement: () -> Types::GameSessionPlacement
|
890
|
+
end
|
891
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_session_placement-instance_method
|
892
|
+
def describe_game_session_placement: (
|
893
|
+
placement_id: ::String
|
894
|
+
) -> _DescribeGameSessionPlacementResponseSuccess
|
895
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameSessionPlacementResponseSuccess
|
896
|
+
|
897
|
+
interface _DescribeGameSessionQueuesResponseSuccess
|
898
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameSessionQueuesOutput]
|
899
|
+
def game_session_queues: () -> ::Array[Types::GameSessionQueue]
|
900
|
+
def next_token: () -> ::String
|
901
|
+
end
|
902
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_session_queues-instance_method
|
903
|
+
def describe_game_session_queues: (
|
904
|
+
?names: Array[::String],
|
905
|
+
?limit: ::Integer,
|
906
|
+
?next_token: ::String
|
907
|
+
) -> _DescribeGameSessionQueuesResponseSuccess
|
908
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameSessionQueuesResponseSuccess
|
909
|
+
|
910
|
+
interface _DescribeGameSessionsResponseSuccess
|
911
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGameSessionsOutput]
|
912
|
+
def game_sessions: () -> ::Array[Types::GameSession]
|
913
|
+
def next_token: () -> ::String
|
914
|
+
end
|
915
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_game_sessions-instance_method
|
916
|
+
def describe_game_sessions: (
|
917
|
+
?fleet_id: ::String,
|
918
|
+
?game_session_id: ::String,
|
919
|
+
?alias_id: ::String,
|
920
|
+
?location: ::String,
|
921
|
+
?status_filter: ::String,
|
922
|
+
?limit: ::Integer,
|
923
|
+
?next_token: ::String
|
924
|
+
) -> _DescribeGameSessionsResponseSuccess
|
925
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGameSessionsResponseSuccess
|
926
|
+
|
927
|
+
interface _DescribeInstancesResponseSuccess
|
928
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstancesOutput]
|
929
|
+
def instances: () -> ::Array[Types::Instance]
|
930
|
+
def next_token: () -> ::String
|
931
|
+
end
|
932
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_instances-instance_method
|
933
|
+
def describe_instances: (
|
934
|
+
fleet_id: ::String,
|
935
|
+
?instance_id: ::String,
|
936
|
+
?limit: ::Integer,
|
937
|
+
?next_token: ::String,
|
938
|
+
?location: ::String
|
939
|
+
) -> _DescribeInstancesResponseSuccess
|
940
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstancesResponseSuccess
|
941
|
+
|
942
|
+
interface _DescribeMatchmakingResponseSuccess
|
943
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMatchmakingOutput]
|
944
|
+
def ticket_list: () -> ::Array[Types::MatchmakingTicket]
|
945
|
+
end
|
946
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_matchmaking-instance_method
|
947
|
+
def describe_matchmaking: (
|
948
|
+
ticket_ids: Array[::String]
|
949
|
+
) -> _DescribeMatchmakingResponseSuccess
|
950
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMatchmakingResponseSuccess
|
951
|
+
|
952
|
+
interface _DescribeMatchmakingConfigurationsResponseSuccess
|
953
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMatchmakingConfigurationsOutput]
|
954
|
+
def configurations: () -> ::Array[Types::MatchmakingConfiguration]
|
955
|
+
def next_token: () -> ::String
|
956
|
+
end
|
957
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_matchmaking_configurations-instance_method
|
958
|
+
def describe_matchmaking_configurations: (
|
959
|
+
?names: Array[::String],
|
960
|
+
?rule_set_name: ::String,
|
961
|
+
?limit: ::Integer,
|
962
|
+
?next_token: ::String
|
963
|
+
) -> _DescribeMatchmakingConfigurationsResponseSuccess
|
964
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMatchmakingConfigurationsResponseSuccess
|
965
|
+
|
966
|
+
interface _DescribeMatchmakingRuleSetsResponseSuccess
|
967
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMatchmakingRuleSetsOutput]
|
968
|
+
def rule_sets: () -> ::Array[Types::MatchmakingRuleSet]
|
969
|
+
def next_token: () -> ::String
|
970
|
+
end
|
971
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_matchmaking_rule_sets-instance_method
|
972
|
+
def describe_matchmaking_rule_sets: (
|
973
|
+
?names: Array[::String],
|
974
|
+
?limit: ::Integer,
|
975
|
+
?next_token: ::String
|
976
|
+
) -> _DescribeMatchmakingRuleSetsResponseSuccess
|
977
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMatchmakingRuleSetsResponseSuccess
|
978
|
+
|
979
|
+
interface _DescribePlayerSessionsResponseSuccess
|
980
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribePlayerSessionsOutput]
|
981
|
+
def player_sessions: () -> ::Array[Types::PlayerSession]
|
982
|
+
def next_token: () -> ::String
|
983
|
+
end
|
984
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_player_sessions-instance_method
|
985
|
+
def describe_player_sessions: (
|
986
|
+
?game_session_id: ::String,
|
987
|
+
?player_id: ::String,
|
988
|
+
?player_session_id: ::String,
|
989
|
+
?player_session_status_filter: ::String,
|
990
|
+
?limit: ::Integer,
|
991
|
+
?next_token: ::String
|
992
|
+
) -> _DescribePlayerSessionsResponseSuccess
|
993
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePlayerSessionsResponseSuccess
|
994
|
+
|
995
|
+
interface _DescribeRuntimeConfigurationResponseSuccess
|
996
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRuntimeConfigurationOutput]
|
997
|
+
def runtime_configuration: () -> Types::RuntimeConfiguration
|
998
|
+
end
|
999
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_runtime_configuration-instance_method
|
1000
|
+
def describe_runtime_configuration: (
|
1001
|
+
fleet_id: ::String
|
1002
|
+
) -> _DescribeRuntimeConfigurationResponseSuccess
|
1003
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRuntimeConfigurationResponseSuccess
|
1004
|
+
|
1005
|
+
interface _DescribeScalingPoliciesResponseSuccess
|
1006
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeScalingPoliciesOutput]
|
1007
|
+
def scaling_policies: () -> ::Array[Types::ScalingPolicy]
|
1008
|
+
def next_token: () -> ::String
|
1009
|
+
end
|
1010
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_scaling_policies-instance_method
|
1011
|
+
def describe_scaling_policies: (
|
1012
|
+
fleet_id: ::String,
|
1013
|
+
?status_filter: ("ACTIVE" | "UPDATE_REQUESTED" | "UPDATING" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "ERROR"),
|
1014
|
+
?limit: ::Integer,
|
1015
|
+
?next_token: ::String,
|
1016
|
+
?location: ::String
|
1017
|
+
) -> _DescribeScalingPoliciesResponseSuccess
|
1018
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScalingPoliciesResponseSuccess
|
1019
|
+
|
1020
|
+
interface _DescribeScriptResponseSuccess
|
1021
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeScriptOutput]
|
1022
|
+
def script: () -> Types::Script
|
1023
|
+
end
|
1024
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_script-instance_method
|
1025
|
+
def describe_script: (
|
1026
|
+
script_id: ::String
|
1027
|
+
) -> _DescribeScriptResponseSuccess
|
1028
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScriptResponseSuccess
|
1029
|
+
|
1030
|
+
interface _DescribeVpcPeeringAuthorizationsResponseSuccess
|
1031
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcPeeringAuthorizationsOutput]
|
1032
|
+
def vpc_peering_authorizations: () -> ::Array[Types::VpcPeeringAuthorization]
|
1033
|
+
end
|
1034
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_vpc_peering_authorizations-instance_method
|
1035
|
+
def describe_vpc_peering_authorizations: (
|
1036
|
+
) -> _DescribeVpcPeeringAuthorizationsResponseSuccess
|
1037
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcPeeringAuthorizationsResponseSuccess
|
1038
|
+
|
1039
|
+
interface _DescribeVpcPeeringConnectionsResponseSuccess
|
1040
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcPeeringConnectionsOutput]
|
1041
|
+
def vpc_peering_connections: () -> ::Array[Types::VpcPeeringConnection]
|
1042
|
+
end
|
1043
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#describe_vpc_peering_connections-instance_method
|
1044
|
+
def describe_vpc_peering_connections: (
|
1045
|
+
?fleet_id: ::String
|
1046
|
+
) -> _DescribeVpcPeeringConnectionsResponseSuccess
|
1047
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcPeeringConnectionsResponseSuccess
|
1048
|
+
|
1049
|
+
interface _GetComputeAccessResponseSuccess
|
1050
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetComputeAccessOutput]
|
1051
|
+
def fleet_id: () -> ::String
|
1052
|
+
def fleet_arn: () -> ::String
|
1053
|
+
def compute_name: () -> ::String
|
1054
|
+
def compute_arn: () -> ::String
|
1055
|
+
def credentials: () -> Types::AwsCredentials
|
1056
|
+
def target: () -> ::String
|
1057
|
+
end
|
1058
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#get_compute_access-instance_method
|
1059
|
+
def get_compute_access: (
|
1060
|
+
fleet_id: ::String,
|
1061
|
+
compute_name: ::String
|
1062
|
+
) -> _GetComputeAccessResponseSuccess
|
1063
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetComputeAccessResponseSuccess
|
1064
|
+
|
1065
|
+
interface _GetComputeAuthTokenResponseSuccess
|
1066
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetComputeAuthTokenOutput]
|
1067
|
+
def fleet_id: () -> ::String
|
1068
|
+
def fleet_arn: () -> ::String
|
1069
|
+
def compute_name: () -> ::String
|
1070
|
+
def compute_arn: () -> ::String
|
1071
|
+
def auth_token: () -> ::String
|
1072
|
+
def expiration_timestamp: () -> ::Time
|
1073
|
+
end
|
1074
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#get_compute_auth_token-instance_method
|
1075
|
+
def get_compute_auth_token: (
|
1076
|
+
fleet_id: ::String,
|
1077
|
+
compute_name: ::String
|
1078
|
+
) -> _GetComputeAuthTokenResponseSuccess
|
1079
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetComputeAuthTokenResponseSuccess
|
1080
|
+
|
1081
|
+
interface _GetGameSessionLogUrlResponseSuccess
|
1082
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGameSessionLogUrlOutput]
|
1083
|
+
def pre_signed_url: () -> ::String
|
1084
|
+
end
|
1085
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#get_game_session_log_url-instance_method
|
1086
|
+
def get_game_session_log_url: (
|
1087
|
+
game_session_id: ::String
|
1088
|
+
) -> _GetGameSessionLogUrlResponseSuccess
|
1089
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGameSessionLogUrlResponseSuccess
|
1090
|
+
|
1091
|
+
interface _GetInstanceAccessResponseSuccess
|
1092
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetInstanceAccessOutput]
|
1093
|
+
def instance_access: () -> Types::InstanceAccess
|
1094
|
+
end
|
1095
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#get_instance_access-instance_method
|
1096
|
+
def get_instance_access: (
|
1097
|
+
fleet_id: ::String,
|
1098
|
+
instance_id: ::String
|
1099
|
+
) -> _GetInstanceAccessResponseSuccess
|
1100
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceAccessResponseSuccess
|
1101
|
+
|
1102
|
+
interface _ListAliasesResponseSuccess
|
1103
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAliasesOutput]
|
1104
|
+
def aliases: () -> ::Array[Types::Alias]
|
1105
|
+
def next_token: () -> ::String
|
1106
|
+
end
|
1107
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_aliases-instance_method
|
1108
|
+
def list_aliases: (
|
1109
|
+
?routing_strategy_type: ("SIMPLE" | "TERMINAL"),
|
1110
|
+
?name: ::String,
|
1111
|
+
?limit: ::Integer,
|
1112
|
+
?next_token: ::String
|
1113
|
+
) -> _ListAliasesResponseSuccess
|
1114
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAliasesResponseSuccess
|
1115
|
+
|
1116
|
+
interface _ListBuildsResponseSuccess
|
1117
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBuildsOutput]
|
1118
|
+
def builds: () -> ::Array[Types::Build]
|
1119
|
+
def next_token: () -> ::String
|
1120
|
+
end
|
1121
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_builds-instance_method
|
1122
|
+
def list_builds: (
|
1123
|
+
?status: ("INITIALIZED" | "READY" | "FAILED"),
|
1124
|
+
?limit: ::Integer,
|
1125
|
+
?next_token: ::String
|
1126
|
+
) -> _ListBuildsResponseSuccess
|
1127
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBuildsResponseSuccess
|
1128
|
+
|
1129
|
+
interface _ListComputeResponseSuccess
|
1130
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListComputeOutput]
|
1131
|
+
def compute_list: () -> ::Array[Types::Compute]
|
1132
|
+
def next_token: () -> ::String
|
1133
|
+
end
|
1134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_compute-instance_method
|
1135
|
+
def list_compute: (
|
1136
|
+
fleet_id: ::String,
|
1137
|
+
?location: ::String,
|
1138
|
+
?limit: ::Integer,
|
1139
|
+
?next_token: ::String
|
1140
|
+
) -> _ListComputeResponseSuccess
|
1141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListComputeResponseSuccess
|
1142
|
+
|
1143
|
+
interface _ListContainerGroupDefinitionsResponseSuccess
|
1144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContainerGroupDefinitionsOutput]
|
1145
|
+
def container_group_definitions: () -> ::Array[Types::ContainerGroupDefinition]
|
1146
|
+
def next_token: () -> ::String
|
1147
|
+
end
|
1148
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_container_group_definitions-instance_method
|
1149
|
+
def list_container_group_definitions: (
|
1150
|
+
?scheduling_strategy: ("REPLICA" | "DAEMON"),
|
1151
|
+
?limit: ::Integer,
|
1152
|
+
?next_token: ::String
|
1153
|
+
) -> _ListContainerGroupDefinitionsResponseSuccess
|
1154
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContainerGroupDefinitionsResponseSuccess
|
1155
|
+
|
1156
|
+
interface _ListFleetsResponseSuccess
|
1157
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListFleetsOutput]
|
1158
|
+
def fleet_ids: () -> ::Array[::String]
|
1159
|
+
def next_token: () -> ::String
|
1160
|
+
end
|
1161
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_fleets-instance_method
|
1162
|
+
def list_fleets: (
|
1163
|
+
?build_id: ::String,
|
1164
|
+
?script_id: ::String,
|
1165
|
+
?container_group_definition_name: ::String,
|
1166
|
+
?limit: ::Integer,
|
1167
|
+
?next_token: ::String
|
1168
|
+
) -> _ListFleetsResponseSuccess
|
1169
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsResponseSuccess
|
1170
|
+
|
1171
|
+
interface _ListGameServerGroupsResponseSuccess
|
1172
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGameServerGroupsOutput]
|
1173
|
+
def game_server_groups: () -> ::Array[Types::GameServerGroup]
|
1174
|
+
def next_token: () -> ::String
|
1175
|
+
end
|
1176
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_game_server_groups-instance_method
|
1177
|
+
def list_game_server_groups: (
|
1178
|
+
?limit: ::Integer,
|
1179
|
+
?next_token: ::String
|
1180
|
+
) -> _ListGameServerGroupsResponseSuccess
|
1181
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGameServerGroupsResponseSuccess
|
1182
|
+
|
1183
|
+
interface _ListGameServersResponseSuccess
|
1184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGameServersOutput]
|
1185
|
+
def game_servers: () -> ::Array[Types::GameServer]
|
1186
|
+
def next_token: () -> ::String
|
1187
|
+
end
|
1188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_game_servers-instance_method
|
1189
|
+
def list_game_servers: (
|
1190
|
+
game_server_group_name: ::String,
|
1191
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
1192
|
+
?limit: ::Integer,
|
1193
|
+
?next_token: ::String
|
1194
|
+
) -> _ListGameServersResponseSuccess
|
1195
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGameServersResponseSuccess
|
1196
|
+
|
1197
|
+
interface _ListLocationsResponseSuccess
|
1198
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLocationsOutput]
|
1199
|
+
def locations: () -> ::Array[Types::LocationModel]
|
1200
|
+
def next_token: () -> ::String
|
1201
|
+
end
|
1202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_locations-instance_method
|
1203
|
+
def list_locations: (
|
1204
|
+
?filters: Array[("AWS" | "CUSTOM")],
|
1205
|
+
?limit: ::Integer,
|
1206
|
+
?next_token: ::String
|
1207
|
+
) -> _ListLocationsResponseSuccess
|
1208
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLocationsResponseSuccess
|
1209
|
+
|
1210
|
+
interface _ListScriptsResponseSuccess
|
1211
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListScriptsOutput]
|
1212
|
+
def scripts: () -> ::Array[Types::Script]
|
1213
|
+
def next_token: () -> ::String
|
1214
|
+
end
|
1215
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_scripts-instance_method
|
1216
|
+
def list_scripts: (
|
1217
|
+
?limit: ::Integer,
|
1218
|
+
?next_token: ::String
|
1219
|
+
) -> _ListScriptsResponseSuccess
|
1220
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScriptsResponseSuccess
|
1221
|
+
|
1222
|
+
interface _ListTagsForResourceResponseSuccess
|
1223
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
1224
|
+
def tags: () -> ::Array[Types::Tag]
|
1225
|
+
end
|
1226
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#list_tags_for_resource-instance_method
|
1227
|
+
def list_tags_for_resource: (
|
1228
|
+
resource_arn: ::String
|
1229
|
+
) -> _ListTagsForResourceResponseSuccess
|
1230
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1231
|
+
|
1232
|
+
interface _PutScalingPolicyResponseSuccess
|
1233
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutScalingPolicyOutput]
|
1234
|
+
def name: () -> ::String
|
1235
|
+
end
|
1236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#put_scaling_policy-instance_method
|
1237
|
+
def put_scaling_policy: (
|
1238
|
+
name: ::String,
|
1239
|
+
fleet_id: ::String,
|
1240
|
+
?scaling_adjustment: ::Integer,
|
1241
|
+
?scaling_adjustment_type: ("ChangeInCapacity" | "ExactCapacity" | "PercentChangeInCapacity"),
|
1242
|
+
?threshold: ::Float,
|
1243
|
+
?comparison_operator: ("GreaterThanOrEqualToThreshold" | "GreaterThanThreshold" | "LessThanThreshold" | "LessThanOrEqualToThreshold"),
|
1244
|
+
?evaluation_periods: ::Integer,
|
1245
|
+
metric_name: ("ActivatingGameSessions" | "ActiveGameSessions" | "ActiveInstances" | "AvailableGameSessions" | "AvailablePlayerSessions" | "CurrentPlayerSessions" | "IdleInstances" | "PercentAvailableGameSessions" | "PercentIdleInstances" | "QueueDepth" | "WaitTime" | "ConcurrentActivatableGameSessions"),
|
1246
|
+
?policy_type: ("RuleBased" | "TargetBased"),
|
1247
|
+
?target_configuration: {
|
1248
|
+
target_value: ::Float
|
1249
|
+
}
|
1250
|
+
) -> _PutScalingPolicyResponseSuccess
|
1251
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutScalingPolicyResponseSuccess
|
1252
|
+
|
1253
|
+
interface _RegisterComputeResponseSuccess
|
1254
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterComputeOutput]
|
1255
|
+
def compute: () -> Types::Compute
|
1256
|
+
end
|
1257
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#register_compute-instance_method
|
1258
|
+
def register_compute: (
|
1259
|
+
fleet_id: ::String,
|
1260
|
+
compute_name: ::String,
|
1261
|
+
?certificate_path: ::String,
|
1262
|
+
?dns_name: ::String,
|
1263
|
+
?ip_address: ::String,
|
1264
|
+
?location: ::String
|
1265
|
+
) -> _RegisterComputeResponseSuccess
|
1266
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterComputeResponseSuccess
|
1267
|
+
|
1268
|
+
interface _RegisterGameServerResponseSuccess
|
1269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterGameServerOutput]
|
1270
|
+
def game_server: () -> Types::GameServer
|
1271
|
+
end
|
1272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#register_game_server-instance_method
|
1273
|
+
def register_game_server: (
|
1274
|
+
game_server_group_name: ::String,
|
1275
|
+
game_server_id: ::String,
|
1276
|
+
instance_id: ::String,
|
1277
|
+
?connection_info: ::String,
|
1278
|
+
?game_server_data: ::String
|
1279
|
+
) -> _RegisterGameServerResponseSuccess
|
1280
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterGameServerResponseSuccess
|
1281
|
+
|
1282
|
+
interface _RequestUploadCredentialsResponseSuccess
|
1283
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RequestUploadCredentialsOutput]
|
1284
|
+
def upload_credentials: () -> Types::AwsCredentials
|
1285
|
+
def storage_location: () -> Types::S3Location
|
1286
|
+
end
|
1287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#request_upload_credentials-instance_method
|
1288
|
+
def request_upload_credentials: (
|
1289
|
+
build_id: ::String
|
1290
|
+
) -> _RequestUploadCredentialsResponseSuccess
|
1291
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RequestUploadCredentialsResponseSuccess
|
1292
|
+
|
1293
|
+
interface _ResolveAliasResponseSuccess
|
1294
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResolveAliasOutput]
|
1295
|
+
def fleet_id: () -> ::String
|
1296
|
+
def fleet_arn: () -> ::String
|
1297
|
+
end
|
1298
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#resolve_alias-instance_method
|
1299
|
+
def resolve_alias: (
|
1300
|
+
alias_id: ::String
|
1301
|
+
) -> _ResolveAliasResponseSuccess
|
1302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResolveAliasResponseSuccess
|
1303
|
+
|
1304
|
+
interface _ResumeGameServerGroupResponseSuccess
|
1305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResumeGameServerGroupOutput]
|
1306
|
+
def game_server_group: () -> Types::GameServerGroup
|
1307
|
+
end
|
1308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#resume_game_server_group-instance_method
|
1309
|
+
def resume_game_server_group: (
|
1310
|
+
game_server_group_name: ::String,
|
1311
|
+
resume_actions: Array[("REPLACE_INSTANCE_TYPES")]
|
1312
|
+
) -> _ResumeGameServerGroupResponseSuccess
|
1313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResumeGameServerGroupResponseSuccess
|
1314
|
+
|
1315
|
+
interface _SearchGameSessionsResponseSuccess
|
1316
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchGameSessionsOutput]
|
1317
|
+
def game_sessions: () -> ::Array[Types::GameSession]
|
1318
|
+
def next_token: () -> ::String
|
1319
|
+
end
|
1320
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#search_game_sessions-instance_method
|
1321
|
+
def search_game_sessions: (
|
1322
|
+
?fleet_id: ::String,
|
1323
|
+
?alias_id: ::String,
|
1324
|
+
?location: ::String,
|
1325
|
+
?filter_expression: ::String,
|
1326
|
+
?sort_expression: ::String,
|
1327
|
+
?limit: ::Integer,
|
1328
|
+
?next_token: ::String
|
1329
|
+
) -> _SearchGameSessionsResponseSuccess
|
1330
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchGameSessionsResponseSuccess
|
1331
|
+
|
1332
|
+
interface _StartFleetActionsResponseSuccess
|
1333
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartFleetActionsOutput]
|
1334
|
+
def fleet_id: () -> ::String
|
1335
|
+
def fleet_arn: () -> ::String
|
1336
|
+
end
|
1337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#start_fleet_actions-instance_method
|
1338
|
+
def start_fleet_actions: (
|
1339
|
+
fleet_id: ::String,
|
1340
|
+
actions: Array[("AUTO_SCALING")],
|
1341
|
+
?location: ::String
|
1342
|
+
) -> _StartFleetActionsResponseSuccess
|
1343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFleetActionsResponseSuccess
|
1344
|
+
|
1345
|
+
interface _StartGameSessionPlacementResponseSuccess
|
1346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartGameSessionPlacementOutput]
|
1347
|
+
def game_session_placement: () -> Types::GameSessionPlacement
|
1348
|
+
end
|
1349
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#start_game_session_placement-instance_method
|
1350
|
+
def start_game_session_placement: (
|
1351
|
+
placement_id: ::String,
|
1352
|
+
game_session_queue_name: ::String,
|
1353
|
+
?game_properties: Array[
|
1354
|
+
{
|
1355
|
+
key: ::String,
|
1356
|
+
value: ::String
|
1357
|
+
},
|
1358
|
+
],
|
1359
|
+
maximum_player_session_count: ::Integer,
|
1360
|
+
?game_session_name: ::String,
|
1361
|
+
?player_latencies: Array[
|
1362
|
+
{
|
1363
|
+
player_id: ::String?,
|
1364
|
+
region_identifier: ::String?,
|
1365
|
+
latency_in_milliseconds: ::Float?
|
1366
|
+
},
|
1367
|
+
],
|
1368
|
+
?desired_player_sessions: Array[
|
1369
|
+
{
|
1370
|
+
player_id: ::String?,
|
1371
|
+
player_data: ::String?
|
1372
|
+
},
|
1373
|
+
],
|
1374
|
+
?game_session_data: ::String
|
1375
|
+
) -> _StartGameSessionPlacementResponseSuccess
|
1376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartGameSessionPlacementResponseSuccess
|
1377
|
+
|
1378
|
+
interface _StartMatchBackfillResponseSuccess
|
1379
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMatchBackfillOutput]
|
1380
|
+
def matchmaking_ticket: () -> Types::MatchmakingTicket
|
1381
|
+
end
|
1382
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#start_match_backfill-instance_method
|
1383
|
+
def start_match_backfill: (
|
1384
|
+
?ticket_id: ::String,
|
1385
|
+
configuration_name: ::String,
|
1386
|
+
?game_session_arn: ::String,
|
1387
|
+
players: Array[
|
1388
|
+
{
|
1389
|
+
player_id: ::String?,
|
1390
|
+
player_attributes: Hash[::String, untyped]?,
|
1391
|
+
team: ::String?,
|
1392
|
+
latency_in_ms: Hash[::String, ::Integer]?
|
1393
|
+
},
|
1394
|
+
]
|
1395
|
+
) -> _StartMatchBackfillResponseSuccess
|
1396
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMatchBackfillResponseSuccess
|
1397
|
+
|
1398
|
+
interface _StartMatchmakingResponseSuccess
|
1399
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMatchmakingOutput]
|
1400
|
+
def matchmaking_ticket: () -> Types::MatchmakingTicket
|
1401
|
+
end
|
1402
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#start_matchmaking-instance_method
|
1403
|
+
def start_matchmaking: (
|
1404
|
+
?ticket_id: ::String,
|
1405
|
+
configuration_name: ::String,
|
1406
|
+
players: Array[
|
1407
|
+
{
|
1408
|
+
player_id: ::String?,
|
1409
|
+
player_attributes: Hash[::String, untyped]?,
|
1410
|
+
team: ::String?,
|
1411
|
+
latency_in_ms: Hash[::String, ::Integer]?
|
1412
|
+
},
|
1413
|
+
]
|
1414
|
+
) -> _StartMatchmakingResponseSuccess
|
1415
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMatchmakingResponseSuccess
|
1416
|
+
|
1417
|
+
interface _StopFleetActionsResponseSuccess
|
1418
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopFleetActionsOutput]
|
1419
|
+
def fleet_id: () -> ::String
|
1420
|
+
def fleet_arn: () -> ::String
|
1421
|
+
end
|
1422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#stop_fleet_actions-instance_method
|
1423
|
+
def stop_fleet_actions: (
|
1424
|
+
fleet_id: ::String,
|
1425
|
+
actions: Array[("AUTO_SCALING")],
|
1426
|
+
?location: ::String
|
1427
|
+
) -> _StopFleetActionsResponseSuccess
|
1428
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopFleetActionsResponseSuccess
|
1429
|
+
|
1430
|
+
interface _StopGameSessionPlacementResponseSuccess
|
1431
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopGameSessionPlacementOutput]
|
1432
|
+
def game_session_placement: () -> Types::GameSessionPlacement
|
1433
|
+
end
|
1434
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#stop_game_session_placement-instance_method
|
1435
|
+
def stop_game_session_placement: (
|
1436
|
+
placement_id: ::String
|
1437
|
+
) -> _StopGameSessionPlacementResponseSuccess
|
1438
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopGameSessionPlacementResponseSuccess
|
1439
|
+
|
1440
|
+
interface _StopMatchmakingResponseSuccess
|
1441
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopMatchmakingOutput]
|
1442
|
+
end
|
1443
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#stop_matchmaking-instance_method
|
1444
|
+
def stop_matchmaking: (
|
1445
|
+
ticket_id: ::String
|
1446
|
+
) -> _StopMatchmakingResponseSuccess
|
1447
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopMatchmakingResponseSuccess
|
1448
|
+
|
1449
|
+
interface _SuspendGameServerGroupResponseSuccess
|
1450
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SuspendGameServerGroupOutput]
|
1451
|
+
def game_server_group: () -> Types::GameServerGroup
|
1452
|
+
end
|
1453
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#suspend_game_server_group-instance_method
|
1454
|
+
def suspend_game_server_group: (
|
1455
|
+
game_server_group_name: ::String,
|
1456
|
+
suspend_actions: Array[("REPLACE_INSTANCE_TYPES")]
|
1457
|
+
) -> _SuspendGameServerGroupResponseSuccess
|
1458
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SuspendGameServerGroupResponseSuccess
|
1459
|
+
|
1460
|
+
interface _TagResourceResponseSuccess
|
1461
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1462
|
+
end
|
1463
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#tag_resource-instance_method
|
1464
|
+
def tag_resource: (
|
1465
|
+
resource_arn: ::String,
|
1466
|
+
tags: Array[
|
1467
|
+
{
|
1468
|
+
key: ::String,
|
1469
|
+
value: ::String
|
1470
|
+
},
|
1471
|
+
]
|
1472
|
+
) -> _TagResourceResponseSuccess
|
1473
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
1474
|
+
|
1475
|
+
interface _UntagResourceResponseSuccess
|
1476
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
1477
|
+
end
|
1478
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#untag_resource-instance_method
|
1479
|
+
def untag_resource: (
|
1480
|
+
resource_arn: ::String,
|
1481
|
+
tag_keys: Array[::String]
|
1482
|
+
) -> _UntagResourceResponseSuccess
|
1483
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
1484
|
+
|
1485
|
+
interface _UpdateAliasResponseSuccess
|
1486
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAliasOutput]
|
1487
|
+
def alias: () -> Types::Alias
|
1488
|
+
end
|
1489
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_alias-instance_method
|
1490
|
+
def update_alias: (
|
1491
|
+
alias_id: ::String,
|
1492
|
+
?name: ::String,
|
1493
|
+
?description: ::String,
|
1494
|
+
?routing_strategy: {
|
1495
|
+
type: ("SIMPLE" | "TERMINAL")?,
|
1496
|
+
fleet_id: ::String?,
|
1497
|
+
message: ::String?
|
1498
|
+
}
|
1499
|
+
) -> _UpdateAliasResponseSuccess
|
1500
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAliasResponseSuccess
|
1501
|
+
|
1502
|
+
interface _UpdateBuildResponseSuccess
|
1503
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBuildOutput]
|
1504
|
+
def build: () -> Types::Build
|
1505
|
+
end
|
1506
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_build-instance_method
|
1507
|
+
def update_build: (
|
1508
|
+
build_id: ::String,
|
1509
|
+
?name: ::String,
|
1510
|
+
?version: ::String
|
1511
|
+
) -> _UpdateBuildResponseSuccess
|
1512
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBuildResponseSuccess
|
1513
|
+
|
1514
|
+
interface _UpdateFleetAttributesResponseSuccess
|
1515
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetAttributesOutput]
|
1516
|
+
def fleet_id: () -> ::String
|
1517
|
+
def fleet_arn: () -> ::String
|
1518
|
+
end
|
1519
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_fleet_attributes-instance_method
|
1520
|
+
def update_fleet_attributes: (
|
1521
|
+
fleet_id: ::String,
|
1522
|
+
?name: ::String,
|
1523
|
+
?description: ::String,
|
1524
|
+
?new_game_session_protection_policy: ("NoProtection" | "FullProtection"),
|
1525
|
+
?resource_creation_limit_policy: {
|
1526
|
+
new_game_sessions_per_creator: ::Integer?,
|
1527
|
+
policy_period_in_minutes: ::Integer?
|
1528
|
+
},
|
1529
|
+
?metric_groups: Array[::String],
|
1530
|
+
?anywhere_configuration: {
|
1531
|
+
cost: ::String
|
1532
|
+
}
|
1533
|
+
) -> _UpdateFleetAttributesResponseSuccess
|
1534
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetAttributesResponseSuccess
|
1535
|
+
|
1536
|
+
interface _UpdateFleetCapacityResponseSuccess
|
1537
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetCapacityOutput]
|
1538
|
+
def fleet_id: () -> ::String
|
1539
|
+
def fleet_arn: () -> ::String
|
1540
|
+
def location: () -> ::String
|
1541
|
+
end
|
1542
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_fleet_capacity-instance_method
|
1543
|
+
def update_fleet_capacity: (
|
1544
|
+
fleet_id: ::String,
|
1545
|
+
?desired_instances: ::Integer,
|
1546
|
+
?min_size: ::Integer,
|
1547
|
+
?max_size: ::Integer,
|
1548
|
+
?location: ::String
|
1549
|
+
) -> _UpdateFleetCapacityResponseSuccess
|
1550
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetCapacityResponseSuccess
|
1551
|
+
|
1552
|
+
interface _UpdateFleetPortSettingsResponseSuccess
|
1553
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetPortSettingsOutput]
|
1554
|
+
def fleet_id: () -> ::String
|
1555
|
+
def fleet_arn: () -> ::String
|
1556
|
+
end
|
1557
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_fleet_port_settings-instance_method
|
1558
|
+
def update_fleet_port_settings: (
|
1559
|
+
fleet_id: ::String,
|
1560
|
+
?inbound_permission_authorizations: Array[
|
1561
|
+
{
|
1562
|
+
from_port: ::Integer,
|
1563
|
+
to_port: ::Integer,
|
1564
|
+
ip_range: ::String,
|
1565
|
+
protocol: ("TCP" | "UDP")
|
1566
|
+
},
|
1567
|
+
],
|
1568
|
+
?inbound_permission_revocations: Array[
|
1569
|
+
{
|
1570
|
+
from_port: ::Integer,
|
1571
|
+
to_port: ::Integer,
|
1572
|
+
ip_range: ::String,
|
1573
|
+
protocol: ("TCP" | "UDP")
|
1574
|
+
},
|
1575
|
+
]
|
1576
|
+
) -> _UpdateFleetPortSettingsResponseSuccess
|
1577
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetPortSettingsResponseSuccess
|
1578
|
+
|
1579
|
+
interface _UpdateGameServerResponseSuccess
|
1580
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGameServerOutput]
|
1581
|
+
def game_server: () -> Types::GameServer
|
1582
|
+
end
|
1583
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_game_server-instance_method
|
1584
|
+
def update_game_server: (
|
1585
|
+
game_server_group_name: ::String,
|
1586
|
+
game_server_id: ::String,
|
1587
|
+
?game_server_data: ::String,
|
1588
|
+
?utilization_status: ("AVAILABLE" | "UTILIZED"),
|
1589
|
+
?health_check: ("HEALTHY")
|
1590
|
+
) -> _UpdateGameServerResponseSuccess
|
1591
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGameServerResponseSuccess
|
1592
|
+
|
1593
|
+
interface _UpdateGameServerGroupResponseSuccess
|
1594
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGameServerGroupOutput]
|
1595
|
+
def game_server_group: () -> Types::GameServerGroup
|
1596
|
+
end
|
1597
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_game_server_group-instance_method
|
1598
|
+
def update_game_server_group: (
|
1599
|
+
game_server_group_name: ::String,
|
1600
|
+
?role_arn: ::String,
|
1601
|
+
?instance_definitions: Array[
|
1602
|
+
{
|
1603
|
+
instance_type: ("c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge"),
|
1604
|
+
weighted_capacity: ::String?
|
1605
|
+
},
|
1606
|
+
],
|
1607
|
+
?game_server_protection_policy: ("NO_PROTECTION" | "FULL_PROTECTION"),
|
1608
|
+
?balancing_strategy: ("SPOT_ONLY" | "SPOT_PREFERRED" | "ON_DEMAND_ONLY")
|
1609
|
+
) -> _UpdateGameServerGroupResponseSuccess
|
1610
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGameServerGroupResponseSuccess
|
1611
|
+
|
1612
|
+
interface _UpdateGameSessionResponseSuccess
|
1613
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGameSessionOutput]
|
1614
|
+
def game_session: () -> Types::GameSession
|
1615
|
+
end
|
1616
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_game_session-instance_method
|
1617
|
+
def update_game_session: (
|
1618
|
+
game_session_id: ::String,
|
1619
|
+
?maximum_player_session_count: ::Integer,
|
1620
|
+
?name: ::String,
|
1621
|
+
?player_session_creation_policy: ("ACCEPT_ALL" | "DENY_ALL"),
|
1622
|
+
?protection_policy: ("NoProtection" | "FullProtection"),
|
1623
|
+
?game_properties: Array[
|
1624
|
+
{
|
1625
|
+
key: ::String,
|
1626
|
+
value: ::String
|
1627
|
+
},
|
1628
|
+
]
|
1629
|
+
) -> _UpdateGameSessionResponseSuccess
|
1630
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGameSessionResponseSuccess
|
1631
|
+
|
1632
|
+
interface _UpdateGameSessionQueueResponseSuccess
|
1633
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGameSessionQueueOutput]
|
1634
|
+
def game_session_queue: () -> Types::GameSessionQueue
|
1635
|
+
end
|
1636
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_game_session_queue-instance_method
|
1637
|
+
def update_game_session_queue: (
|
1638
|
+
name: ::String,
|
1639
|
+
?timeout_in_seconds: ::Integer,
|
1640
|
+
?player_latency_policies: Array[
|
1641
|
+
{
|
1642
|
+
maximum_individual_player_latency_milliseconds: ::Integer?,
|
1643
|
+
policy_duration_seconds: ::Integer?
|
1644
|
+
},
|
1645
|
+
],
|
1646
|
+
?destinations: Array[
|
1647
|
+
{
|
1648
|
+
destination_arn: ::String?
|
1649
|
+
},
|
1650
|
+
],
|
1651
|
+
?filter_configuration: {
|
1652
|
+
allowed_locations: Array[::String]?
|
1653
|
+
},
|
1654
|
+
?priority_configuration: {
|
1655
|
+
priority_order: Array[("LATENCY" | "COST" | "DESTINATION" | "LOCATION")]?,
|
1656
|
+
location_order: Array[::String]?
|
1657
|
+
},
|
1658
|
+
?custom_event_data: ::String,
|
1659
|
+
?notification_target: ::String
|
1660
|
+
) -> _UpdateGameSessionQueueResponseSuccess
|
1661
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGameSessionQueueResponseSuccess
|
1662
|
+
|
1663
|
+
interface _UpdateMatchmakingConfigurationResponseSuccess
|
1664
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMatchmakingConfigurationOutput]
|
1665
|
+
def configuration: () -> Types::MatchmakingConfiguration
|
1666
|
+
end
|
1667
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_matchmaking_configuration-instance_method
|
1668
|
+
def update_matchmaking_configuration: (
|
1669
|
+
name: ::String,
|
1670
|
+
?description: ::String,
|
1671
|
+
?game_session_queue_arns: Array[::String],
|
1672
|
+
?request_timeout_seconds: ::Integer,
|
1673
|
+
?acceptance_timeout_seconds: ::Integer,
|
1674
|
+
?acceptance_required: bool,
|
1675
|
+
?rule_set_name: ::String,
|
1676
|
+
?notification_target: ::String,
|
1677
|
+
?additional_player_count: ::Integer,
|
1678
|
+
?custom_event_data: ::String,
|
1679
|
+
?game_properties: Array[
|
1680
|
+
{
|
1681
|
+
key: ::String,
|
1682
|
+
value: ::String
|
1683
|
+
},
|
1684
|
+
],
|
1685
|
+
?game_session_data: ::String,
|
1686
|
+
?backfill_mode: ("AUTOMATIC" | "MANUAL"),
|
1687
|
+
?flex_match_mode: ("STANDALONE" | "WITH_QUEUE")
|
1688
|
+
) -> _UpdateMatchmakingConfigurationResponseSuccess
|
1689
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMatchmakingConfigurationResponseSuccess
|
1690
|
+
|
1691
|
+
interface _UpdateRuntimeConfigurationResponseSuccess
|
1692
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuntimeConfigurationOutput]
|
1693
|
+
def runtime_configuration: () -> Types::RuntimeConfiguration
|
1694
|
+
end
|
1695
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_runtime_configuration-instance_method
|
1696
|
+
def update_runtime_configuration: (
|
1697
|
+
fleet_id: ::String,
|
1698
|
+
runtime_configuration: {
|
1699
|
+
server_processes: Array[
|
1700
|
+
{
|
1701
|
+
launch_path: ::String,
|
1702
|
+
parameters: ::String?,
|
1703
|
+
concurrent_executions: ::Integer
|
1704
|
+
},
|
1705
|
+
]?,
|
1706
|
+
max_concurrent_game_session_activations: ::Integer?,
|
1707
|
+
game_session_activation_timeout_seconds: ::Integer?
|
1708
|
+
}
|
1709
|
+
) -> _UpdateRuntimeConfigurationResponseSuccess
|
1710
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuntimeConfigurationResponseSuccess
|
1711
|
+
|
1712
|
+
interface _UpdateScriptResponseSuccess
|
1713
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScriptOutput]
|
1714
|
+
def script: () -> Types::Script
|
1715
|
+
end
|
1716
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#update_script-instance_method
|
1717
|
+
def update_script: (
|
1718
|
+
script_id: ::String,
|
1719
|
+
?name: ::String,
|
1720
|
+
?version: ::String,
|
1721
|
+
?storage_location: {
|
1722
|
+
bucket: ::String?,
|
1723
|
+
key: ::String?,
|
1724
|
+
role_arn: ::String?,
|
1725
|
+
object_version: ::String?
|
1726
|
+
},
|
1727
|
+
?zip_file: ::String
|
1728
|
+
) -> _UpdateScriptResponseSuccess
|
1729
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateScriptResponseSuccess
|
1730
|
+
|
1731
|
+
interface _ValidateMatchmakingRuleSetResponseSuccess
|
1732
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ValidateMatchmakingRuleSetOutput]
|
1733
|
+
def valid: () -> bool
|
1734
|
+
end
|
1735
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#validate_matchmaking_rule_set-instance_method
|
1736
|
+
def validate_matchmaking_rule_set: (
|
1737
|
+
rule_set_body: ::String
|
1738
|
+
) -> _ValidateMatchmakingRuleSetResponseSuccess
|
1739
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateMatchmakingRuleSetResponseSuccess
|
1740
|
+
end
|
1741
|
+
end
|
1742
|
+
end
|
1743
|
+
|