aws-sdk-gameliftstreams 1.12.0 → 1.13.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 +19 -8
- data/lib/aws-sdk-gameliftstreams/endpoint_parameters.rb +3 -3
- data/lib/aws-sdk-gameliftstreams/types.rb +93 -32
- data/lib/aws-sdk-gameliftstreams.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 587a98e34e4f5b1bf4fd7568cc7309ae021d91ce774c07526ec372d15f58be89
|
4
|
+
data.tar.gz: cefa598110710c8e40bd5f7a432e8d2f73e031a707a530c433fdaff8238b7024
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad8a75a90537b5373ae5c196ee08c1da305b97cd7b5cb1f91ebbfe4c949c8a3387215dca562d6ed2ad22720d813f81a7a87aa4976b2d7f8ff3a25a80722cfb40
|
7
|
+
data.tar.gz: fee056e6ca515e83fd32c9f0c5d43fea09c3c75967a3f7cfeb2729a8655c1959b8a5f1ab284e38e5ec4305d872a7374b567d527552dd141eae5951028aa3cc84
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2025-10-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons
|
8
|
+
|
4
9
|
1.12.0 (2025-08-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -659,9 +659,14 @@ module Aws::GameLiftStreams
|
|
659
659
|
# * Proton 8.0-2c (`Type=PROTON, Version=20230704`)
|
660
660
|
#
|
661
661
|
# @option params [required, String] :executable_path
|
662
|
-
# The path and file name of the executable file that
|
663
|
-
#
|
664
|
-
#
|
662
|
+
# The relative path and file name of the executable file that Amazon
|
663
|
+
# GameLift Streams will stream. Specify a path relative to the location
|
664
|
+
# set in `ApplicationSourceUri`. The file must be contained within the
|
665
|
+
# application's root folder. For Windows applications, the file must be
|
666
|
+
# a valid Windows executable or batch file with a filename ending in
|
667
|
+
# .exe, .cmd, or .bat. For Linux applications, the file must be a valid
|
668
|
+
# Linux binary executable or a script that contains an initial
|
669
|
+
# interpreter line starting with a shebang ('`#!`').
|
665
670
|
#
|
666
671
|
# @option params [required, String] :application_source_uri
|
667
672
|
# The location of the content that you want to stream. Enter an Amazon
|
@@ -816,8 +821,8 @@ module Aws::GameLiftStreams
|
|
816
821
|
# * **Always-on**: The streaming capacity that is allocated and ready to
|
817
822
|
# handle stream requests without delay. You pay for this capacity
|
818
823
|
# whether it's in use or not. Best for quickest time from streaming
|
819
|
-
# request to streaming session. Default is 1
|
820
|
-
# group or adding a location.
|
824
|
+
# request to streaming session. Default is 1 (2 for high stream
|
825
|
+
# classes) when creating a stream group or adding a location.
|
821
826
|
#
|
822
827
|
# * **On-demand**: The streaming capacity that Amazon GameLift Streams
|
823
828
|
# can allocate in response to stream requests, and then de-allocate
|
@@ -826,6 +831,9 @@ module Aws::GameLiftStreams
|
|
826
831
|
# minutes). Default is 0 when creating a stream group or adding a
|
827
832
|
# location.
|
828
833
|
#
|
834
|
+
# Values for capacity must be whole number multiples of the tenancy
|
835
|
+
# value of the stream group's stream class.
|
836
|
+
#
|
829
837
|
# To adjust the capacity of any `ACTIVE` stream group, call
|
830
838
|
# [UpdateStreamGroup][1].
|
831
839
|
#
|
@@ -2586,8 +2594,8 @@ module Aws::GameLiftStreams
|
|
2586
2594
|
# * **Always-on**: The streaming capacity that is allocated and ready to
|
2587
2595
|
# handle stream requests without delay. You pay for this capacity
|
2588
2596
|
# whether it's in use or not. Best for quickest time from streaming
|
2589
|
-
# request to streaming session. Default is 1
|
2590
|
-
# group or adding a location.
|
2597
|
+
# request to streaming session. Default is 1 (2 for high stream
|
2598
|
+
# classes) when creating a stream group or adding a location.
|
2591
2599
|
#
|
2592
2600
|
# * **On-demand**: The streaming capacity that Amazon GameLift Streams
|
2593
2601
|
# can allocate in response to stream requests, and then de-allocate
|
@@ -2596,6 +2604,9 @@ module Aws::GameLiftStreams
|
|
2596
2604
|
# minutes). Default is 0 when creating a stream group or adding a
|
2597
2605
|
# location.
|
2598
2606
|
#
|
2607
|
+
# Values for capacity must be whole number multiples of the tenancy
|
2608
|
+
# value of the stream group's stream class.
|
2609
|
+
#
|
2599
2610
|
# To update a stream group, specify the stream group's Amazon Resource
|
2600
2611
|
# Name (ARN) and provide the new values. If the request is successful,
|
2601
2612
|
# Amazon GameLift Streams returns the complete updated metadata for the
|
@@ -2722,7 +2733,7 @@ module Aws::GameLiftStreams
|
|
2722
2733
|
tracer: tracer
|
2723
2734
|
)
|
2724
2735
|
context[:gem_name] = 'aws-sdk-gameliftstreams'
|
2725
|
-
context[:gem_version] = '1.
|
2736
|
+
context[:gem_version] = '1.13.0'
|
2726
2737
|
Seahorse::Client::Request.new(handlers, context)
|
2727
2738
|
end
|
2728
2739
|
|
@@ -13,17 +13,17 @@ module Aws::GameLiftStreams
|
|
13
13
|
# @!attribute use_fips
|
14
14
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [boolean]
|
17
17
|
#
|
18
18
|
# @!attribute endpoint
|
19
19
|
# Override the endpoint used to send this request
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [string]
|
22
22
|
#
|
23
23
|
# @!attribute region
|
24
24
|
# The AWS region used to dispatch the request.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [string]
|
27
27
|
#
|
28
28
|
EndpointParameters = Struct.new(
|
29
29
|
:use_fips,
|
@@ -133,8 +133,9 @@ module Aws::GameLiftStreams
|
|
133
133
|
#
|
134
134
|
# * `READY`: The application is ready to deploy in a stream group.
|
135
135
|
#
|
136
|
-
# * `ERROR`: An error occurred when setting up the application.
|
137
|
-
# `
|
136
|
+
# * `ERROR`: An error occurred when setting up the application. For
|
137
|
+
# more information about the error, call `GetApplication` and refer
|
138
|
+
# to `StatusReason`.
|
138
139
|
#
|
139
140
|
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
140
141
|
# the application.
|
@@ -304,9 +305,15 @@ module Aws::GameLiftStreams
|
|
304
305
|
# @return [Types::RuntimeEnvironment]
|
305
306
|
#
|
306
307
|
# @!attribute [rw] executable_path
|
307
|
-
# The path and file name of the executable file that
|
308
|
-
#
|
309
|
-
# location set in `ApplicationSourceUri`.
|
308
|
+
# The relative path and file name of the executable file that Amazon
|
309
|
+
# GameLift Streams will stream. Specify a path relative to the
|
310
|
+
# location set in `ApplicationSourceUri`. The file must be contained
|
311
|
+
# within the application's root folder. For Windows applications, the
|
312
|
+
# file must be a valid Windows executable or batch file with a
|
313
|
+
# filename ending in .exe, .cmd, or .bat. For Linux applications, the
|
314
|
+
# file must be a valid Linux binary executable or a script that
|
315
|
+
# contains an initial interpreter line starting with a shebang
|
316
|
+
# ('`#!`').
|
310
317
|
# @return [String]
|
311
318
|
#
|
312
319
|
# @!attribute [rw] application_source_uri
|
@@ -438,8 +445,8 @@ module Aws::GameLiftStreams
|
|
438
445
|
# @return [Types::RuntimeEnvironment]
|
439
446
|
#
|
440
447
|
# @!attribute [rw] executable_path
|
441
|
-
# The path and file name of the executable file that launches
|
442
|
-
# content for streaming.
|
448
|
+
# The relative path and file name of the executable file that launches
|
449
|
+
# the content for streaming.
|
443
450
|
# @return [String]
|
444
451
|
#
|
445
452
|
# @!attribute [rw] application_log_paths
|
@@ -833,7 +840,8 @@ module Aws::GameLiftStreams
|
|
833
840
|
# and remove any locations which are in error.
|
834
841
|
#
|
835
842
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
836
|
-
# `StatusReason`
|
843
|
+
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
844
|
+
# and `UpdateStreamGroup`) for more information.
|
837
845
|
#
|
838
846
|
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
839
847
|
# the stream group.
|
@@ -1255,8 +1263,8 @@ module Aws::GameLiftStreams
|
|
1255
1263
|
# @return [Types::RuntimeEnvironment]
|
1256
1264
|
#
|
1257
1265
|
# @!attribute [rw] executable_path
|
1258
|
-
# The path and file name of the executable file that launches
|
1259
|
-
# content for streaming.
|
1266
|
+
# The relative path and file name of the executable file that launches
|
1267
|
+
# the content for streaming.
|
1260
1268
|
# @return [String]
|
1261
1269
|
#
|
1262
1270
|
# @!attribute [rw] application_log_paths
|
@@ -1522,7 +1530,8 @@ module Aws::GameLiftStreams
|
|
1522
1530
|
# and remove any locations which are in error.
|
1523
1531
|
#
|
1524
1532
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
1525
|
-
# `StatusReason`
|
1533
|
+
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
1534
|
+
# and `UpdateStreamGroup`) for more information.
|
1526
1535
|
#
|
1527
1536
|
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
1528
1537
|
# the stream group.
|
@@ -1667,7 +1676,9 @@ module Aws::GameLiftStreams
|
|
1667
1676
|
# minutes, or if the maximum length of a session specified by
|
1668
1677
|
# `SessionLengthSeconds` in `StartStreamSession` is exceeded.
|
1669
1678
|
#
|
1670
|
-
# * `ERROR`: The stream session failed to activate.
|
1679
|
+
# * `ERROR`: The stream session failed to activate. See `StatusReason`
|
1680
|
+
# (returned by `GetStreamSession` and `StartStreamSession`) for more
|
1681
|
+
# information.
|
1671
1682
|
#
|
1672
1683
|
# * `PENDING_CLIENT_RECONNECTION`: A client has recently disconnected
|
1673
1684
|
# and the stream session is waiting for the client to reconnect. A
|
@@ -1688,6 +1699,23 @@ module Aws::GameLiftStreams
|
|
1688
1699
|
# @!attribute [rw] status_reason
|
1689
1700
|
# A short description of the reason the stream session is in `ERROR`
|
1690
1701
|
# status.
|
1702
|
+
#
|
1703
|
+
# * `internalError`: An internal service error occurred. Start a new
|
1704
|
+
# stream session to continue streaming.
|
1705
|
+
#
|
1706
|
+
# * `invalidSignalRequest`: The WebRTC signal request that was sent is
|
1707
|
+
# not valid. When starting or reconnecting to a stream session, use
|
1708
|
+
# `generateSignalRequest` in the Amazon GameLift Streams Web SDK to
|
1709
|
+
# generate a new signal request.
|
1710
|
+
#
|
1711
|
+
# * `placementTimeout`: Amazon GameLift Streams could not find
|
1712
|
+
# available stream capacity to start a stream session. Increase the
|
1713
|
+
# stream capacity in the stream group or wait until capacity becomes
|
1714
|
+
# available.
|
1715
|
+
#
|
1716
|
+
# * `applicationLogS3DestinationError`: Could not write the
|
1717
|
+
# application log to the Amazon S3 bucket that is configured for the
|
1718
|
+
# streaming application. Make sure the bucket still exists.
|
1691
1719
|
# @return [String]
|
1692
1720
|
#
|
1693
1721
|
# @!attribute [rw] protocol
|
@@ -2122,8 +2150,8 @@ module Aws::GameLiftStreams
|
|
2122
2150
|
# The streaming capacity that is allocated and ready to handle stream
|
2123
2151
|
# requests without delay. You pay for this capacity whether it's in
|
2124
2152
|
# use or not. Best for quickest time from streaming request to
|
2125
|
-
# streaming session. Default is 1
|
2126
|
-
# adding a location.
|
2153
|
+
# streaming session. Default is 1 (2 for high stream classes) when
|
2154
|
+
# creating a stream group or adding a location.
|
2127
2155
|
# @return [Integer]
|
2128
2156
|
#
|
2129
2157
|
# @!attribute [rw] on_demand_capacity
|
@@ -2185,8 +2213,8 @@ module Aws::GameLiftStreams
|
|
2185
2213
|
# The streaming capacity that is allocated and ready to handle stream
|
2186
2214
|
# requests without delay. You pay for this capacity whether it's in
|
2187
2215
|
# use or not. Best for quickest time from streaming request to
|
2188
|
-
# streaming session. Default is 1
|
2189
|
-
# adding a location.
|
2216
|
+
# streaming session. Default is 1 (2 for high stream classes) when
|
2217
|
+
# creating a stream group or adding a location.
|
2190
2218
|
# @return [Integer]
|
2191
2219
|
#
|
2192
2220
|
# @!attribute [rw] on_demand_capacity
|
@@ -2198,23 +2226,33 @@ module Aws::GameLiftStreams
|
|
2198
2226
|
# @return [Integer]
|
2199
2227
|
#
|
2200
2228
|
# @!attribute [rw] requested_capacity
|
2201
|
-
# This value is the
|
2202
|
-
# for a stream group.
|
2203
|
-
#
|
2204
|
-
#
|
2229
|
+
# This value is the always-on capacity that you most recently
|
2230
|
+
# requested for a stream group. You request capacity separately for
|
2231
|
+
# each location in a stream group. In response to an increase in
|
2232
|
+
# requested capacity, Amazon GameLift Streams attempts to provision
|
2233
|
+
# compute resources to make the stream group's allocated capacity
|
2234
|
+
# meet requested capacity. When always-on capacity is decreased, it
|
2235
|
+
# can take a few minutes to deprovision allocated capacity to match
|
2236
|
+
# the requested capacity.
|
2205
2237
|
# @return [Integer]
|
2206
2238
|
#
|
2207
2239
|
# @!attribute [rw] allocated_capacity
|
2208
|
-
# This value is the
|
2209
|
-
#
|
2210
|
-
#
|
2211
|
-
# respond to stream requests.
|
2240
|
+
# This value is the stream capacity that Amazon GameLift Streams has
|
2241
|
+
# provisioned in a stream group that can respond immediately to stream
|
2242
|
+
# requests. It includes resources that are currently streaming and
|
2243
|
+
# resources that are idle and ready to respond to stream requests. You
|
2244
|
+
# pay for this capacity whether it's in use or not. After making
|
2245
|
+
# changes to capacity, it can take a few minutes for the allocated
|
2246
|
+
# capacity count to reflect the change while compute resources are
|
2247
|
+
# allocated or deallocated. Similarly, when allocated on-demand
|
2248
|
+
# capacity is no longer needed, it can take a few minutes for Amazon
|
2249
|
+
# GameLift Streams to spin down the allocated capacity.
|
2212
2250
|
# @return [Integer]
|
2213
2251
|
#
|
2214
2252
|
# @!attribute [rw] idle_capacity
|
2215
2253
|
# This value is the amount of allocated capacity that is not currently
|
2216
|
-
# streaming. It represents the stream group's
|
2217
|
-
# to new stream requests
|
2254
|
+
# streaming. It represents the stream group's ability to respond
|
2255
|
+
# immediately to new stream requests with near-instant startup time.
|
2218
2256
|
# @return [Integer]
|
2219
2257
|
#
|
2220
2258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/LocationState AWS API Documentation
|
@@ -2558,7 +2596,9 @@ module Aws::GameLiftStreams
|
|
2558
2596
|
# minutes, or if the maximum length of a session specified by
|
2559
2597
|
# `SessionLengthSeconds` in `StartStreamSession` is exceeded.
|
2560
2598
|
#
|
2561
|
-
# * `ERROR`: The stream session failed to activate.
|
2599
|
+
# * `ERROR`: The stream session failed to activate. See `StatusReason`
|
2600
|
+
# (returned by `GetStreamSession` and `StartStreamSession`) for more
|
2601
|
+
# information.
|
2562
2602
|
#
|
2563
2603
|
# * `PENDING_CLIENT_RECONNECTION`: A client has recently disconnected
|
2564
2604
|
# and the stream session is waiting for the client to reconnect. A
|
@@ -2579,6 +2619,23 @@ module Aws::GameLiftStreams
|
|
2579
2619
|
# @!attribute [rw] status_reason
|
2580
2620
|
# A short description of the reason the stream session is in `ERROR`
|
2581
2621
|
# status.
|
2622
|
+
#
|
2623
|
+
# * `internalError`: An internal service error occurred. Start a new
|
2624
|
+
# stream session to continue streaming.
|
2625
|
+
#
|
2626
|
+
# * `invalidSignalRequest`: The WebRTC signal request that was sent is
|
2627
|
+
# not valid. When starting or reconnecting to a stream session, use
|
2628
|
+
# `generateSignalRequest` in the Amazon GameLift Streams Web SDK to
|
2629
|
+
# generate a new signal request.
|
2630
|
+
#
|
2631
|
+
# * `placementTimeout`: Amazon GameLift Streams could not find
|
2632
|
+
# available stream capacity to start a stream session. Increase the
|
2633
|
+
# stream capacity in the stream group or wait until capacity becomes
|
2634
|
+
# available.
|
2635
|
+
#
|
2636
|
+
# * `applicationLogS3DestinationError`: Could not write the
|
2637
|
+
# application log to the Amazon S3 bucket that is configured for the
|
2638
|
+
# streaming application. Make sure the bucket still exists.
|
2582
2639
|
# @return [String]
|
2583
2640
|
#
|
2584
2641
|
# @!attribute [rw] protocol
|
@@ -2846,7 +2903,8 @@ module Aws::GameLiftStreams
|
|
2846
2903
|
# and remove any locations which are in error.
|
2847
2904
|
#
|
2848
2905
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
2849
|
-
# `StatusReason`
|
2906
|
+
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
2907
|
+
# and `UpdateStreamGroup`) for more information.
|
2850
2908
|
#
|
2851
2909
|
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
2852
2910
|
# the stream group.
|
@@ -2921,7 +2979,9 @@ module Aws::GameLiftStreams
|
|
2921
2979
|
# minutes, or if the maximum length of a session specified by
|
2922
2980
|
# `SessionLengthSeconds` in `StartStreamSession` is exceeded.
|
2923
2981
|
#
|
2924
|
-
# * `ERROR`: The stream session failed to activate.
|
2982
|
+
# * `ERROR`: The stream session failed to activate. See `StatusReason`
|
2983
|
+
# (returned by `GetStreamSession` and `StartStreamSession`) for more
|
2984
|
+
# information.
|
2925
2985
|
#
|
2926
2986
|
# * `PENDING_CLIENT_RECONNECTION`: A client has recently disconnected
|
2927
2987
|
# and the stream session is waiting for the client to reconnect. A
|
@@ -3196,8 +3256,8 @@ module Aws::GameLiftStreams
|
|
3196
3256
|
# @return [Types::RuntimeEnvironment]
|
3197
3257
|
#
|
3198
3258
|
# @!attribute [rw] executable_path
|
3199
|
-
# The path and file name of the executable file that launches
|
3200
|
-
# content for streaming.
|
3259
|
+
# The relative path and file name of the executable file that launches
|
3260
|
+
# the content for streaming.
|
3201
3261
|
# @return [String]
|
3202
3262
|
#
|
3203
3263
|
# @!attribute [rw] application_log_paths
|
@@ -3501,7 +3561,8 @@ module Aws::GameLiftStreams
|
|
3501
3561
|
# and remove any locations which are in error.
|
3502
3562
|
#
|
3503
3563
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
3504
|
-
# `StatusReason`
|
3564
|
+
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
3565
|
+
# and `UpdateStreamGroup`) for more information.
|
3505
3566
|
#
|
3506
3567
|
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
3507
3568
|
# the stream group.
|