aws-sdk-gameliftstreams 1.17.0 → 1.18.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gameliftstreams/client.rb +160 -42
- data/lib/aws-sdk-gameliftstreams/client_api.rb +16 -1
- data/lib/aws-sdk-gameliftstreams/types.rb +609 -71
- data/lib/aws-sdk-gameliftstreams.rb +1 -1
- data/sig/client.rbs +19 -8
- data/sig/types.rbs +18 -5
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -90,7 +90,9 @@ module Aws
|
|
|
90
90
|
{
|
|
91
91
|
location_name: ::String,
|
|
92
92
|
always_on_capacity: ::Integer?,
|
|
93
|
-
on_demand_capacity: ::Integer
|
|
93
|
+
on_demand_capacity: ::Integer?,
|
|
94
|
+
target_idle_capacity: ::Integer?,
|
|
95
|
+
maximum_capacity: ::Integer?
|
|
94
96
|
},
|
|
95
97
|
]
|
|
96
98
|
) -> _AddStreamGroupLocationsResponseSuccess
|
|
@@ -147,7 +149,7 @@ module Aws
|
|
|
147
149
|
def description: () -> ::String
|
|
148
150
|
def default_application: () -> Types::DefaultApplication
|
|
149
151
|
def location_states: () -> ::Array[Types::LocationState]
|
|
150
|
-
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
152
|
+
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
151
153
|
def id: () -> ::String
|
|
152
154
|
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
153
155
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
@@ -159,13 +161,15 @@ module Aws
|
|
|
159
161
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#create_stream_group-instance_method
|
|
160
162
|
def create_stream_group: (
|
|
161
163
|
description: ::String,
|
|
162
|
-
stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022"),
|
|
164
|
+
stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022"),
|
|
163
165
|
?default_application_identifier: ::String,
|
|
164
166
|
?location_configurations: Array[
|
|
165
167
|
{
|
|
166
168
|
location_name: ::String,
|
|
167
169
|
always_on_capacity: ::Integer?,
|
|
168
|
-
on_demand_capacity: ::Integer
|
|
170
|
+
on_demand_capacity: ::Integer?,
|
|
171
|
+
target_idle_capacity: ::Integer?,
|
|
172
|
+
maximum_capacity: ::Integer?
|
|
169
173
|
},
|
|
170
174
|
],
|
|
171
175
|
?tags: Hash[::String, ::String],
|
|
@@ -250,7 +254,7 @@ module Aws
|
|
|
250
254
|
def description: () -> ::String
|
|
251
255
|
def default_application: () -> Types::DefaultApplication
|
|
252
256
|
def location_states: () -> ::Array[Types::LocationState]
|
|
253
|
-
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
257
|
+
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
254
258
|
def id: () -> ::String
|
|
255
259
|
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
256
260
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
@@ -281,6 +285,7 @@ module Aws
|
|
|
281
285
|
def session_length_seconds: () -> ::Integer
|
|
282
286
|
def additional_launch_args: () -> ::Array[::String]
|
|
283
287
|
def additional_environment_variables: () -> ::Hash[::String, ::String]
|
|
288
|
+
def performance_stats_configuration: () -> Types::PerformanceStatsConfiguration
|
|
284
289
|
def log_file_location_uri: () -> ::String
|
|
285
290
|
def web_sdk_protocol_url: () -> ::String
|
|
286
291
|
def last_updated_at: () -> ::Time
|
|
@@ -381,6 +386,7 @@ module Aws
|
|
|
381
386
|
def session_length_seconds: () -> ::Integer
|
|
382
387
|
def additional_launch_args: () -> ::Array[::String]
|
|
383
388
|
def additional_environment_variables: () -> ::Hash[::String, ::String]
|
|
389
|
+
def performance_stats_configuration: () -> Types::PerformanceStatsConfiguration
|
|
384
390
|
def log_file_location_uri: () -> ::String
|
|
385
391
|
def web_sdk_protocol_url: () -> ::String
|
|
386
392
|
def last_updated_at: () -> ::Time
|
|
@@ -401,7 +407,10 @@ module Aws
|
|
|
401
407
|
?connection_timeout_seconds: ::Integer,
|
|
402
408
|
?session_length_seconds: ::Integer,
|
|
403
409
|
?additional_launch_args: Array[::String],
|
|
404
|
-
?additional_environment_variables: Hash[::String, ::String]
|
|
410
|
+
?additional_environment_variables: Hash[::String, ::String],
|
|
411
|
+
?performance_stats_configuration: {
|
|
412
|
+
shared_with_client: bool?
|
|
413
|
+
}
|
|
405
414
|
) -> _StartStreamSessionResponseSuccess
|
|
406
415
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartStreamSessionResponseSuccess
|
|
407
416
|
|
|
@@ -464,7 +473,7 @@ module Aws
|
|
|
464
473
|
def description: () -> ::String
|
|
465
474
|
def default_application: () -> Types::DefaultApplication
|
|
466
475
|
def location_states: () -> ::Array[Types::LocationState]
|
|
467
|
-
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
476
|
+
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
468
477
|
def id: () -> ::String
|
|
469
478
|
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
470
479
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
@@ -480,7 +489,9 @@ module Aws
|
|
|
480
489
|
{
|
|
481
490
|
location_name: ::String,
|
|
482
491
|
always_on_capacity: ::Integer?,
|
|
483
|
-
on_demand_capacity: ::Integer
|
|
492
|
+
on_demand_capacity: ::Integer?,
|
|
493
|
+
target_idle_capacity: ::Integer?,
|
|
494
|
+
maximum_capacity: ::Integer?
|
|
484
495
|
},
|
|
485
496
|
],
|
|
486
497
|
?description: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -85,7 +85,7 @@ module Aws::GameLiftStreams
|
|
|
85
85
|
|
|
86
86
|
class CreateStreamGroupInput
|
|
87
87
|
attr_accessor description: ::String
|
|
88
|
-
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
88
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
89
89
|
attr_accessor default_application_identifier: ::String
|
|
90
90
|
attr_accessor location_configurations: ::Array[Types::LocationConfiguration]
|
|
91
91
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -98,7 +98,7 @@ module Aws::GameLiftStreams
|
|
|
98
98
|
attr_accessor description: ::String
|
|
99
99
|
attr_accessor default_application: Types::DefaultApplication
|
|
100
100
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
101
|
-
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
101
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
102
102
|
attr_accessor id: ::String
|
|
103
103
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
104
104
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
|
@@ -200,7 +200,7 @@ module Aws::GameLiftStreams
|
|
|
200
200
|
attr_accessor description: ::String
|
|
201
201
|
attr_accessor default_application: Types::DefaultApplication
|
|
202
202
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
203
|
-
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
203
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
204
204
|
attr_accessor id: ::String
|
|
205
205
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
206
206
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
|
@@ -232,6 +232,7 @@ module Aws::GameLiftStreams
|
|
|
232
232
|
attr_accessor session_length_seconds: ::Integer
|
|
233
233
|
attr_accessor additional_launch_args: ::Array[::String]
|
|
234
234
|
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
|
235
|
+
attr_accessor performance_stats_configuration: Types::PerformanceStatsConfiguration
|
|
235
236
|
attr_accessor log_file_location_uri: ::String
|
|
236
237
|
attr_accessor web_sdk_protocol_url: ::String
|
|
237
238
|
attr_accessor last_updated_at: ::Time
|
|
@@ -313,6 +314,8 @@ module Aws::GameLiftStreams
|
|
|
313
314
|
attr_accessor location_name: ::String
|
|
314
315
|
attr_accessor always_on_capacity: ::Integer
|
|
315
316
|
attr_accessor on_demand_capacity: ::Integer
|
|
317
|
+
attr_accessor target_idle_capacity: ::Integer
|
|
318
|
+
attr_accessor maximum_capacity: ::Integer
|
|
316
319
|
SENSITIVE: []
|
|
317
320
|
end
|
|
318
321
|
|
|
@@ -321,12 +324,19 @@ module Aws::GameLiftStreams
|
|
|
321
324
|
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "ERROR" | "REMOVING")
|
|
322
325
|
attr_accessor always_on_capacity: ::Integer
|
|
323
326
|
attr_accessor on_demand_capacity: ::Integer
|
|
327
|
+
attr_accessor target_idle_capacity: ::Integer
|
|
328
|
+
attr_accessor maximum_capacity: ::Integer
|
|
324
329
|
attr_accessor requested_capacity: ::Integer
|
|
325
330
|
attr_accessor allocated_capacity: ::Integer
|
|
326
331
|
attr_accessor idle_capacity: ::Integer
|
|
327
332
|
SENSITIVE: []
|
|
328
333
|
end
|
|
329
334
|
|
|
335
|
+
class PerformanceStatsConfiguration
|
|
336
|
+
attr_accessor shared_with_client: bool
|
|
337
|
+
SENSITIVE: []
|
|
338
|
+
end
|
|
339
|
+
|
|
330
340
|
class RemoveStreamGroupLocationsInput
|
|
331
341
|
attr_accessor identifier: ::String
|
|
332
342
|
attr_accessor locations: ::Array[::String]
|
|
@@ -368,6 +378,7 @@ module Aws::GameLiftStreams
|
|
|
368
378
|
attr_accessor session_length_seconds: ::Integer
|
|
369
379
|
attr_accessor additional_launch_args: ::Array[::String]
|
|
370
380
|
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
|
381
|
+
attr_accessor performance_stats_configuration: Types::PerformanceStatsConfiguration
|
|
371
382
|
SENSITIVE: [:signal_request]
|
|
372
383
|
end
|
|
373
384
|
|
|
@@ -386,6 +397,7 @@ module Aws::GameLiftStreams
|
|
|
386
397
|
attr_accessor session_length_seconds: ::Integer
|
|
387
398
|
attr_accessor additional_launch_args: ::Array[::String]
|
|
388
399
|
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
|
400
|
+
attr_accessor performance_stats_configuration: Types::PerformanceStatsConfiguration
|
|
389
401
|
attr_accessor log_file_location_uri: ::String
|
|
390
402
|
attr_accessor web_sdk_protocol_url: ::String
|
|
391
403
|
attr_accessor last_updated_at: ::Time
|
|
@@ -400,7 +412,7 @@ module Aws::GameLiftStreams
|
|
|
400
412
|
attr_accessor id: ::String
|
|
401
413
|
attr_accessor description: ::String
|
|
402
414
|
attr_accessor default_application: Types::DefaultApplication
|
|
403
|
-
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
415
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
404
416
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
405
417
|
attr_accessor created_at: ::Time
|
|
406
418
|
attr_accessor last_updated_at: ::Time
|
|
@@ -412,6 +424,7 @@ module Aws::GameLiftStreams
|
|
|
412
424
|
attr_accessor arn: ::String
|
|
413
425
|
attr_accessor user_id: ::String
|
|
414
426
|
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
427
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
415
428
|
attr_accessor protocol: ("WebRTC")
|
|
416
429
|
attr_accessor last_updated_at: ::Time
|
|
417
430
|
attr_accessor created_at: ::Time
|
|
@@ -489,7 +502,7 @@ module Aws::GameLiftStreams
|
|
|
489
502
|
attr_accessor description: ::String
|
|
490
503
|
attr_accessor default_application: Types::DefaultApplication
|
|
491
504
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
492
|
-
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
505
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022" | "gen6n_small" | "gen6n_medium" | "gen6n_high" | "gen6n_ultra" | "gen6n_ultra_win2022" | "gen6n_pro" | "gen6n_pro_win2022")
|
|
493
506
|
attr_accessor id: ::String
|
|
494
507
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
495
508
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|