aws-sdk-gameliftstreams 1.8.0 → 1.9.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 +479 -477
- data/lib/aws-sdk-gameliftstreams/client_api.rb +121 -122
- data/lib/aws-sdk-gameliftstreams/types.rb +1214 -1204
- data/lib/aws-sdk-gameliftstreams.rb +1 -1
- data/sig/client.rbs +114 -114
- data/sig/types.rbs +121 -121
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -27,24 +27,24 @@ module Aws::GameLiftStreams
|
|
27
27
|
|
28
28
|
class ApplicationSummary
|
29
29
|
attr_accessor arn: ::String
|
30
|
-
attr_accessor created_at: ::Time
|
31
|
-
attr_accessor description: ::String
|
32
30
|
attr_accessor id: ::String
|
31
|
+
attr_accessor description: ::String
|
32
|
+
attr_accessor status: ("INITIALIZED" | "PROCESSING" | "READY" | "DELETING" | "ERROR")
|
33
|
+
attr_accessor created_at: ::Time
|
33
34
|
attr_accessor last_updated_at: ::Time
|
34
35
|
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
35
|
-
attr_accessor status: ("INITIALIZED" | "PROCESSING" | "READY" | "DELETING" | "ERROR")
|
36
36
|
SENSITIVE: []
|
37
37
|
end
|
38
38
|
|
39
39
|
class AssociateApplicationsInput
|
40
|
-
attr_accessor application_identifiers: ::Array[::String]
|
41
40
|
attr_accessor identifier: ::String
|
41
|
+
attr_accessor application_identifiers: ::Array[::String]
|
42
42
|
SENSITIVE: []
|
43
43
|
end
|
44
44
|
|
45
45
|
class AssociateApplicationsOutput
|
46
|
-
attr_accessor application_arns: ::Array[::String]
|
47
46
|
attr_accessor arn: ::String
|
47
|
+
attr_accessor application_arns: ::Array[::String]
|
48
48
|
SENSITIVE: []
|
49
49
|
end
|
50
50
|
|
@@ -54,65 +54,65 @@ module Aws::GameLiftStreams
|
|
54
54
|
end
|
55
55
|
|
56
56
|
class CreateApplicationInput
|
57
|
-
attr_accessor application_log_output_uri: ::String
|
58
|
-
attr_accessor application_log_paths: ::Array[::String]
|
59
|
-
attr_accessor application_source_uri: ::String
|
60
|
-
attr_accessor client_token: ::String
|
61
57
|
attr_accessor description: ::String
|
62
|
-
attr_accessor executable_path: ::String
|
63
58
|
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
59
|
+
attr_accessor executable_path: ::String
|
60
|
+
attr_accessor application_source_uri: ::String
|
61
|
+
attr_accessor application_log_paths: ::Array[::String]
|
62
|
+
attr_accessor application_log_output_uri: ::String
|
64
63
|
attr_accessor tags: ::Hash[::String, ::String]
|
64
|
+
attr_accessor client_token: ::String
|
65
65
|
SENSITIVE: []
|
66
66
|
end
|
67
67
|
|
68
68
|
class CreateApplicationOutput
|
69
|
-
attr_accessor application_log_output_uri: ::String
|
70
|
-
attr_accessor application_log_paths: ::Array[::String]
|
71
|
-
attr_accessor application_source_uri: ::String
|
72
69
|
attr_accessor arn: ::String
|
73
|
-
attr_accessor associated_stream_groups: ::Array[::String]
|
74
|
-
attr_accessor created_at: ::Time
|
75
70
|
attr_accessor description: ::String
|
71
|
+
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
76
72
|
attr_accessor executable_path: ::String
|
73
|
+
attr_accessor application_log_paths: ::Array[::String]
|
74
|
+
attr_accessor application_log_output_uri: ::String
|
75
|
+
attr_accessor application_source_uri: ::String
|
77
76
|
attr_accessor id: ::String
|
78
|
-
attr_accessor last_updated_at: ::Time
|
79
|
-
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
80
|
-
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
81
77
|
attr_accessor status: ("INITIALIZED" | "PROCESSING" | "READY" | "DELETING" | "ERROR")
|
82
78
|
attr_accessor status_reason: ("internalError" | "accessDenied")
|
79
|
+
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
80
|
+
attr_accessor created_at: ::Time
|
81
|
+
attr_accessor last_updated_at: ::Time
|
82
|
+
attr_accessor associated_stream_groups: ::Array[::String]
|
83
83
|
SENSITIVE: []
|
84
84
|
end
|
85
85
|
|
86
86
|
class CreateStreamGroupInput
|
87
|
-
attr_accessor client_token: ::String
|
88
|
-
attr_accessor default_application_identifier: ::String
|
89
87
|
attr_accessor description: ::String
|
90
|
-
attr_accessor location_configurations: ::Array[Types::LocationConfiguration]
|
91
88
|
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
89
|
+
attr_accessor default_application_identifier: ::String
|
90
|
+
attr_accessor location_configurations: ::Array[Types::LocationConfiguration]
|
92
91
|
attr_accessor tags: ::Hash[::String, ::String]
|
92
|
+
attr_accessor client_token: ::String
|
93
93
|
SENSITIVE: []
|
94
94
|
end
|
95
95
|
|
96
96
|
class CreateStreamGroupOutput
|
97
97
|
attr_accessor arn: ::String
|
98
|
-
attr_accessor associated_applications: ::Array[::String]
|
99
|
-
attr_accessor created_at: ::Time
|
100
|
-
attr_accessor default_application: Types::DefaultApplication
|
101
98
|
attr_accessor description: ::String
|
102
|
-
attr_accessor
|
103
|
-
attr_accessor last_updated_at: ::Time
|
99
|
+
attr_accessor default_application: Types::DefaultApplication
|
104
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")
|
102
|
+
attr_accessor id: ::String
|
105
103
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
106
104
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
107
|
-
attr_accessor
|
105
|
+
attr_accessor last_updated_at: ::Time
|
106
|
+
attr_accessor created_at: ::Time
|
107
|
+
attr_accessor associated_applications: ::Array[::String]
|
108
108
|
SENSITIVE: []
|
109
109
|
end
|
110
110
|
|
111
111
|
class CreateStreamSessionConnectionInput
|
112
112
|
attr_accessor client_token: ::String
|
113
113
|
attr_accessor identifier: ::String
|
114
|
-
attr_accessor signal_request: ::String
|
115
114
|
attr_accessor stream_session_identifier: ::String
|
115
|
+
attr_accessor signal_request: ::String
|
116
116
|
SENSITIVE: [:signal_request]
|
117
117
|
end
|
118
118
|
|
@@ -122,8 +122,8 @@ module Aws::GameLiftStreams
|
|
122
122
|
end
|
123
123
|
|
124
124
|
class DefaultApplication
|
125
|
-
attr_accessor arn: ::String
|
126
125
|
attr_accessor id: ::String
|
126
|
+
attr_accessor arn: ::String
|
127
127
|
SENSITIVE: []
|
128
128
|
end
|
129
129
|
|
@@ -138,28 +138,28 @@ module Aws::GameLiftStreams
|
|
138
138
|
end
|
139
139
|
|
140
140
|
class DisassociateApplicationsInput
|
141
|
-
attr_accessor application_identifiers: ::Array[::String]
|
142
141
|
attr_accessor identifier: ::String
|
142
|
+
attr_accessor application_identifiers: ::Array[::String]
|
143
143
|
SENSITIVE: []
|
144
144
|
end
|
145
145
|
|
146
146
|
class DisassociateApplicationsOutput
|
147
|
-
attr_accessor application_arns: ::Array[::String]
|
148
147
|
attr_accessor arn: ::String
|
148
|
+
attr_accessor application_arns: ::Array[::String]
|
149
149
|
SENSITIVE: []
|
150
150
|
end
|
151
151
|
|
152
152
|
class ExportFilesMetadata
|
153
|
-
attr_accessor output_uri: ::String
|
154
153
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "PENDING")
|
155
154
|
attr_accessor status_reason: ::String
|
155
|
+
attr_accessor output_uri: ::String
|
156
156
|
SENSITIVE: []
|
157
157
|
end
|
158
158
|
|
159
159
|
class ExportStreamSessionFilesInput
|
160
160
|
attr_accessor identifier: ::String
|
161
|
-
attr_accessor output_uri: ::String
|
162
161
|
attr_accessor stream_session_identifier: ::String
|
162
|
+
attr_accessor output_uri: ::String
|
163
163
|
SENSITIVE: []
|
164
164
|
end
|
165
165
|
|
@@ -172,20 +172,20 @@ module Aws::GameLiftStreams
|
|
172
172
|
end
|
173
173
|
|
174
174
|
class GetApplicationOutput
|
175
|
-
attr_accessor application_log_output_uri: ::String
|
176
|
-
attr_accessor application_log_paths: ::Array[::String]
|
177
|
-
attr_accessor application_source_uri: ::String
|
178
175
|
attr_accessor arn: ::String
|
179
|
-
attr_accessor associated_stream_groups: ::Array[::String]
|
180
|
-
attr_accessor created_at: ::Time
|
181
176
|
attr_accessor description: ::String
|
177
|
+
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
182
178
|
attr_accessor executable_path: ::String
|
179
|
+
attr_accessor application_log_paths: ::Array[::String]
|
180
|
+
attr_accessor application_log_output_uri: ::String
|
181
|
+
attr_accessor application_source_uri: ::String
|
183
182
|
attr_accessor id: ::String
|
184
|
-
attr_accessor last_updated_at: ::Time
|
185
|
-
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
186
|
-
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
187
183
|
attr_accessor status: ("INITIALIZED" | "PROCESSING" | "READY" | "DELETING" | "ERROR")
|
188
184
|
attr_accessor status_reason: ("internalError" | "accessDenied")
|
185
|
+
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
186
|
+
attr_accessor created_at: ::Time
|
187
|
+
attr_accessor last_updated_at: ::Time
|
188
|
+
attr_accessor associated_stream_groups: ::Array[::String]
|
189
189
|
SENSITIVE: []
|
190
190
|
end
|
191
191
|
|
@@ -196,16 +196,16 @@ module Aws::GameLiftStreams
|
|
196
196
|
|
197
197
|
class GetStreamGroupOutput
|
198
198
|
attr_accessor arn: ::String
|
199
|
-
attr_accessor associated_applications: ::Array[::String]
|
200
|
-
attr_accessor created_at: ::Time
|
201
|
-
attr_accessor default_application: Types::DefaultApplication
|
202
199
|
attr_accessor description: ::String
|
203
|
-
attr_accessor
|
204
|
-
attr_accessor last_updated_at: ::Time
|
200
|
+
attr_accessor default_application: Types::DefaultApplication
|
205
201
|
attr_accessor location_states: ::Array[Types::LocationState]
|
202
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
203
|
+
attr_accessor id: ::String
|
206
204
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
207
205
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
208
|
-
attr_accessor
|
206
|
+
attr_accessor last_updated_at: ::Time
|
207
|
+
attr_accessor created_at: ::Time
|
208
|
+
attr_accessor associated_applications: ::Array[::String]
|
209
209
|
SENSITIVE: []
|
210
210
|
end
|
211
211
|
|
@@ -216,26 +216,26 @@ module Aws::GameLiftStreams
|
|
216
216
|
end
|
217
217
|
|
218
218
|
class GetStreamSessionOutput
|
219
|
-
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
220
|
-
attr_accessor additional_launch_args: ::Array[::String]
|
221
|
-
attr_accessor application_arn: ::String
|
222
219
|
attr_accessor arn: ::String
|
223
|
-
attr_accessor connection_timeout_seconds: ::Integer
|
224
|
-
attr_accessor created_at: ::Time
|
225
220
|
attr_accessor description: ::String
|
226
|
-
attr_accessor
|
227
|
-
attr_accessor
|
228
|
-
attr_accessor
|
229
|
-
attr_accessor
|
221
|
+
attr_accessor stream_group_id: ::String
|
222
|
+
attr_accessor user_id: ::String
|
223
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
224
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
|
230
225
|
attr_accessor protocol: ("WebRTC")
|
231
|
-
attr_accessor
|
226
|
+
attr_accessor location: ::String
|
232
227
|
attr_accessor signal_request: ::String
|
233
228
|
attr_accessor signal_response: ::String
|
234
|
-
attr_accessor
|
235
|
-
attr_accessor
|
236
|
-
attr_accessor
|
237
|
-
attr_accessor
|
229
|
+
attr_accessor connection_timeout_seconds: ::Integer
|
230
|
+
attr_accessor session_length_seconds: ::Integer
|
231
|
+
attr_accessor additional_launch_args: ::Array[::String]
|
232
|
+
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
233
|
+
attr_accessor log_file_location_uri: ::String
|
238
234
|
attr_accessor web_sdk_protocol_url: ::String
|
235
|
+
attr_accessor last_updated_at: ::Time
|
236
|
+
attr_accessor created_at: ::Time
|
237
|
+
attr_accessor application_arn: ::String
|
238
|
+
attr_accessor export_files_metadata: Types::ExportFilesMetadata
|
239
239
|
SENSITIVE: [:signal_request, :signal_response]
|
240
240
|
end
|
241
241
|
|
@@ -245,8 +245,8 @@ module Aws::GameLiftStreams
|
|
245
245
|
end
|
246
246
|
|
247
247
|
class ListApplicationsInput
|
248
|
-
attr_accessor max_results: ::Integer
|
249
248
|
attr_accessor next_token: ::String
|
249
|
+
attr_accessor max_results: ::Integer
|
250
250
|
SENSITIVE: []
|
251
251
|
end
|
252
252
|
|
@@ -257,8 +257,8 @@ module Aws::GameLiftStreams
|
|
257
257
|
end
|
258
258
|
|
259
259
|
class ListStreamGroupsInput
|
260
|
-
attr_accessor max_results: ::Integer
|
261
260
|
attr_accessor next_token: ::String
|
261
|
+
attr_accessor max_results: ::Integer
|
262
262
|
SENSITIVE: []
|
263
263
|
end
|
264
264
|
|
@@ -269,10 +269,10 @@ module Aws::GameLiftStreams
|
|
269
269
|
end
|
270
270
|
|
271
271
|
class ListStreamSessionsByAccountInput
|
272
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
272
273
|
attr_accessor export_files_status: ("SUCCEEDED" | "FAILED" | "PENDING")
|
273
|
-
attr_accessor max_results: ::Integer
|
274
274
|
attr_accessor next_token: ::String
|
275
|
-
attr_accessor
|
275
|
+
attr_accessor max_results: ::Integer
|
276
276
|
SENSITIVE: []
|
277
277
|
end
|
278
278
|
|
@@ -283,11 +283,11 @@ module Aws::GameLiftStreams
|
|
283
283
|
end
|
284
284
|
|
285
285
|
class ListStreamSessionsInput
|
286
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
286
287
|
attr_accessor export_files_status: ("SUCCEEDED" | "FAILED" | "PENDING")
|
287
|
-
attr_accessor identifier: ::String
|
288
|
-
attr_accessor max_results: ::Integer
|
289
288
|
attr_accessor next_token: ::String
|
290
|
-
attr_accessor
|
289
|
+
attr_accessor max_results: ::Integer
|
290
|
+
attr_accessor identifier: ::String
|
291
291
|
SENSITIVE: []
|
292
292
|
end
|
293
293
|
|
@@ -308,20 +308,20 @@ module Aws::GameLiftStreams
|
|
308
308
|
end
|
309
309
|
|
310
310
|
class LocationConfiguration
|
311
|
-
attr_accessor always_on_capacity: ::Integer
|
312
311
|
attr_accessor location_name: ::String
|
312
|
+
attr_accessor always_on_capacity: ::Integer
|
313
313
|
attr_accessor on_demand_capacity: ::Integer
|
314
314
|
SENSITIVE: []
|
315
315
|
end
|
316
316
|
|
317
317
|
class LocationState
|
318
|
-
attr_accessor allocated_capacity: ::Integer
|
319
|
-
attr_accessor always_on_capacity: ::Integer
|
320
|
-
attr_accessor idle_capacity: ::Integer
|
321
318
|
attr_accessor location_name: ::String
|
319
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "ERROR" | "REMOVING")
|
320
|
+
attr_accessor always_on_capacity: ::Integer
|
322
321
|
attr_accessor on_demand_capacity: ::Integer
|
323
322
|
attr_accessor requested_capacity: ::Integer
|
324
|
-
attr_accessor
|
323
|
+
attr_accessor allocated_capacity: ::Integer
|
324
|
+
attr_accessor idle_capacity: ::Integer
|
325
325
|
SENSITIVE: []
|
326
326
|
end
|
327
327
|
|
@@ -354,67 +354,67 @@ module Aws::GameLiftStreams
|
|
354
354
|
end
|
355
355
|
|
356
356
|
class StartStreamSessionInput
|
357
|
-
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
358
|
-
attr_accessor additional_launch_args: ::Array[::String]
|
359
|
-
attr_accessor application_identifier: ::String
|
360
357
|
attr_accessor client_token: ::String
|
361
|
-
attr_accessor connection_timeout_seconds: ::Integer
|
362
358
|
attr_accessor description: ::String
|
363
359
|
attr_accessor identifier: ::String
|
364
|
-
attr_accessor locations: ::Array[::String]
|
365
360
|
attr_accessor protocol: ("WebRTC")
|
366
|
-
attr_accessor session_length_seconds: ::Integer
|
367
361
|
attr_accessor signal_request: ::String
|
362
|
+
attr_accessor application_identifier: ::String
|
368
363
|
attr_accessor user_id: ::String
|
364
|
+
attr_accessor locations: ::Array[::String]
|
365
|
+
attr_accessor connection_timeout_seconds: ::Integer
|
366
|
+
attr_accessor session_length_seconds: ::Integer
|
367
|
+
attr_accessor additional_launch_args: ::Array[::String]
|
368
|
+
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
369
369
|
SENSITIVE: [:signal_request]
|
370
370
|
end
|
371
371
|
|
372
372
|
class StartStreamSessionOutput
|
373
|
-
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
374
|
-
attr_accessor additional_launch_args: ::Array[::String]
|
375
|
-
attr_accessor application_arn: ::String
|
376
373
|
attr_accessor arn: ::String
|
377
|
-
attr_accessor connection_timeout_seconds: ::Integer
|
378
|
-
attr_accessor created_at: ::Time
|
379
374
|
attr_accessor description: ::String
|
380
|
-
attr_accessor
|
381
|
-
attr_accessor
|
382
|
-
attr_accessor
|
383
|
-
attr_accessor
|
375
|
+
attr_accessor stream_group_id: ::String
|
376
|
+
attr_accessor user_id: ::String
|
377
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
378
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
|
384
379
|
attr_accessor protocol: ("WebRTC")
|
385
|
-
attr_accessor
|
380
|
+
attr_accessor location: ::String
|
386
381
|
attr_accessor signal_request: ::String
|
387
382
|
attr_accessor signal_response: ::String
|
388
|
-
attr_accessor
|
389
|
-
attr_accessor
|
390
|
-
attr_accessor
|
391
|
-
attr_accessor
|
383
|
+
attr_accessor connection_timeout_seconds: ::Integer
|
384
|
+
attr_accessor session_length_seconds: ::Integer
|
385
|
+
attr_accessor additional_launch_args: ::Array[::String]
|
386
|
+
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
387
|
+
attr_accessor log_file_location_uri: ::String
|
392
388
|
attr_accessor web_sdk_protocol_url: ::String
|
389
|
+
attr_accessor last_updated_at: ::Time
|
390
|
+
attr_accessor created_at: ::Time
|
391
|
+
attr_accessor application_arn: ::String
|
392
|
+
attr_accessor export_files_metadata: Types::ExportFilesMetadata
|
393
393
|
SENSITIVE: [:signal_request, :signal_response]
|
394
394
|
end
|
395
395
|
|
396
396
|
class StreamGroupSummary
|
397
397
|
attr_accessor arn: ::String
|
398
|
-
attr_accessor created_at: ::Time
|
399
|
-
attr_accessor default_application: Types::DefaultApplication
|
400
|
-
attr_accessor description: ::String
|
401
398
|
attr_accessor id: ::String
|
402
|
-
attr_accessor
|
403
|
-
attr_accessor
|
399
|
+
attr_accessor description: ::String
|
400
|
+
attr_accessor default_application: Types::DefaultApplication
|
404
401
|
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")
|
403
|
+
attr_accessor created_at: ::Time
|
404
|
+
attr_accessor last_updated_at: ::Time
|
405
405
|
SENSITIVE: []
|
406
406
|
end
|
407
407
|
|
408
408
|
class StreamSessionSummary
|
409
|
-
attr_accessor application_arn: ::String
|
410
409
|
attr_accessor arn: ::String
|
410
|
+
attr_accessor user_id: ::String
|
411
|
+
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
412
|
+
attr_accessor protocol: ("WebRTC")
|
413
|
+
attr_accessor last_updated_at: ::Time
|
411
414
|
attr_accessor created_at: ::Time
|
415
|
+
attr_accessor application_arn: ::String
|
412
416
|
attr_accessor export_files_metadata: Types::ExportFilesMetadata
|
413
|
-
attr_accessor last_updated_at: ::Time
|
414
417
|
attr_accessor location: ::String
|
415
|
-
attr_accessor protocol: ("WebRTC")
|
416
|
-
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
417
|
-
attr_accessor user_id: ::String
|
418
418
|
SENSITIVE: []
|
419
419
|
end
|
420
420
|
|
@@ -448,50 +448,50 @@ module Aws::GameLiftStreams
|
|
448
448
|
end
|
449
449
|
|
450
450
|
class UpdateApplicationInput
|
451
|
-
attr_accessor application_log_output_uri: ::String
|
452
|
-
attr_accessor application_log_paths: ::Array[::String]
|
453
|
-
attr_accessor description: ::String
|
454
451
|
attr_accessor identifier: ::String
|
452
|
+
attr_accessor description: ::String
|
453
|
+
attr_accessor application_log_paths: ::Array[::String]
|
454
|
+
attr_accessor application_log_output_uri: ::String
|
455
455
|
SENSITIVE: []
|
456
456
|
end
|
457
457
|
|
458
458
|
class UpdateApplicationOutput
|
459
|
-
attr_accessor application_log_output_uri: ::String
|
460
|
-
attr_accessor application_log_paths: ::Array[::String]
|
461
|
-
attr_accessor application_source_uri: ::String
|
462
459
|
attr_accessor arn: ::String
|
463
|
-
attr_accessor associated_stream_groups: ::Array[::String]
|
464
|
-
attr_accessor created_at: ::Time
|
465
460
|
attr_accessor description: ::String
|
461
|
+
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
466
462
|
attr_accessor executable_path: ::String
|
463
|
+
attr_accessor application_log_paths: ::Array[::String]
|
464
|
+
attr_accessor application_log_output_uri: ::String
|
465
|
+
attr_accessor application_source_uri: ::String
|
467
466
|
attr_accessor id: ::String
|
468
|
-
attr_accessor last_updated_at: ::Time
|
469
|
-
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
470
|
-
attr_accessor runtime_environment: Types::RuntimeEnvironment
|
471
467
|
attr_accessor status: ("INITIALIZED" | "PROCESSING" | "READY" | "DELETING" | "ERROR")
|
472
468
|
attr_accessor status_reason: ("internalError" | "accessDenied")
|
469
|
+
attr_accessor replication_statuses: ::Array[Types::ReplicationStatus]
|
470
|
+
attr_accessor created_at: ::Time
|
471
|
+
attr_accessor last_updated_at: ::Time
|
472
|
+
attr_accessor associated_stream_groups: ::Array[::String]
|
473
473
|
SENSITIVE: []
|
474
474
|
end
|
475
475
|
|
476
476
|
class UpdateStreamGroupInput
|
477
|
-
attr_accessor description: ::String
|
478
477
|
attr_accessor identifier: ::String
|
479
478
|
attr_accessor location_configurations: ::Array[Types::LocationConfiguration]
|
479
|
+
attr_accessor description: ::String
|
480
480
|
SENSITIVE: []
|
481
481
|
end
|
482
482
|
|
483
483
|
class UpdateStreamGroupOutput
|
484
484
|
attr_accessor arn: ::String
|
485
|
-
attr_accessor associated_applications: ::Array[::String]
|
486
|
-
attr_accessor created_at: ::Time
|
487
|
-
attr_accessor default_application: Types::DefaultApplication
|
488
485
|
attr_accessor description: ::String
|
489
|
-
attr_accessor
|
490
|
-
attr_accessor last_updated_at: ::Time
|
486
|
+
attr_accessor default_application: Types::DefaultApplication
|
491
487
|
attr_accessor location_states: ::Array[Types::LocationState]
|
488
|
+
attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
|
489
|
+
attr_accessor id: ::String
|
492
490
|
attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
|
493
491
|
attr_accessor status_reason: ("internalError" | "noAvailableInstances")
|
494
|
-
attr_accessor
|
492
|
+
attr_accessor last_updated_at: ::Time
|
493
|
+
attr_accessor created_at: ::Time
|
494
|
+
attr_accessor associated_applications: ::Array[::String]
|
495
495
|
SENSITIVE: []
|
496
496
|
end
|
497
497
|
|