aws-sdk-ivs 1.42.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dce7be61a69a626c3423af40dd778293745fca95f8a14911f845feb0d945f8a7
4
- data.tar.gz: '07395063c65b008a4c93b735d8b3e071d3357f30640e26cddf06e23afb038b0d'
3
+ metadata.gz: a562bf10a870b5cb1569ae4453e54efb907dd49338d3869fe41d99a8ab5cceba
4
+ data.tar.gz: b8cdf7c63efa0b309ffc25f644e508211189d8c83dd7066bd89edbb291cdf562
5
5
  SHA512:
6
- metadata.gz: f50c05e7a22d1c4399b7a5b3c8a72e29bfdbddee94af44f09c56af3cf116ad22c40851d806c4b8a91e4997e5a05f8c4454854357cec3fae99f4adc876841269e
7
- data.tar.gz: bcb1f85d3b56956becc3c1fd20c0d806b18a87cda5d5b3b38a510cfbb3b0d71a8ab57f2902b704b3b2fe2fbb3f3e5e25609460afd5a50153d592df2ff8e2cb6b
6
+ metadata.gz: a957d24b8aba5ffc2f59bf9d7a886d5c1c8c9fe048c6855302795e563f6c69eb9fb21e4d27b65c4d646d6c4697605af35b9e1eb6b1f83a450be1693096c184c8
7
+ data.tar.gz: e4eda01b51d72ce7b863f3d1cae10fce6b34418c1e5c463fee6dd66268222f70e3868881db4f9e9f043422f702ba4bebff0063b3c11cc9e8187cbb49d4a4a598
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.43.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.42.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -1808,7 +1808,7 @@ module Aws::IVS
1808
1808
  params: params,
1809
1809
  config: config)
1810
1810
  context[:gem_name] = 'aws-sdk-ivs'
1811
- context[:gem_version] = '1.42.0'
1811
+ context[:gem_version] = '1.44.0'
1812
1812
  Seahorse::Client::Request.new(handlers, context)
1813
1813
  end
1814
1814
 
@@ -14,6 +14,7 @@ module Aws::IVS
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::IVS::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::IVS
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
data/lib/aws-sdk-ivs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivs/customizations'
52
52
  # @!group service
53
53
  module Aws::IVS
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.44.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,424 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IVS
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchGetChannelResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetChannelResponse]
77
+ def channels: () -> ::Array[Types::Channel]
78
+ def errors: () -> ::Array[Types::BatchError]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#batch_get_channel-instance_method
81
+ def batch_get_channel: (
82
+ arns: Array[::String]
83
+ ) -> _BatchGetChannelResponseSuccess
84
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetChannelResponseSuccess
85
+
86
+ interface _BatchGetStreamKeyResponseSuccess
87
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetStreamKeyResponse]
88
+ def errors: () -> ::Array[Types::BatchError]
89
+ def stream_keys: () -> ::Array[Types::StreamKey]
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#batch_get_stream_key-instance_method
92
+ def batch_get_stream_key: (
93
+ arns: Array[::String]
94
+ ) -> _BatchGetStreamKeyResponseSuccess
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetStreamKeyResponseSuccess
96
+
97
+ interface _BatchStartViewerSessionRevocationResponseSuccess
98
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchStartViewerSessionRevocationResponse]
99
+ def errors: () -> ::Array[Types::BatchStartViewerSessionRevocationError]
100
+ end
101
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#batch_start_viewer_session_revocation-instance_method
102
+ def batch_start_viewer_session_revocation: (
103
+ viewer_sessions: Array[
104
+ {
105
+ channel_arn: ::String,
106
+ viewer_id: ::String,
107
+ viewer_session_versions_less_than_or_equal_to: ::Integer?
108
+ },
109
+ ]
110
+ ) -> _BatchStartViewerSessionRevocationResponseSuccess
111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchStartViewerSessionRevocationResponseSuccess
112
+
113
+ interface _CreateChannelResponseSuccess
114
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
115
+ def channel: () -> Types::Channel
116
+ def stream_key: () -> Types::StreamKey
117
+ end
118
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_channel-instance_method
119
+ def create_channel: (
120
+ ?authorized: bool,
121
+ ?insecure_ingest: bool,
122
+ ?latency_mode: ("NORMAL" | "LOW"),
123
+ ?name: ::String,
124
+ ?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
125
+ ?recording_configuration_arn: ::String,
126
+ ?tags: Hash[::String, ::String],
127
+ ?type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
128
+ ) -> _CreateChannelResponseSuccess
129
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
130
+
131
+ interface _CreateRecordingConfigurationResponseSuccess
132
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRecordingConfigurationResponse]
133
+ def recording_configuration: () -> Types::RecordingConfiguration
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_recording_configuration-instance_method
136
+ def create_recording_configuration: (
137
+ destination_configuration: {
138
+ s3: {
139
+ bucket_name: ::String
140
+ }?
141
+ },
142
+ ?name: ::String,
143
+ ?recording_reconnect_window_seconds: ::Integer,
144
+ ?rendition_configuration: {
145
+ rendition_selection: ("ALL" | "NONE" | "CUSTOM")?,
146
+ renditions: Array[("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")]?
147
+ },
148
+ ?tags: Hash[::String, ::String],
149
+ ?thumbnail_configuration: {
150
+ recording_mode: ("DISABLED" | "INTERVAL")?,
151
+ resolution: ("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")?,
152
+ storage: Array[("SEQUENTIAL" | "LATEST")]?,
153
+ target_interval_seconds: ::Integer?
154
+ }
155
+ ) -> _CreateRecordingConfigurationResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecordingConfigurationResponseSuccess
157
+
158
+ interface _CreateStreamKeyResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamKeyResponse]
160
+ def stream_key: () -> Types::StreamKey
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_stream_key-instance_method
163
+ def create_stream_key: (
164
+ channel_arn: ::String,
165
+ ?tags: Hash[::String, ::String]
166
+ ) -> _CreateStreamKeyResponseSuccess
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamKeyResponseSuccess
168
+
169
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#delete_channel-instance_method
170
+ def delete_channel: (
171
+ arn: ::String
172
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
173
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
174
+
175
+ interface _DeletePlaybackKeyPairResponseSuccess
176
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePlaybackKeyPairResponse]
177
+ end
178
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#delete_playback_key_pair-instance_method
179
+ def delete_playback_key_pair: (
180
+ arn: ::String
181
+ ) -> _DeletePlaybackKeyPairResponseSuccess
182
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePlaybackKeyPairResponseSuccess
183
+
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#delete_recording_configuration-instance_method
185
+ def delete_recording_configuration: (
186
+ arn: ::String
187
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
189
+
190
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#delete_stream_key-instance_method
191
+ def delete_stream_key: (
192
+ arn: ::String
193
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
195
+
196
+ interface _GetChannelResponseSuccess
197
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetChannelResponse]
198
+ def channel: () -> Types::Channel
199
+ end
200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_channel-instance_method
201
+ def get_channel: (
202
+ arn: ::String
203
+ ) -> _GetChannelResponseSuccess
204
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChannelResponseSuccess
205
+
206
+ interface _GetPlaybackKeyPairResponseSuccess
207
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPlaybackKeyPairResponse]
208
+ def key_pair: () -> Types::PlaybackKeyPair
209
+ end
210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_playback_key_pair-instance_method
211
+ def get_playback_key_pair: (
212
+ arn: ::String
213
+ ) -> _GetPlaybackKeyPairResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPlaybackKeyPairResponseSuccess
215
+
216
+ interface _GetRecordingConfigurationResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRecordingConfigurationResponse]
218
+ def recording_configuration: () -> Types::RecordingConfiguration
219
+ end
220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_recording_configuration-instance_method
221
+ def get_recording_configuration: (
222
+ arn: ::String
223
+ ) -> _GetRecordingConfigurationResponseSuccess
224
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecordingConfigurationResponseSuccess
225
+
226
+ interface _GetStreamResponseSuccess
227
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamResponse]
228
+ def stream: () -> Types::Stream
229
+ end
230
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_stream-instance_method
231
+ def get_stream: (
232
+ channel_arn: ::String
233
+ ) -> _GetStreamResponseSuccess
234
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamResponseSuccess
235
+
236
+ interface _GetStreamKeyResponseSuccess
237
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamKeyResponse]
238
+ def stream_key: () -> Types::StreamKey
239
+ end
240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_stream_key-instance_method
241
+ def get_stream_key: (
242
+ arn: ::String
243
+ ) -> _GetStreamKeyResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamKeyResponseSuccess
245
+
246
+ interface _GetStreamSessionResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetStreamSessionResponse]
248
+ def stream_session: () -> Types::StreamSession
249
+ end
250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#get_stream_session-instance_method
251
+ def get_stream_session: (
252
+ channel_arn: ::String,
253
+ ?stream_id: ::String
254
+ ) -> _GetStreamSessionResponseSuccess
255
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStreamSessionResponseSuccess
256
+
257
+ interface _ImportPlaybackKeyPairResponseSuccess
258
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportPlaybackKeyPairResponse]
259
+ def key_pair: () -> Types::PlaybackKeyPair
260
+ end
261
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#import_playback_key_pair-instance_method
262
+ def import_playback_key_pair: (
263
+ ?name: ::String,
264
+ public_key_material: ::String,
265
+ ?tags: Hash[::String, ::String]
266
+ ) -> _ImportPlaybackKeyPairResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportPlaybackKeyPairResponseSuccess
268
+
269
+ interface _ListChannelsResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
271
+ def channels: () -> ::Array[Types::ChannelSummary]
272
+ def next_token: () -> ::String
273
+ end
274
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_channels-instance_method
275
+ def list_channels: (
276
+ ?filter_by_name: ::String,
277
+ ?filter_by_recording_configuration_arn: ::String,
278
+ ?max_results: ::Integer,
279
+ ?next_token: ::String
280
+ ) -> _ListChannelsResponseSuccess
281
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
282
+
283
+ interface _ListPlaybackKeyPairsResponseSuccess
284
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPlaybackKeyPairsResponse]
285
+ def key_pairs: () -> ::Array[Types::PlaybackKeyPairSummary]
286
+ def next_token: () -> ::String
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_playback_key_pairs-instance_method
289
+ def list_playback_key_pairs: (
290
+ ?max_results: ::Integer,
291
+ ?next_token: ::String
292
+ ) -> _ListPlaybackKeyPairsResponseSuccess
293
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlaybackKeyPairsResponseSuccess
294
+
295
+ interface _ListRecordingConfigurationsResponseSuccess
296
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecordingConfigurationsResponse]
297
+ def next_token: () -> ::String
298
+ def recording_configurations: () -> ::Array[Types::RecordingConfigurationSummary]
299
+ end
300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_recording_configurations-instance_method
301
+ def list_recording_configurations: (
302
+ ?max_results: ::Integer,
303
+ ?next_token: ::String
304
+ ) -> _ListRecordingConfigurationsResponseSuccess
305
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecordingConfigurationsResponseSuccess
306
+
307
+ interface _ListStreamKeysResponseSuccess
308
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamKeysResponse]
309
+ def next_token: () -> ::String
310
+ def stream_keys: () -> ::Array[Types::StreamKeySummary]
311
+ end
312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_stream_keys-instance_method
313
+ def list_stream_keys: (
314
+ channel_arn: ::String,
315
+ ?max_results: ::Integer,
316
+ ?next_token: ::String
317
+ ) -> _ListStreamKeysResponseSuccess
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamKeysResponseSuccess
319
+
320
+ interface _ListStreamSessionsResponseSuccess
321
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamSessionsResponse]
322
+ def next_token: () -> ::String
323
+ def stream_sessions: () -> ::Array[Types::StreamSessionSummary]
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_stream_sessions-instance_method
326
+ def list_stream_sessions: (
327
+ channel_arn: ::String,
328
+ ?max_results: ::Integer,
329
+ ?next_token: ::String
330
+ ) -> _ListStreamSessionsResponseSuccess
331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamSessionsResponseSuccess
332
+
333
+ interface _ListStreamsResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamsResponse]
335
+ def next_token: () -> ::String
336
+ def streams: () -> ::Array[Types::StreamSummary]
337
+ end
338
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_streams-instance_method
339
+ def list_streams: (
340
+ ?filter_by: {
341
+ health: ("HEALTHY" | "STARVING" | "UNKNOWN")?
342
+ },
343
+ ?max_results: ::Integer,
344
+ ?next_token: ::String
345
+ ) -> _ListStreamsResponseSuccess
346
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamsResponseSuccess
347
+
348
+ interface _ListTagsForResourceResponseSuccess
349
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
350
+ def tags: () -> ::Hash[::String, ::String]
351
+ end
352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#list_tags_for_resource-instance_method
353
+ def list_tags_for_resource: (
354
+ resource_arn: ::String
355
+ ) -> _ListTagsForResourceResponseSuccess
356
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
357
+
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#put_metadata-instance_method
359
+ def put_metadata: (
360
+ channel_arn: ::String,
361
+ metadata: ::String
362
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
364
+
365
+ interface _StartViewerSessionRevocationResponseSuccess
366
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartViewerSessionRevocationResponse]
367
+ end
368
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#start_viewer_session_revocation-instance_method
369
+ def start_viewer_session_revocation: (
370
+ channel_arn: ::String,
371
+ viewer_id: ::String,
372
+ ?viewer_session_versions_less_than_or_equal_to: ::Integer
373
+ ) -> _StartViewerSessionRevocationResponseSuccess
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartViewerSessionRevocationResponseSuccess
375
+
376
+ interface _StopStreamResponseSuccess
377
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopStreamResponse]
378
+ end
379
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#stop_stream-instance_method
380
+ def stop_stream: (
381
+ channel_arn: ::String
382
+ ) -> _StopStreamResponseSuccess
383
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopStreamResponseSuccess
384
+
385
+ interface _TagResourceResponseSuccess
386
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
387
+ end
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#tag_resource-instance_method
389
+ def tag_resource: (
390
+ resource_arn: ::String,
391
+ tags: Hash[::String, ::String]
392
+ ) -> _TagResourceResponseSuccess
393
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
394
+
395
+ interface _UntagResourceResponseSuccess
396
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
397
+ end
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#untag_resource-instance_method
399
+ def untag_resource: (
400
+ resource_arn: ::String,
401
+ tag_keys: Array[::String]
402
+ ) -> _UntagResourceResponseSuccess
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
404
+
405
+ interface _UpdateChannelResponseSuccess
406
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
407
+ def channel: () -> Types::Channel
408
+ end
409
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#update_channel-instance_method
410
+ def update_channel: (
411
+ arn: ::String,
412
+ ?authorized: bool,
413
+ ?insecure_ingest: bool,
414
+ ?latency_mode: ("NORMAL" | "LOW"),
415
+ ?name: ::String,
416
+ ?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
417
+ ?recording_configuration_arn: ::String,
418
+ ?type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
419
+ ) -> _UpdateChannelResponseSuccess
420
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
421
+ end
422
+ end
423
+ end
424
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,46 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IVS
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def exception_message: () -> ::String
16
+ end
17
+ class ChannelNotBroadcasting < ::Aws::Errors::ServiceError
18
+ def exception_message: () -> ::String
19
+ end
20
+ class ConflictException < ::Aws::Errors::ServiceError
21
+ def exception_message: () -> ::String
22
+ end
23
+ class InternalServerException < ::Aws::Errors::ServiceError
24
+ def exception_message: () -> ::String
25
+ end
26
+ class PendingVerification < ::Aws::Errors::ServiceError
27
+ def exception_message: () -> ::String
28
+ end
29
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
30
+ def exception_message: () -> ::String
31
+ end
32
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
33
+ def exception_message: () -> ::String
34
+ end
35
+ class StreamUnavailable < ::Aws::Errors::ServiceError
36
+ def exception_message: () -> ::String
37
+ end
38
+ class ThrottlingException < ::Aws::Errors::ServiceError
39
+ def exception_message: () -> ::String
40
+ end
41
+ class ValidationException < ::Aws::Errors::ServiceError
42
+ def exception_message: () -> ::String
43
+ end
44
+ end
45
+ end
46
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IVS
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,582 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::IVS
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor exception_message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AudioConfiguration
17
+ attr_accessor channels: ::Integer
18
+ attr_accessor codec: ::String
19
+ attr_accessor sample_rate: ::Integer
20
+ attr_accessor target_bitrate: ::Integer
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class BatchError
25
+ attr_accessor arn: ::String
26
+ attr_accessor code: ::String
27
+ attr_accessor message: ::String
28
+ SENSITIVE: []
29
+ end
30
+
31
+ class BatchGetChannelRequest
32
+ attr_accessor arns: ::Array[::String]
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class BatchGetChannelResponse
37
+ attr_accessor channels: ::Array[Types::Channel]
38
+ attr_accessor errors: ::Array[Types::BatchError]
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class BatchGetStreamKeyRequest
43
+ attr_accessor arns: ::Array[::String]
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class BatchGetStreamKeyResponse
48
+ attr_accessor errors: ::Array[Types::BatchError]
49
+ attr_accessor stream_keys: ::Array[Types::StreamKey]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class BatchStartViewerSessionRevocationError
54
+ attr_accessor channel_arn: ::String
55
+ attr_accessor code: ::String
56
+ attr_accessor message: ::String
57
+ attr_accessor viewer_id: ::String
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class BatchStartViewerSessionRevocationRequest
62
+ attr_accessor viewer_sessions: ::Array[Types::BatchStartViewerSessionRevocationViewerSession]
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class BatchStartViewerSessionRevocationResponse
67
+ attr_accessor errors: ::Array[Types::BatchStartViewerSessionRevocationError]
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class BatchStartViewerSessionRevocationViewerSession
72
+ attr_accessor channel_arn: ::String
73
+ attr_accessor viewer_id: ::String
74
+ attr_accessor viewer_session_versions_less_than_or_equal_to: ::Integer
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class Channel
79
+ attr_accessor arn: ::String
80
+ attr_accessor authorized: bool
81
+ attr_accessor ingest_endpoint: ::String
82
+ attr_accessor insecure_ingest: bool
83
+ attr_accessor latency_mode: ("NORMAL" | "LOW")
84
+ attr_accessor name: ::String
85
+ attr_accessor playback_url: ::String
86
+ attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
87
+ attr_accessor recording_configuration_arn: ::String
88
+ attr_accessor tags: ::Hash[::String, ::String]
89
+ attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class ChannelNotBroadcasting
94
+ attr_accessor exception_message: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class ChannelSummary
99
+ attr_accessor arn: ::String
100
+ attr_accessor authorized: bool
101
+ attr_accessor insecure_ingest: bool
102
+ attr_accessor latency_mode: ("NORMAL" | "LOW")
103
+ attr_accessor name: ::String
104
+ attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
105
+ attr_accessor recording_configuration_arn: ::String
106
+ attr_accessor tags: ::Hash[::String, ::String]
107
+ attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class ConflictException
112
+ attr_accessor exception_message: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class CreateChannelRequest
117
+ attr_accessor authorized: bool
118
+ attr_accessor insecure_ingest: bool
119
+ attr_accessor latency_mode: ("NORMAL" | "LOW")
120
+ attr_accessor name: ::String
121
+ attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
122
+ attr_accessor recording_configuration_arn: ::String
123
+ attr_accessor tags: ::Hash[::String, ::String]
124
+ attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
125
+ SENSITIVE: []
126
+ end
127
+
128
+ class CreateChannelResponse
129
+ attr_accessor channel: Types::Channel
130
+ attr_accessor stream_key: Types::StreamKey
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class CreateRecordingConfigurationRequest
135
+ attr_accessor destination_configuration: Types::DestinationConfiguration
136
+ attr_accessor name: ::String
137
+ attr_accessor recording_reconnect_window_seconds: ::Integer
138
+ attr_accessor rendition_configuration: Types::RenditionConfiguration
139
+ attr_accessor tags: ::Hash[::String, ::String]
140
+ attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class CreateRecordingConfigurationResponse
145
+ attr_accessor recording_configuration: Types::RecordingConfiguration
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class CreateStreamKeyRequest
150
+ attr_accessor channel_arn: ::String
151
+ attr_accessor tags: ::Hash[::String, ::String]
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class CreateStreamKeyResponse
156
+ attr_accessor stream_key: Types::StreamKey
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class DeleteChannelRequest
161
+ attr_accessor arn: ::String
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class DeletePlaybackKeyPairRequest
166
+ attr_accessor arn: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class DeletePlaybackKeyPairResponse < Aws::EmptyStructure
171
+ end
172
+
173
+ class DeleteRecordingConfigurationRequest
174
+ attr_accessor arn: ::String
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class DeleteStreamKeyRequest
179
+ attr_accessor arn: ::String
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class DestinationConfiguration
184
+ attr_accessor s3: Types::S3DestinationConfiguration
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class GetChannelRequest
189
+ attr_accessor arn: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class GetChannelResponse
194
+ attr_accessor channel: Types::Channel
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class GetPlaybackKeyPairRequest
199
+ attr_accessor arn: ::String
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class GetPlaybackKeyPairResponse
204
+ attr_accessor key_pair: Types::PlaybackKeyPair
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class GetRecordingConfigurationRequest
209
+ attr_accessor arn: ::String
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class GetRecordingConfigurationResponse
214
+ attr_accessor recording_configuration: Types::RecordingConfiguration
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class GetStreamKeyRequest
219
+ attr_accessor arn: ::String
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class GetStreamKeyResponse
224
+ attr_accessor stream_key: Types::StreamKey
225
+ SENSITIVE: []
226
+ end
227
+
228
+ class GetStreamRequest
229
+ attr_accessor channel_arn: ::String
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class GetStreamResponse
234
+ attr_accessor stream: Types::Stream
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class GetStreamSessionRequest
239
+ attr_accessor channel_arn: ::String
240
+ attr_accessor stream_id: ::String
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class GetStreamSessionResponse
245
+ attr_accessor stream_session: Types::StreamSession
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class ImportPlaybackKeyPairRequest
250
+ attr_accessor name: ::String
251
+ attr_accessor public_key_material: ::String
252
+ attr_accessor tags: ::Hash[::String, ::String]
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class ImportPlaybackKeyPairResponse
257
+ attr_accessor key_pair: Types::PlaybackKeyPair
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class IngestConfiguration
262
+ attr_accessor audio: Types::AudioConfiguration
263
+ attr_accessor video: Types::VideoConfiguration
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class InternalServerException
268
+ attr_accessor exception_message: ::String
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class ListChannelsRequest
273
+ attr_accessor filter_by_name: ::String
274
+ attr_accessor filter_by_recording_configuration_arn: ::String
275
+ attr_accessor max_results: ::Integer
276
+ attr_accessor next_token: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class ListChannelsResponse
281
+ attr_accessor channels: ::Array[Types::ChannelSummary]
282
+ attr_accessor next_token: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class ListPlaybackKeyPairsRequest
287
+ attr_accessor max_results: ::Integer
288
+ attr_accessor next_token: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class ListPlaybackKeyPairsResponse
293
+ attr_accessor key_pairs: ::Array[Types::PlaybackKeyPairSummary]
294
+ attr_accessor next_token: ::String
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class ListRecordingConfigurationsRequest
299
+ attr_accessor max_results: ::Integer
300
+ attr_accessor next_token: ::String
301
+ SENSITIVE: []
302
+ end
303
+
304
+ class ListRecordingConfigurationsResponse
305
+ attr_accessor next_token: ::String
306
+ attr_accessor recording_configurations: ::Array[Types::RecordingConfigurationSummary]
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class ListStreamKeysRequest
311
+ attr_accessor channel_arn: ::String
312
+ attr_accessor max_results: ::Integer
313
+ attr_accessor next_token: ::String
314
+ SENSITIVE: []
315
+ end
316
+
317
+ class ListStreamKeysResponse
318
+ attr_accessor next_token: ::String
319
+ attr_accessor stream_keys: ::Array[Types::StreamKeySummary]
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class ListStreamSessionsRequest
324
+ attr_accessor channel_arn: ::String
325
+ attr_accessor max_results: ::Integer
326
+ attr_accessor next_token: ::String
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class ListStreamSessionsResponse
331
+ attr_accessor next_token: ::String
332
+ attr_accessor stream_sessions: ::Array[Types::StreamSessionSummary]
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class ListStreamsRequest
337
+ attr_accessor filter_by: Types::StreamFilters
338
+ attr_accessor max_results: ::Integer
339
+ attr_accessor next_token: ::String
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class ListStreamsResponse
344
+ attr_accessor next_token: ::String
345
+ attr_accessor streams: ::Array[Types::StreamSummary]
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class ListTagsForResourceRequest
350
+ attr_accessor resource_arn: ::String
351
+ SENSITIVE: []
352
+ end
353
+
354
+ class ListTagsForResourceResponse
355
+ attr_accessor tags: ::Hash[::String, ::String]
356
+ SENSITIVE: []
357
+ end
358
+
359
+ class PendingVerification
360
+ attr_accessor exception_message: ::String
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class PlaybackKeyPair
365
+ attr_accessor arn: ::String
366
+ attr_accessor fingerprint: ::String
367
+ attr_accessor name: ::String
368
+ attr_accessor tags: ::Hash[::String, ::String]
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class PlaybackKeyPairSummary
373
+ attr_accessor arn: ::String
374
+ attr_accessor name: ::String
375
+ attr_accessor tags: ::Hash[::String, ::String]
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class PutMetadataRequest
380
+ attr_accessor channel_arn: ::String
381
+ attr_accessor metadata: ::String
382
+ SENSITIVE: [:metadata]
383
+ end
384
+
385
+ class RecordingConfiguration
386
+ attr_accessor arn: ::String
387
+ attr_accessor destination_configuration: Types::DestinationConfiguration
388
+ attr_accessor name: ::String
389
+ attr_accessor recording_reconnect_window_seconds: ::Integer
390
+ attr_accessor rendition_configuration: Types::RenditionConfiguration
391
+ attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
392
+ attr_accessor tags: ::Hash[::String, ::String]
393
+ attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
394
+ SENSITIVE: []
395
+ end
396
+
397
+ class RecordingConfigurationSummary
398
+ attr_accessor arn: ::String
399
+ attr_accessor destination_configuration: Types::DestinationConfiguration
400
+ attr_accessor name: ::String
401
+ attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
402
+ attr_accessor tags: ::Hash[::String, ::String]
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class RenditionConfiguration
407
+ attr_accessor rendition_selection: ("ALL" | "NONE" | "CUSTOM")
408
+ attr_accessor renditions: ::Array[("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")]
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class ResourceNotFoundException
413
+ attr_accessor exception_message: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class S3DestinationConfiguration
418
+ attr_accessor bucket_name: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class ServiceQuotaExceededException
423
+ attr_accessor exception_message: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class StartViewerSessionRevocationRequest
428
+ attr_accessor channel_arn: ::String
429
+ attr_accessor viewer_id: ::String
430
+ attr_accessor viewer_session_versions_less_than_or_equal_to: ::Integer
431
+ SENSITIVE: []
432
+ end
433
+
434
+ class StartViewerSessionRevocationResponse < Aws::EmptyStructure
435
+ end
436
+
437
+ class StopStreamRequest
438
+ attr_accessor channel_arn: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class StopStreamResponse < Aws::EmptyStructure
443
+ end
444
+
445
+ class Stream
446
+ attr_accessor channel_arn: ::String
447
+ attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
448
+ attr_accessor playback_url: ::String
449
+ attr_accessor start_time: ::Time
450
+ attr_accessor state: ("LIVE" | "OFFLINE")
451
+ attr_accessor stream_id: ::String
452
+ attr_accessor viewer_count: ::Integer
453
+ SENSITIVE: []
454
+ end
455
+
456
+ class StreamEvent
457
+ attr_accessor event_time: ::Time
458
+ attr_accessor name: ::String
459
+ attr_accessor type: ::String
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class StreamFilters
464
+ attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class StreamKey
469
+ attr_accessor arn: ::String
470
+ attr_accessor channel_arn: ::String
471
+ attr_accessor tags: ::Hash[::String, ::String]
472
+ attr_accessor value: ::String
473
+ SENSITIVE: [:value]
474
+ end
475
+
476
+ class StreamKeySummary
477
+ attr_accessor arn: ::String
478
+ attr_accessor channel_arn: ::String
479
+ attr_accessor tags: ::Hash[::String, ::String]
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class StreamSession
484
+ attr_accessor channel: Types::Channel
485
+ attr_accessor end_time: ::Time
486
+ attr_accessor ingest_configuration: Types::IngestConfiguration
487
+ attr_accessor recording_configuration: Types::RecordingConfiguration
488
+ attr_accessor start_time: ::Time
489
+ attr_accessor stream_id: ::String
490
+ attr_accessor truncated_events: ::Array[Types::StreamEvent]
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class StreamSessionSummary
495
+ attr_accessor end_time: ::Time
496
+ attr_accessor has_error_event: bool
497
+ attr_accessor start_time: ::Time
498
+ attr_accessor stream_id: ::String
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class StreamSummary
503
+ attr_accessor channel_arn: ::String
504
+ attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
505
+ attr_accessor start_time: ::Time
506
+ attr_accessor state: ("LIVE" | "OFFLINE")
507
+ attr_accessor stream_id: ::String
508
+ attr_accessor viewer_count: ::Integer
509
+ SENSITIVE: []
510
+ end
511
+
512
+ class StreamUnavailable
513
+ attr_accessor exception_message: ::String
514
+ SENSITIVE: []
515
+ end
516
+
517
+ class TagResourceRequest
518
+ attr_accessor resource_arn: ::String
519
+ attr_accessor tags: ::Hash[::String, ::String]
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class TagResourceResponse < Aws::EmptyStructure
524
+ end
525
+
526
+ class ThrottlingException
527
+ attr_accessor exception_message: ::String
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class ThumbnailConfiguration
532
+ attr_accessor recording_mode: ("DISABLED" | "INTERVAL")
533
+ attr_accessor resolution: ("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")
534
+ attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
535
+ attr_accessor target_interval_seconds: ::Integer
536
+ SENSITIVE: []
537
+ end
538
+
539
+ class UntagResourceRequest
540
+ attr_accessor resource_arn: ::String
541
+ attr_accessor tag_keys: ::Array[::String]
542
+ SENSITIVE: []
543
+ end
544
+
545
+ class UntagResourceResponse < Aws::EmptyStructure
546
+ end
547
+
548
+ class UpdateChannelRequest
549
+ attr_accessor arn: ::String
550
+ attr_accessor authorized: bool
551
+ attr_accessor insecure_ingest: bool
552
+ attr_accessor latency_mode: ("NORMAL" | "LOW")
553
+ attr_accessor name: ::String
554
+ attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
555
+ attr_accessor recording_configuration_arn: ::String
556
+ attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class UpdateChannelResponse
561
+ attr_accessor channel: Types::Channel
562
+ SENSITIVE: []
563
+ end
564
+
565
+ class ValidationException
566
+ attr_accessor exception_message: ::String
567
+ SENSITIVE: []
568
+ end
569
+
570
+ class VideoConfiguration
571
+ attr_accessor avc_level: ::String
572
+ attr_accessor avc_profile: ::String
573
+ attr_accessor codec: ::String
574
+ attr_accessor encoder: ::String
575
+ attr_accessor target_bitrate: ::Integer
576
+ attr_accessor target_framerate: ::Integer
577
+ attr_accessor video_height: ::Integer
578
+ attr_accessor video_width: ::Integer
579
+ SENSITIVE: []
580
+ end
581
+ end
582
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IVS
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.188.0
22
+ version: 3.191.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-ivs/plugins/endpoints.rb
67
67
  - lib/aws-sdk-ivs/resource.rb
68
68
  - lib/aws-sdk-ivs/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivs
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivs/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - Amazon IVS
94
99
  test_files: []