aws-sdk-mediapackagev2 1.11.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 MediaPackageV2
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/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,566 @@
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::MediaPackageV2
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ChannelGroupListConfiguration
17
+ attr_accessor channel_group_name: ::String
18
+ attr_accessor arn: ::String
19
+ attr_accessor created_at: ::Time
20
+ attr_accessor modified_at: ::Time
21
+ attr_accessor description: ::String
22
+ SENSITIVE: []
23
+ end
24
+
25
+ class ChannelListConfiguration
26
+ attr_accessor arn: ::String
27
+ attr_accessor channel_name: ::String
28
+ attr_accessor channel_group_name: ::String
29
+ attr_accessor created_at: ::Time
30
+ attr_accessor modified_at: ::Time
31
+ attr_accessor description: ::String
32
+ SENSITIVE: []
33
+ end
34
+
35
+ class ConflictException
36
+ attr_accessor message: ::String
37
+ attr_accessor conflict_exception_type: ("RESOURCE_IN_USE" | "RESOURCE_ALREADY_EXISTS" | "IDEMPOTENT_PARAMETER_MISMATCH" | "CONFLICTING_OPERATION")
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class CreateChannelGroupRequest
42
+ attr_accessor channel_group_name: ::String
43
+ attr_accessor client_token: ::String
44
+ attr_accessor description: ::String
45
+ attr_accessor tags: ::Hash[::String, ::String]
46
+ SENSITIVE: []
47
+ end
48
+
49
+ class CreateChannelGroupResponse
50
+ attr_accessor channel_group_name: ::String
51
+ attr_accessor arn: ::String
52
+ attr_accessor egress_domain: ::String
53
+ attr_accessor created_at: ::Time
54
+ attr_accessor modified_at: ::Time
55
+ attr_accessor etag: ::String
56
+ attr_accessor description: ::String
57
+ attr_accessor tags: ::Hash[::String, ::String]
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class CreateChannelRequest
62
+ attr_accessor channel_group_name: ::String
63
+ attr_accessor channel_name: ::String
64
+ attr_accessor client_token: ::String
65
+ attr_accessor description: ::String
66
+ attr_accessor tags: ::Hash[::String, ::String]
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class CreateChannelResponse
71
+ attr_accessor arn: ::String
72
+ attr_accessor channel_name: ::String
73
+ attr_accessor channel_group_name: ::String
74
+ attr_accessor created_at: ::Time
75
+ attr_accessor modified_at: ::Time
76
+ attr_accessor description: ::String
77
+ attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
78
+ attr_accessor etag: ::String
79
+ attr_accessor tags: ::Hash[::String, ::String]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class CreateHlsManifestConfiguration
84
+ attr_accessor manifest_name: ::String
85
+ attr_accessor child_manifest_name: ::String
86
+ attr_accessor scte_hls: Types::ScteHls
87
+ attr_accessor manifest_window_seconds: ::Integer
88
+ attr_accessor program_date_time_interval_seconds: ::Integer
89
+ attr_accessor filter_configuration: Types::FilterConfiguration
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class CreateLowLatencyHlsManifestConfiguration
94
+ attr_accessor manifest_name: ::String
95
+ attr_accessor child_manifest_name: ::String
96
+ attr_accessor scte_hls: Types::ScteHls
97
+ attr_accessor manifest_window_seconds: ::Integer
98
+ attr_accessor program_date_time_interval_seconds: ::Integer
99
+ attr_accessor filter_configuration: Types::FilterConfiguration
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class CreateOriginEndpointRequest
104
+ attr_accessor channel_group_name: ::String
105
+ attr_accessor channel_name: ::String
106
+ attr_accessor origin_endpoint_name: ::String
107
+ attr_accessor container_type: ("TS" | "CMAF")
108
+ attr_accessor segment: Types::Segment
109
+ attr_accessor client_token: ::String
110
+ attr_accessor description: ::String
111
+ attr_accessor startover_window_seconds: ::Integer
112
+ attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
113
+ attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
114
+ attr_accessor tags: ::Hash[::String, ::String]
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class CreateOriginEndpointResponse
119
+ attr_accessor arn: ::String
120
+ attr_accessor channel_group_name: ::String
121
+ attr_accessor channel_name: ::String
122
+ attr_accessor origin_endpoint_name: ::String
123
+ attr_accessor container_type: ("TS" | "CMAF")
124
+ attr_accessor segment: Types::Segment
125
+ attr_accessor created_at: ::Time
126
+ attr_accessor modified_at: ::Time
127
+ attr_accessor description: ::String
128
+ attr_accessor startover_window_seconds: ::Integer
129
+ attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
130
+ attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
131
+ attr_accessor etag: ::String
132
+ attr_accessor tags: ::Hash[::String, ::String]
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class DeleteChannelGroupRequest
137
+ attr_accessor channel_group_name: ::String
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class DeleteChannelGroupResponse < Aws::EmptyStructure
142
+ end
143
+
144
+ class DeleteChannelPolicyRequest
145
+ attr_accessor channel_group_name: ::String
146
+ attr_accessor channel_name: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class DeleteChannelPolicyResponse < Aws::EmptyStructure
151
+ end
152
+
153
+ class DeleteChannelRequest
154
+ attr_accessor channel_group_name: ::String
155
+ attr_accessor channel_name: ::String
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class DeleteChannelResponse < Aws::EmptyStructure
160
+ end
161
+
162
+ class DeleteOriginEndpointPolicyRequest
163
+ attr_accessor channel_group_name: ::String
164
+ attr_accessor channel_name: ::String
165
+ attr_accessor origin_endpoint_name: ::String
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class DeleteOriginEndpointPolicyResponse < Aws::EmptyStructure
170
+ end
171
+
172
+ class DeleteOriginEndpointRequest
173
+ attr_accessor channel_group_name: ::String
174
+ attr_accessor channel_name: ::String
175
+ attr_accessor origin_endpoint_name: ::String
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class DeleteOriginEndpointResponse < Aws::EmptyStructure
180
+ end
181
+
182
+ class Encryption
183
+ attr_accessor constant_initialization_vector: ::String
184
+ attr_accessor encryption_method: Types::EncryptionMethod
185
+ attr_accessor key_rotation_interval_seconds: ::Integer
186
+ attr_accessor speke_key_provider: Types::SpekeKeyProvider
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class EncryptionContractConfiguration
191
+ attr_accessor preset_speke_20_audio: ("PRESET_AUDIO_1" | "PRESET_AUDIO_2" | "PRESET_AUDIO_3" | "SHARED" | "UNENCRYPTED")
192
+ attr_accessor preset_speke_20_video: ("PRESET_VIDEO_1" | "PRESET_VIDEO_2" | "PRESET_VIDEO_3" | "PRESET_VIDEO_4" | "PRESET_VIDEO_5" | "PRESET_VIDEO_6" | "PRESET_VIDEO_7" | "PRESET_VIDEO_8" | "SHARED" | "UNENCRYPTED")
193
+ SENSITIVE: []
194
+ end
195
+
196
+ class EncryptionMethod
197
+ attr_accessor ts_encryption_method: ("AES_128" | "SAMPLE_AES")
198
+ attr_accessor cmaf_encryption_method: ("CENC" | "CBCS")
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class FilterConfiguration
203
+ attr_accessor manifest_filter: ::String
204
+ attr_accessor start: ::Time
205
+ attr_accessor end: ::Time
206
+ attr_accessor time_delay_seconds: ::Integer
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class GetChannelGroupRequest
211
+ attr_accessor channel_group_name: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class GetChannelGroupResponse
216
+ attr_accessor channel_group_name: ::String
217
+ attr_accessor arn: ::String
218
+ attr_accessor egress_domain: ::String
219
+ attr_accessor created_at: ::Time
220
+ attr_accessor modified_at: ::Time
221
+ attr_accessor description: ::String
222
+ attr_accessor etag: ::String
223
+ attr_accessor tags: ::Hash[::String, ::String]
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class GetChannelPolicyRequest
228
+ attr_accessor channel_group_name: ::String
229
+ attr_accessor channel_name: ::String
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class GetChannelPolicyResponse
234
+ attr_accessor channel_group_name: ::String
235
+ attr_accessor channel_name: ::String
236
+ attr_accessor policy: ::String
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class GetChannelRequest
241
+ attr_accessor channel_group_name: ::String
242
+ attr_accessor channel_name: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class GetChannelResponse
247
+ attr_accessor arn: ::String
248
+ attr_accessor channel_name: ::String
249
+ attr_accessor channel_group_name: ::String
250
+ attr_accessor created_at: ::Time
251
+ attr_accessor modified_at: ::Time
252
+ attr_accessor description: ::String
253
+ attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
254
+ attr_accessor etag: ::String
255
+ attr_accessor tags: ::Hash[::String, ::String]
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class GetHlsManifestConfiguration
260
+ attr_accessor manifest_name: ::String
261
+ attr_accessor url: ::String
262
+ attr_accessor child_manifest_name: ::String
263
+ attr_accessor manifest_window_seconds: ::Integer
264
+ attr_accessor program_date_time_interval_seconds: ::Integer
265
+ attr_accessor scte_hls: Types::ScteHls
266
+ attr_accessor filter_configuration: Types::FilterConfiguration
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class GetLowLatencyHlsManifestConfiguration
271
+ attr_accessor manifest_name: ::String
272
+ attr_accessor url: ::String
273
+ attr_accessor child_manifest_name: ::String
274
+ attr_accessor manifest_window_seconds: ::Integer
275
+ attr_accessor program_date_time_interval_seconds: ::Integer
276
+ attr_accessor scte_hls: Types::ScteHls
277
+ attr_accessor filter_configuration: Types::FilterConfiguration
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class GetOriginEndpointPolicyRequest
282
+ attr_accessor channel_group_name: ::String
283
+ attr_accessor channel_name: ::String
284
+ attr_accessor origin_endpoint_name: ::String
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class GetOriginEndpointPolicyResponse
289
+ attr_accessor channel_group_name: ::String
290
+ attr_accessor channel_name: ::String
291
+ attr_accessor origin_endpoint_name: ::String
292
+ attr_accessor policy: ::String
293
+ SENSITIVE: []
294
+ end
295
+
296
+ class GetOriginEndpointRequest
297
+ attr_accessor channel_group_name: ::String
298
+ attr_accessor channel_name: ::String
299
+ attr_accessor origin_endpoint_name: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class GetOriginEndpointResponse
304
+ attr_accessor arn: ::String
305
+ attr_accessor channel_group_name: ::String
306
+ attr_accessor channel_name: ::String
307
+ attr_accessor origin_endpoint_name: ::String
308
+ attr_accessor container_type: ("TS" | "CMAF")
309
+ attr_accessor segment: Types::Segment
310
+ attr_accessor created_at: ::Time
311
+ attr_accessor modified_at: ::Time
312
+ attr_accessor description: ::String
313
+ attr_accessor startover_window_seconds: ::Integer
314
+ attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
315
+ attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
316
+ attr_accessor etag: ::String
317
+ attr_accessor tags: ::Hash[::String, ::String]
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class IngestEndpoint
322
+ attr_accessor id: ::String
323
+ attr_accessor url: ::String
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class InternalServerException
328
+ attr_accessor message: ::String
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ListChannelGroupsRequest
333
+ attr_accessor max_results: ::Integer
334
+ attr_accessor next_token: ::String
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class ListChannelGroupsResponse
339
+ attr_accessor items: ::Array[Types::ChannelGroupListConfiguration]
340
+ attr_accessor next_token: ::String
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class ListChannelsRequest
345
+ attr_accessor channel_group_name: ::String
346
+ attr_accessor max_results: ::Integer
347
+ attr_accessor next_token: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class ListChannelsResponse
352
+ attr_accessor items: ::Array[Types::ChannelListConfiguration]
353
+ attr_accessor next_token: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ListHlsManifestConfiguration
358
+ attr_accessor manifest_name: ::String
359
+ attr_accessor child_manifest_name: ::String
360
+ attr_accessor url: ::String
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class ListLowLatencyHlsManifestConfiguration
365
+ attr_accessor manifest_name: ::String
366
+ attr_accessor child_manifest_name: ::String
367
+ attr_accessor url: ::String
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class ListOriginEndpointsRequest
372
+ attr_accessor channel_group_name: ::String
373
+ attr_accessor channel_name: ::String
374
+ attr_accessor max_results: ::Integer
375
+ attr_accessor next_token: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class ListOriginEndpointsResponse
380
+ attr_accessor items: ::Array[Types::OriginEndpointListConfiguration]
381
+ attr_accessor next_token: ::String
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class ListTagsForResourceRequest
386
+ attr_accessor resource_arn: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class ListTagsForResourceResponse
391
+ attr_accessor tags: ::Hash[::String, ::String]
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class OriginEndpointListConfiguration
396
+ attr_accessor arn: ::String
397
+ attr_accessor channel_group_name: ::String
398
+ attr_accessor channel_name: ::String
399
+ attr_accessor origin_endpoint_name: ::String
400
+ attr_accessor container_type: ("TS" | "CMAF")
401
+ attr_accessor description: ::String
402
+ attr_accessor created_at: ::Time
403
+ attr_accessor modified_at: ::Time
404
+ attr_accessor hls_manifests: ::Array[Types::ListHlsManifestConfiguration]
405
+ attr_accessor low_latency_hls_manifests: ::Array[Types::ListLowLatencyHlsManifestConfiguration]
406
+ SENSITIVE: []
407
+ end
408
+
409
+ class PutChannelPolicyRequest
410
+ attr_accessor channel_group_name: ::String
411
+ attr_accessor channel_name: ::String
412
+ attr_accessor policy: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class PutChannelPolicyResponse < Aws::EmptyStructure
417
+ end
418
+
419
+ class PutOriginEndpointPolicyRequest
420
+ attr_accessor channel_group_name: ::String
421
+ attr_accessor channel_name: ::String
422
+ attr_accessor origin_endpoint_name: ::String
423
+ attr_accessor policy: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class PutOriginEndpointPolicyResponse < Aws::EmptyStructure
428
+ end
429
+
430
+ class ResourceNotFoundException
431
+ attr_accessor message: ::String
432
+ attr_accessor resource_type_not_found: ("CHANNEL_GROUP" | "CHANNEL" | "ORIGIN_ENDPOINT")
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class Scte
437
+ attr_accessor scte_filter: ::Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]
438
+ SENSITIVE: []
439
+ end
440
+
441
+ class ScteHls
442
+ attr_accessor ad_marker_hls: ("DATERANGE")
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class Segment
447
+ attr_accessor segment_duration_seconds: ::Integer
448
+ attr_accessor segment_name: ::String
449
+ attr_accessor ts_use_audio_rendition_group: bool
450
+ attr_accessor include_iframe_only_streams: bool
451
+ attr_accessor ts_include_dvb_subtitles: bool
452
+ attr_accessor scte: Types::Scte
453
+ attr_accessor encryption: Types::Encryption
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class ServiceQuotaExceededException
458
+ attr_accessor message: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class SpekeKeyProvider
463
+ attr_accessor encryption_contract_configuration: Types::EncryptionContractConfiguration
464
+ attr_accessor resource_id: ::String
465
+ attr_accessor drm_systems: ::Array[("CLEAR_KEY_AES_128" | "FAIRPLAY" | "PLAYREADY" | "WIDEVINE")]
466
+ attr_accessor role_arn: ::String
467
+ attr_accessor url: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class TagResourceRequest
472
+ attr_accessor resource_arn: ::String
473
+ attr_accessor tags: ::Hash[::String, ::String]
474
+ SENSITIVE: []
475
+ end
476
+
477
+ class ThrottlingException
478
+ attr_accessor message: ::String
479
+ SENSITIVE: []
480
+ end
481
+
482
+ class UntagResourceRequest
483
+ attr_accessor resource_arn: ::String
484
+ attr_accessor tag_keys: ::Array[::String]
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class UpdateChannelGroupRequest
489
+ attr_accessor channel_group_name: ::String
490
+ attr_accessor etag: ::String
491
+ attr_accessor description: ::String
492
+ SENSITIVE: []
493
+ end
494
+
495
+ class UpdateChannelGroupResponse
496
+ attr_accessor channel_group_name: ::String
497
+ attr_accessor arn: ::String
498
+ attr_accessor egress_domain: ::String
499
+ attr_accessor created_at: ::Time
500
+ attr_accessor modified_at: ::Time
501
+ attr_accessor description: ::String
502
+ attr_accessor etag: ::String
503
+ attr_accessor tags: ::Hash[::String, ::String]
504
+ SENSITIVE: []
505
+ end
506
+
507
+ class UpdateChannelRequest
508
+ attr_accessor channel_group_name: ::String
509
+ attr_accessor channel_name: ::String
510
+ attr_accessor etag: ::String
511
+ attr_accessor description: ::String
512
+ SENSITIVE: []
513
+ end
514
+
515
+ class UpdateChannelResponse
516
+ attr_accessor arn: ::String
517
+ attr_accessor channel_name: ::String
518
+ attr_accessor channel_group_name: ::String
519
+ attr_accessor created_at: ::Time
520
+ attr_accessor modified_at: ::Time
521
+ attr_accessor description: ::String
522
+ attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
523
+ attr_accessor etag: ::String
524
+ attr_accessor tags: ::Hash[::String, ::String]
525
+ SENSITIVE: []
526
+ end
527
+
528
+ class UpdateOriginEndpointRequest
529
+ attr_accessor channel_group_name: ::String
530
+ attr_accessor channel_name: ::String
531
+ attr_accessor origin_endpoint_name: ::String
532
+ attr_accessor container_type: ("TS" | "CMAF")
533
+ attr_accessor segment: Types::Segment
534
+ attr_accessor description: ::String
535
+ attr_accessor startover_window_seconds: ::Integer
536
+ attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
537
+ attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
538
+ attr_accessor etag: ::String
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class UpdateOriginEndpointResponse
543
+ attr_accessor arn: ::String
544
+ attr_accessor channel_group_name: ::String
545
+ attr_accessor channel_name: ::String
546
+ attr_accessor origin_endpoint_name: ::String
547
+ attr_accessor container_type: ("TS" | "CMAF")
548
+ attr_accessor segment: Types::Segment
549
+ attr_accessor created_at: ::Time
550
+ attr_accessor modified_at: ::Time
551
+ attr_accessor description: ::String
552
+ attr_accessor startover_window_seconds: ::Integer
553
+ attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
554
+ attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
555
+ attr_accessor etag: ::String
556
+ attr_accessor tags: ::Hash[::String, ::String]
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class ValidationException
561
+ attr_accessor message: ::String
562
+ attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME")
563
+ SENSITIVE: []
564
+ end
565
+ end
566
+ 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 MediaPackageV2
10
+ module Waiters
11
+ end
12
+ end
13
+ end