aws-sdk-gameliftstreams 1.15.0 → 1.16.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 +56 -37
- data/lib/aws-sdk-gameliftstreams/client_api.rb +4 -0
- data/lib/aws-sdk-gameliftstreams/types.rb +69 -9
- data/lib/aws-sdk-gameliftstreams.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +8 -4
- 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: e1a6efc8a3ac6673ea92aebd8e682f6ffbd315047bdb87ea0b2a1447c27691ee
|
|
4
|
+
data.tar.gz: 79adb94407bb5a31ac6e472615266e1a10a06867034ec2929e682411ecad7932
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c66a79572e9c1ff2691feb68b115a3290c6b6cc7ea8770ddfc62787797d9b8c5e660e8831b10dcc40e7f1149e02db6406918cb0cc24f3f6ec1e91fb41eabbce
|
|
7
|
+
data.tar.gz: b6a082b7f82ae05b959d6f2c694445829193d0592381402b47b358c2aa94bfa376dc06ebe66f7238dc8af26e4494a6712e2aac93d397cbf14fec6cbfdb5fb169
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.16.0
|
|
@@ -476,9 +476,10 @@ module Aws::GameLiftStreams
|
|
|
476
476
|
|
|
477
477
|
# @!group API Operations
|
|
478
478
|
|
|
479
|
-
# Add locations that can host stream sessions.
|
|
480
|
-
#
|
|
481
|
-
#
|
|
479
|
+
# Add locations that can host stream sessions. To add a location, the
|
|
480
|
+
# stream group must be in `ACTIVE` status. You configure locations and
|
|
481
|
+
# their corresponding capacity for each stream group. Creating a stream
|
|
482
|
+
# group in a location that's nearest to your end users can help
|
|
482
483
|
# minimize latency and improve quality.
|
|
483
484
|
#
|
|
484
485
|
# This operation provisions stream capacity at the specified locations.
|
|
@@ -803,16 +804,14 @@ module Aws::GameLiftStreams
|
|
|
803
804
|
req.send_request(options)
|
|
804
805
|
end
|
|
805
806
|
|
|
806
|
-
#
|
|
807
|
-
#
|
|
808
|
-
#
|
|
809
|
-
#
|
|
810
|
-
#
|
|
811
|
-
#
|
|
812
|
-
#
|
|
813
|
-
#
|
|
814
|
-
# concurrent streams you want to support at one time, and in what
|
|
815
|
-
# locations.
|
|
807
|
+
# Stream groups manage how Amazon GameLift Streams allocates resources
|
|
808
|
+
# and handles concurrent streams, allowing you to effectively manage
|
|
809
|
+
# capacity and costs. Within a stream group, you specify an application
|
|
810
|
+
# to stream, streaming locations and their capacity, and the stream
|
|
811
|
+
# class you want to use when streaming applications to your end-users. A
|
|
812
|
+
# stream class defines the hardware configuration of the compute
|
|
813
|
+
# resources that Amazon GameLift Streams will use when streaming, such
|
|
814
|
+
# as the CPU, GPU, and memory.
|
|
816
815
|
#
|
|
817
816
|
# Stream capacity represents the number of concurrent streams that can
|
|
818
817
|
# be active at a time. You set stream capacity per location, per stream
|
|
@@ -837,13 +836,22 @@ module Aws::GameLiftStreams
|
|
|
837
836
|
# To adjust the capacity of any `ACTIVE` stream group, call
|
|
838
837
|
# [UpdateStreamGroup][1].
|
|
839
838
|
#
|
|
840
|
-
# If the request is successful, Amazon GameLift
|
|
841
|
-
#
|
|
842
|
-
#
|
|
843
|
-
#
|
|
844
|
-
#
|
|
839
|
+
# If the `CreateStreamGroup` request is successful, Amazon GameLift
|
|
840
|
+
# Streams assigns a unique ID to the stream group resource and sets the
|
|
841
|
+
# status to `ACTIVATING`. It can take a few minutes for Amazon GameLift
|
|
842
|
+
# Streams to finish creating the stream group while it searches for
|
|
843
|
+
# unallocated compute resources and provisions them. When complete, the
|
|
844
|
+
# stream group status will be `ACTIVE` and you can start stream sessions
|
|
845
|
+
# by using [StartStreamSession][2]. To check the stream group's status,
|
|
845
846
|
# call [GetStreamGroup][3].
|
|
846
847
|
#
|
|
848
|
+
# Stream groups should be recreated every 3-4 weeks to pick up important
|
|
849
|
+
# service updates and fixes. Stream groups that are older than 180 days
|
|
850
|
+
# can no longer be updated with new application associations. Stream
|
|
851
|
+
# groups expire when they are 365 days old, at which point they can no
|
|
852
|
+
# longer stream sessions. The exact expiration date is indicated by the
|
|
853
|
+
# date value in the `ExpiresAt` field.
|
|
854
|
+
#
|
|
847
855
|
#
|
|
848
856
|
#
|
|
849
857
|
# [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_UpdateStreamGroup.html
|
|
@@ -998,6 +1006,7 @@ module Aws::GameLiftStreams
|
|
|
998
1006
|
# * {Types::CreateStreamGroupOutput#status_reason #status_reason} => String
|
|
999
1007
|
# * {Types::CreateStreamGroupOutput#last_updated_at #last_updated_at} => Time
|
|
1000
1008
|
# * {Types::CreateStreamGroupOutput#created_at #created_at} => Time
|
|
1009
|
+
# * {Types::CreateStreamGroupOutput#expires_at #expires_at} => Time
|
|
1001
1010
|
# * {Types::CreateStreamGroupOutput#associated_applications #associated_applications} => Array<String>
|
|
1002
1011
|
#
|
|
1003
1012
|
# @example Request syntax with placeholder values
|
|
@@ -1035,10 +1044,11 @@ module Aws::GameLiftStreams
|
|
|
1035
1044
|
# resp.location_states[0].idle_capacity #=> Integer
|
|
1036
1045
|
# resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
|
|
1037
1046
|
# resp.id #=> String
|
|
1038
|
-
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
|
|
1047
|
+
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
|
|
1039
1048
|
# resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
|
|
1040
1049
|
# resp.last_updated_at #=> Time
|
|
1041
1050
|
# resp.created_at #=> Time
|
|
1051
|
+
# resp.expires_at #=> Time
|
|
1042
1052
|
# resp.associated_applications #=> Array
|
|
1043
1053
|
# resp.associated_applications[0] #=> String
|
|
1044
1054
|
#
|
|
@@ -1273,7 +1283,8 @@ module Aws::GameLiftStreams
|
|
|
1273
1283
|
# end-user's stream. Amazon GameLift Streams will not initiate new
|
|
1274
1284
|
# streams in the stream group using the disassociated application. The
|
|
1275
1285
|
# disassociate action does not affect the stream capacity of a stream
|
|
1276
|
-
# group.
|
|
1286
|
+
# group. To disassociate an application, the stream group must be in
|
|
1287
|
+
# `ACTIVE` status.
|
|
1277
1288
|
#
|
|
1278
1289
|
# If you disassociate the default application, Amazon GameLift Streams
|
|
1279
1290
|
# will automatically choose a new default application from the remaining
|
|
@@ -1531,6 +1542,7 @@ module Aws::GameLiftStreams
|
|
|
1531
1542
|
# * {Types::GetStreamGroupOutput#status_reason #status_reason} => String
|
|
1532
1543
|
# * {Types::GetStreamGroupOutput#last_updated_at #last_updated_at} => Time
|
|
1533
1544
|
# * {Types::GetStreamGroupOutput#created_at #created_at} => Time
|
|
1545
|
+
# * {Types::GetStreamGroupOutput#expires_at #expires_at} => Time
|
|
1534
1546
|
# * {Types::GetStreamGroupOutput#associated_applications #associated_applications} => Array<String>
|
|
1535
1547
|
#
|
|
1536
1548
|
# @example Request syntax with placeholder values
|
|
@@ -1555,10 +1567,11 @@ module Aws::GameLiftStreams
|
|
|
1555
1567
|
# resp.location_states[0].idle_capacity #=> Integer
|
|
1556
1568
|
# resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
|
|
1557
1569
|
# resp.id #=> String
|
|
1558
|
-
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
|
|
1570
|
+
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
|
|
1559
1571
|
# resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
|
|
1560
1572
|
# resp.last_updated_at #=> Time
|
|
1561
1573
|
# resp.created_at #=> Time
|
|
1574
|
+
# resp.expires_at #=> Time
|
|
1562
1575
|
# resp.associated_applications #=> Array
|
|
1563
1576
|
# resp.associated_applications[0] #=> String
|
|
1564
1577
|
#
|
|
@@ -1764,9 +1777,10 @@ module Aws::GameLiftStreams
|
|
|
1764
1777
|
# resp.items[0].default_application.id #=> String
|
|
1765
1778
|
# resp.items[0].default_application.arn #=> String
|
|
1766
1779
|
# resp.items[0].stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
|
|
1767
|
-
# resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
|
|
1780
|
+
# resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
|
|
1768
1781
|
# resp.items[0].created_at #=> Time
|
|
1769
1782
|
# resp.items[0].last_updated_at #=> Time
|
|
1783
|
+
# resp.items[0].expires_at #=> Time
|
|
1770
1784
|
# resp.next_token #=> String
|
|
1771
1785
|
#
|
|
1772
1786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamGroups AWS API Documentation
|
|
@@ -1994,16 +2008,18 @@ module Aws::GameLiftStreams
|
|
|
1994
2008
|
req.send_request(options)
|
|
1995
2009
|
end
|
|
1996
2010
|
|
|
1997
|
-
# Removes a set of remote locations from this stream group.
|
|
1998
|
-
#
|
|
1999
|
-
# location
|
|
2000
|
-
#
|
|
2011
|
+
# Removes a set of remote locations from this stream group. To remove a
|
|
2012
|
+
# location, the stream group must be in `ACTIVE` status. When you remove
|
|
2013
|
+
# a location, Amazon GameLift Streams releases allocated compute
|
|
2014
|
+
# resources in that location. Stream sessions can no longer start from
|
|
2015
|
+
# removed locations in a stream group. Amazon GameLift Streams also
|
|
2001
2016
|
# deletes the content files of all associated applications that were in
|
|
2002
|
-
# Amazon GameLift Streams's internal S3 bucket at this location.
|
|
2017
|
+
# Amazon GameLift Streams's internal Amazon S3 bucket at this location.
|
|
2003
2018
|
#
|
|
2004
|
-
# You cannot remove the
|
|
2005
|
-
# group, known as the primary location.
|
|
2006
|
-
# capacity to zero
|
|
2019
|
+
# You cannot remove the Amazon Web Services Region location where you
|
|
2020
|
+
# initially created this stream group, known as the primary location.
|
|
2021
|
+
# However, you can set the stream capacity to zero to avoid incurring
|
|
2022
|
+
# costs for allocated compute resources in that location.
|
|
2007
2023
|
#
|
|
2008
2024
|
# @option params [required, String] :identifier
|
|
2009
2025
|
# A stream group to remove the specified locations from.
|
|
@@ -2056,7 +2072,7 @@ module Aws::GameLiftStreams
|
|
|
2056
2072
|
#
|
|
2057
2073
|
# 1. Prerequisites:
|
|
2058
2074
|
#
|
|
2059
|
-
# * You must have a stream group in `ACTIVE`
|
|
2075
|
+
# * You must have a stream group in `ACTIVE` status
|
|
2060
2076
|
#
|
|
2061
2077
|
# * You must have idle or on-demand capacity in a stream group in
|
|
2062
2078
|
# the location you want to stream from
|
|
@@ -2583,9 +2599,10 @@ module Aws::GameLiftStreams
|
|
|
2583
2599
|
end
|
|
2584
2600
|
|
|
2585
2601
|
# Updates the configuration settings for an Amazon GameLift Streams
|
|
2586
|
-
# stream group resource.
|
|
2587
|
-
#
|
|
2588
|
-
#
|
|
2602
|
+
# stream group resource. To update a stream group, it must be in
|
|
2603
|
+
# `ACTIVE` status. You can change the description, the set of locations,
|
|
2604
|
+
# and the requested capacity of a stream group per location. If you want
|
|
2605
|
+
# to change the stream class, create a new stream group.
|
|
2589
2606
|
#
|
|
2590
2607
|
# Stream capacity represents the number of concurrent streams that can
|
|
2591
2608
|
# be active at a time. You set stream capacity per location, per stream
|
|
@@ -2610,7 +2627,7 @@ module Aws::GameLiftStreams
|
|
|
2610
2627
|
# To update a stream group, specify the stream group's Amazon Resource
|
|
2611
2628
|
# Name (ARN) and provide the new values. If the request is successful,
|
|
2612
2629
|
# Amazon GameLift Streams returns the complete updated metadata for the
|
|
2613
|
-
# stream group.
|
|
2630
|
+
# stream group. Expired stream groups cannot be updated.
|
|
2614
2631
|
#
|
|
2615
2632
|
# @option params [required, String] :identifier
|
|
2616
2633
|
# An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
|
|
@@ -2666,6 +2683,7 @@ module Aws::GameLiftStreams
|
|
|
2666
2683
|
# * {Types::UpdateStreamGroupOutput#status_reason #status_reason} => String
|
|
2667
2684
|
# * {Types::UpdateStreamGroupOutput#last_updated_at #last_updated_at} => Time
|
|
2668
2685
|
# * {Types::UpdateStreamGroupOutput#created_at #created_at} => Time
|
|
2686
|
+
# * {Types::UpdateStreamGroupOutput#expires_at #expires_at} => Time
|
|
2669
2687
|
# * {Types::UpdateStreamGroupOutput#associated_applications #associated_applications} => Array<String>
|
|
2670
2688
|
#
|
|
2671
2689
|
# @example Request syntax with placeholder values
|
|
@@ -2699,10 +2717,11 @@ module Aws::GameLiftStreams
|
|
|
2699
2717
|
# resp.location_states[0].idle_capacity #=> Integer
|
|
2700
2718
|
# resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
|
|
2701
2719
|
# resp.id #=> String
|
|
2702
|
-
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
|
|
2720
|
+
# resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
|
|
2703
2721
|
# resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
|
|
2704
2722
|
# resp.last_updated_at #=> Time
|
|
2705
2723
|
# resp.created_at #=> Time
|
|
2724
|
+
# resp.expires_at #=> Time
|
|
2706
2725
|
# resp.associated_applications #=> Array
|
|
2707
2726
|
# resp.associated_applications[0] #=> String
|
|
2708
2727
|
#
|
|
@@ -2733,7 +2752,7 @@ module Aws::GameLiftStreams
|
|
|
2733
2752
|
tracer: tracer
|
|
2734
2753
|
)
|
|
2735
2754
|
context[:gem_name] = 'aws-sdk-gameliftstreams'
|
|
2736
|
-
context[:gem_version] = '1.
|
|
2755
|
+
context[:gem_version] = '1.16.0'
|
|
2737
2756
|
Seahorse::Client::Request.new(handlers, context)
|
|
2738
2757
|
end
|
|
2739
2758
|
|
|
@@ -212,6 +212,7 @@ module Aws::GameLiftStreams
|
|
|
212
212
|
CreateStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
|
|
213
213
|
CreateStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
|
|
214
214
|
CreateStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
215
|
+
CreateStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
|
|
215
216
|
CreateStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
|
|
216
217
|
CreateStreamGroupOutput.struct_class = Types::CreateStreamGroupOutput
|
|
217
218
|
|
|
@@ -293,6 +294,7 @@ module Aws::GameLiftStreams
|
|
|
293
294
|
GetStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
|
|
294
295
|
GetStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
|
|
295
296
|
GetStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
297
|
+
GetStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
|
|
296
298
|
GetStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
|
|
297
299
|
GetStreamGroupOutput.struct_class = Types::GetStreamGroupOutput
|
|
298
300
|
|
|
@@ -456,6 +458,7 @@ module Aws::GameLiftStreams
|
|
|
456
458
|
StreamGroupSummary.add_member(:status, Shapes::ShapeRef.new(shape: StreamGroupStatus, location_name: "Status"))
|
|
457
459
|
StreamGroupSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
458
460
|
StreamGroupSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
|
|
461
|
+
StreamGroupSummary.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
|
|
459
462
|
StreamGroupSummary.struct_class = Types::StreamGroupSummary
|
|
460
463
|
|
|
461
464
|
StreamGroupSummaryList.member = Shapes::ShapeRef.new(shape: StreamGroupSummary)
|
|
@@ -535,6 +538,7 @@ module Aws::GameLiftStreams
|
|
|
535
538
|
UpdateStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
|
|
536
539
|
UpdateStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
|
|
537
540
|
UpdateStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
541
|
+
UpdateStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
|
|
538
542
|
UpdateStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
|
|
539
543
|
UpdateStreamGroupOutput.struct_class = Types::UpdateStreamGroupOutput
|
|
540
544
|
|
|
@@ -839,12 +839,17 @@ module Aws::GameLiftStreams
|
|
|
839
839
|
# are in an error state. Verify the details of individual locations
|
|
840
840
|
# and remove any locations which are in error.
|
|
841
841
|
#
|
|
842
|
+
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
|
843
|
+
# the stream group.
|
|
844
|
+
#
|
|
842
845
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
|
843
846
|
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
|
844
847
|
# and `UpdateStreamGroup`) for more information.
|
|
845
848
|
#
|
|
846
|
-
# * `
|
|
847
|
-
#
|
|
849
|
+
# * `EXPIRED`: The stream group is expired and can no longer host
|
|
850
|
+
# streams. This typically occurs when a stream group is 365 days
|
|
851
|
+
# old, as indicated by the value of `ExpiresAt`. Create a new stream
|
|
852
|
+
# group to resume streaming capabilities.
|
|
848
853
|
#
|
|
849
854
|
# * `UPDATING_LOCATIONS`: One or more locations in the stream group
|
|
850
855
|
# are in the process of updating (either activating or deleting).
|
|
@@ -876,6 +881,15 @@ module Aws::GameLiftStreams
|
|
|
876
881
|
# `2022-12-27T22:29:40+00:00` (UTC).
|
|
877
882
|
# @return [Time]
|
|
878
883
|
#
|
|
884
|
+
# @!attribute [rw] expires_at
|
|
885
|
+
# The time at which this stream group expires. Timestamps are
|
|
886
|
+
# expressed using in ISO8601 format, such as:
|
|
887
|
+
# `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
|
|
888
|
+
# longer be able to update this stream group or use it to start stream
|
|
889
|
+
# sessions. Only Get and Delete operations will work on an expired
|
|
890
|
+
# stream group.
|
|
891
|
+
# @return [Time]
|
|
892
|
+
#
|
|
879
893
|
# @!attribute [rw] associated_applications
|
|
880
894
|
# A set of applications that this stream group is associated to. You
|
|
881
895
|
# can stream any of these applications by using this stream group.
|
|
@@ -902,6 +916,7 @@ module Aws::GameLiftStreams
|
|
|
902
916
|
:status_reason,
|
|
903
917
|
:last_updated_at,
|
|
904
918
|
:created_at,
|
|
919
|
+
:expires_at,
|
|
905
920
|
:associated_applications)
|
|
906
921
|
SENSITIVE = []
|
|
907
922
|
include Aws::Structure
|
|
@@ -1529,12 +1544,17 @@ module Aws::GameLiftStreams
|
|
|
1529
1544
|
# are in an error state. Verify the details of individual locations
|
|
1530
1545
|
# and remove any locations which are in error.
|
|
1531
1546
|
#
|
|
1547
|
+
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
|
1548
|
+
# the stream group.
|
|
1549
|
+
#
|
|
1532
1550
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
|
1533
1551
|
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
|
1534
1552
|
# and `UpdateStreamGroup`) for more information.
|
|
1535
1553
|
#
|
|
1536
|
-
# * `
|
|
1537
|
-
#
|
|
1554
|
+
# * `EXPIRED`: The stream group is expired and can no longer host
|
|
1555
|
+
# streams. This typically occurs when a stream group is 365 days
|
|
1556
|
+
# old, as indicated by the value of `ExpiresAt`. Create a new stream
|
|
1557
|
+
# group to resume streaming capabilities.
|
|
1538
1558
|
#
|
|
1539
1559
|
# * `UPDATING_LOCATIONS`: One or more locations in the stream group
|
|
1540
1560
|
# are in the process of updating (either activating or deleting).
|
|
@@ -1566,6 +1586,15 @@ module Aws::GameLiftStreams
|
|
|
1566
1586
|
# `2022-12-27T22:29:40+00:00` (UTC).
|
|
1567
1587
|
# @return [Time]
|
|
1568
1588
|
#
|
|
1589
|
+
# @!attribute [rw] expires_at
|
|
1590
|
+
# The time at which this stream group expires. Timestamps are
|
|
1591
|
+
# expressed using in ISO8601 format, such as:
|
|
1592
|
+
# `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
|
|
1593
|
+
# longer be able to update this stream group or use it to start stream
|
|
1594
|
+
# sessions. Only Get and Delete operations will work on an expired
|
|
1595
|
+
# stream group.
|
|
1596
|
+
# @return [Time]
|
|
1597
|
+
#
|
|
1569
1598
|
# @!attribute [rw] associated_applications
|
|
1570
1599
|
# A set of applications that this stream group is associated to. You
|
|
1571
1600
|
# can stream any of these applications by using this stream group.
|
|
@@ -1592,6 +1621,7 @@ module Aws::GameLiftStreams
|
|
|
1592
1621
|
:status_reason,
|
|
1593
1622
|
:last_updated_at,
|
|
1594
1623
|
:created_at,
|
|
1624
|
+
:expires_at,
|
|
1595
1625
|
:associated_applications)
|
|
1596
1626
|
SENSITIVE = []
|
|
1597
1627
|
include Aws::Structure
|
|
@@ -2966,12 +2996,17 @@ module Aws::GameLiftStreams
|
|
|
2966
2996
|
# are in an error state. Verify the details of individual locations
|
|
2967
2997
|
# and remove any locations which are in error.
|
|
2968
2998
|
#
|
|
2999
|
+
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
|
3000
|
+
# the stream group.
|
|
3001
|
+
#
|
|
2969
3002
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
|
2970
3003
|
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
|
2971
3004
|
# and `UpdateStreamGroup`) for more information.
|
|
2972
3005
|
#
|
|
2973
|
-
# * `
|
|
2974
|
-
#
|
|
3006
|
+
# * `EXPIRED`: The stream group is expired and can no longer host
|
|
3007
|
+
# streams. This typically occurs when a stream group is 365 days
|
|
3008
|
+
# old, as indicated by the value of `ExpiresAt`. Create a new stream
|
|
3009
|
+
# group to resume streaming capabilities.
|
|
2975
3010
|
#
|
|
2976
3011
|
# * `UPDATING_LOCATIONS`: One or more locations in the stream group
|
|
2977
3012
|
# are in the process of updating (either activating or deleting).
|
|
@@ -2989,6 +3024,15 @@ module Aws::GameLiftStreams
|
|
|
2989
3024
|
# `2022-12-27T22:29:40+00:00` (UTC).
|
|
2990
3025
|
# @return [Time]
|
|
2991
3026
|
#
|
|
3027
|
+
# @!attribute [rw] expires_at
|
|
3028
|
+
# The time at which this stream group expires. Timestamps are
|
|
3029
|
+
# expressed using in ISO8601 format, such as:
|
|
3030
|
+
# `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
|
|
3031
|
+
# longer be able to update this stream group or use it to start stream
|
|
3032
|
+
# sessions. Only Get and Delete operations will work on an expired
|
|
3033
|
+
# stream group.
|
|
3034
|
+
# @return [Time]
|
|
3035
|
+
#
|
|
2992
3036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StreamGroupSummary AWS API Documentation
|
|
2993
3037
|
#
|
|
2994
3038
|
class StreamGroupSummary < Struct.new(
|
|
@@ -2999,7 +3043,8 @@ module Aws::GameLiftStreams
|
|
|
2999
3043
|
:stream_class,
|
|
3000
3044
|
:status,
|
|
3001
3045
|
:created_at,
|
|
3002
|
-
:last_updated_at
|
|
3046
|
+
:last_updated_at,
|
|
3047
|
+
:expires_at)
|
|
3003
3048
|
SENSITIVE = []
|
|
3004
3049
|
include Aws::Structure
|
|
3005
3050
|
end
|
|
@@ -3624,12 +3669,17 @@ module Aws::GameLiftStreams
|
|
|
3624
3669
|
# are in an error state. Verify the details of individual locations
|
|
3625
3670
|
# and remove any locations which are in error.
|
|
3626
3671
|
#
|
|
3672
|
+
# * `DELETING`: Amazon GameLift Streams is in the process of deleting
|
|
3673
|
+
# the stream group.
|
|
3674
|
+
#
|
|
3627
3675
|
# * `ERROR`: An error occurred when the stream group deployed. See
|
|
3628
3676
|
# `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
|
|
3629
3677
|
# and `UpdateStreamGroup`) for more information.
|
|
3630
3678
|
#
|
|
3631
|
-
# * `
|
|
3632
|
-
#
|
|
3679
|
+
# * `EXPIRED`: The stream group is expired and can no longer host
|
|
3680
|
+
# streams. This typically occurs when a stream group is 365 days
|
|
3681
|
+
# old, as indicated by the value of `ExpiresAt`. Create a new stream
|
|
3682
|
+
# group to resume streaming capabilities.
|
|
3633
3683
|
#
|
|
3634
3684
|
# * `UPDATING_LOCATIONS`: One or more locations in the stream group
|
|
3635
3685
|
# are in the process of updating (either activating or deleting).
|
|
@@ -3661,6 +3711,15 @@ module Aws::GameLiftStreams
|
|
|
3661
3711
|
# `2022-12-27T22:29:40+00:00` (UTC).
|
|
3662
3712
|
# @return [Time]
|
|
3663
3713
|
#
|
|
3714
|
+
# @!attribute [rw] expires_at
|
|
3715
|
+
# The time at which this stream group expires. Timestamps are
|
|
3716
|
+
# expressed using in ISO8601 format, such as:
|
|
3717
|
+
# `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
|
|
3718
|
+
# longer be able to update this stream group or use it to start stream
|
|
3719
|
+
# sessions. Only Get and Delete operations will work on an expired
|
|
3720
|
+
# stream group.
|
|
3721
|
+
# @return [Time]
|
|
3722
|
+
#
|
|
3664
3723
|
# @!attribute [rw] associated_applications
|
|
3665
3724
|
# A set of applications that this stream group is associated with. You
|
|
3666
3725
|
# can stream any of these applications with the stream group.
|
|
@@ -3687,6 +3746,7 @@ module Aws::GameLiftStreams
|
|
|
3687
3746
|
:status_reason,
|
|
3688
3747
|
:last_updated_at,
|
|
3689
3748
|
:created_at,
|
|
3749
|
+
:expires_at,
|
|
3690
3750
|
:associated_applications)
|
|
3691
3751
|
SENSITIVE = []
|
|
3692
3752
|
include Aws::Structure
|
data/sig/client.rbs
CHANGED
|
@@ -149,10 +149,11 @@ module Aws
|
|
|
149
149
|
def location_states: () -> ::Array[Types::LocationState]
|
|
150
150
|
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
151
151
|
def id: () -> ::String
|
|
152
|
-
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
152
|
+
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
153
153
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
154
154
|
def last_updated_at: () -> ::Time
|
|
155
155
|
def created_at: () -> ::Time
|
|
156
|
+
def expires_at: () -> ::Time
|
|
156
157
|
def associated_applications: () -> ::Array[::String]
|
|
157
158
|
end
|
|
158
159
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#create_stream_group-instance_method
|
|
@@ -251,10 +252,11 @@ module Aws
|
|
|
251
252
|
def location_states: () -> ::Array[Types::LocationState]
|
|
252
253
|
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
253
254
|
def id: () -> ::String
|
|
254
|
-
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
255
|
+
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
255
256
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
256
257
|
def last_updated_at: () -> ::Time
|
|
257
258
|
def created_at: () -> ::Time
|
|
259
|
+
def expires_at: () -> ::Time
|
|
258
260
|
def associated_applications: () -> ::Array[::String]
|
|
259
261
|
end
|
|
260
262
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#get_stream_group-instance_method
|
|
@@ -464,10 +466,11 @@ module Aws
|
|
|
464
466
|
def location_states: () -> ::Array[Types::LocationState]
|
|
465
467
|
def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
466
468
|
def id: () -> ::String
|
|
467
|
-
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
469
|
+
def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
468
470
|
def status_reason: () -> ("internalError" | "noAvailableInstances")
|
|
469
471
|
def last_updated_at: () -> ::Time
|
|
470
472
|
def created_at: () -> ::Time
|
|
473
|
+
def expires_at: () -> ::Time
|
|
471
474
|
def associated_applications: () -> ::Array[::String]
|
|
472
475
|
end
|
|
473
476
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#update_stream_group-instance_method
|
data/sig/types.rbs
CHANGED
|
@@ -100,10 +100,11 @@ module Aws::GameLiftStreams
|
|
|
100
100
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
101
101
|
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
102
102
|
attr_accessor id: ::String
|
|
103
|
-
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
103
|
+
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
104
104
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
|
105
105
|
attr_accessor last_updated_at: ::Time
|
|
106
106
|
attr_accessor created_at: ::Time
|
|
107
|
+
attr_accessor expires_at: ::Time
|
|
107
108
|
attr_accessor associated_applications: ::Array[::String]
|
|
108
109
|
SENSITIVE: []
|
|
109
110
|
end
|
|
@@ -201,10 +202,11 @@ module Aws::GameLiftStreams
|
|
|
201
202
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
202
203
|
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
203
204
|
attr_accessor id: ::String
|
|
204
|
-
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
205
|
+
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
205
206
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
|
206
207
|
attr_accessor last_updated_at: ::Time
|
|
207
208
|
attr_accessor created_at: ::Time
|
|
209
|
+
attr_accessor expires_at: ::Time
|
|
208
210
|
attr_accessor associated_applications: ::Array[::String]
|
|
209
211
|
SENSITIVE: []
|
|
210
212
|
end
|
|
@@ -399,9 +401,10 @@ module Aws::GameLiftStreams
|
|
|
399
401
|
attr_accessor description: ::String
|
|
400
402
|
attr_accessor default_application: Types::DefaultApplication
|
|
401
403
|
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
402
|
-
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
404
|
+
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
403
405
|
attr_accessor created_at: ::Time
|
|
404
406
|
attr_accessor last_updated_at: ::Time
|
|
407
|
+
attr_accessor expires_at: ::Time
|
|
405
408
|
SENSITIVE: []
|
|
406
409
|
end
|
|
407
410
|
|
|
@@ -488,10 +491,11 @@ module Aws::GameLiftStreams
|
|
|
488
491
|
attr_accessor location_states: ::Array[Types::LocationState]
|
|
489
492
|
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
|
490
493
|
attr_accessor id: ::String
|
|
491
|
-
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
|
494
|
+
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
|
|
492
495
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
|
493
496
|
attr_accessor last_updated_at: ::Time
|
|
494
497
|
attr_accessor created_at: ::Time
|
|
498
|
+
attr_accessor expires_at: ::Time
|
|
495
499
|
attr_accessor associated_applications: ::Array[::String]
|
|
496
500
|
SENSITIVE: []
|
|
497
501
|
end
|