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