aws-sdk-mediapackage 1.69.0 → 1.71.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackage/client.rb +70 -46
- data/lib/aws-sdk-mediapackage/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-mediapackage.rb +1 -1
- data/sig/client.rbs +672 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +671 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,672 @@
|
|
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 MediaPackage
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/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 _ConfigureLogsResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfigureLogsResponse]
|
77
|
+
def arn: () -> ::String
|
78
|
+
def created_at: () -> ::String
|
79
|
+
def description: () -> ::String
|
80
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
81
|
+
def hls_ingest: () -> Types::HlsIngest
|
82
|
+
def id: () -> ::String
|
83
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
84
|
+
def tags: () -> ::Hash[::String, ::String]
|
85
|
+
end
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#configure_logs-instance_method
|
87
|
+
def configure_logs: (
|
88
|
+
?egress_access_logs: {
|
89
|
+
log_group_name: ::String?
|
90
|
+
},
|
91
|
+
id: ::String,
|
92
|
+
?ingress_access_logs: {
|
93
|
+
log_group_name: ::String?
|
94
|
+
}
|
95
|
+
) -> _ConfigureLogsResponseSuccess
|
96
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfigureLogsResponseSuccess
|
97
|
+
|
98
|
+
interface _CreateChannelResponseSuccess
|
99
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
|
100
|
+
def arn: () -> ::String
|
101
|
+
def created_at: () -> ::String
|
102
|
+
def description: () -> ::String
|
103
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
104
|
+
def hls_ingest: () -> Types::HlsIngest
|
105
|
+
def id: () -> ::String
|
106
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
107
|
+
def tags: () -> ::Hash[::String, ::String]
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#create_channel-instance_method
|
110
|
+
def create_channel: (
|
111
|
+
?description: ::String,
|
112
|
+
id: ::String,
|
113
|
+
?tags: Hash[::String, ::String]
|
114
|
+
) -> _CreateChannelResponseSuccess
|
115
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
|
116
|
+
|
117
|
+
interface _CreateHarvestJobResponseSuccess
|
118
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHarvestJobResponse]
|
119
|
+
def arn: () -> ::String
|
120
|
+
def channel_id: () -> ::String
|
121
|
+
def created_at: () -> ::String
|
122
|
+
def end_time: () -> ::String
|
123
|
+
def id: () -> ::String
|
124
|
+
def origin_endpoint_id: () -> ::String
|
125
|
+
def s3_destination: () -> Types::S3Destination
|
126
|
+
def start_time: () -> ::String
|
127
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
128
|
+
end
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#create_harvest_job-instance_method
|
130
|
+
def create_harvest_job: (
|
131
|
+
end_time: ::String,
|
132
|
+
id: ::String,
|
133
|
+
origin_endpoint_id: ::String,
|
134
|
+
s3_destination: {
|
135
|
+
bucket_name: ::String,
|
136
|
+
manifest_key: ::String,
|
137
|
+
role_arn: ::String
|
138
|
+
},
|
139
|
+
start_time: ::String
|
140
|
+
) -> _CreateHarvestJobResponseSuccess
|
141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHarvestJobResponseSuccess
|
142
|
+
|
143
|
+
interface _CreateOriginEndpointResponseSuccess
|
144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOriginEndpointResponse]
|
145
|
+
def arn: () -> ::String
|
146
|
+
def authorization: () -> Types::Authorization
|
147
|
+
def channel_id: () -> ::String
|
148
|
+
def cmaf_package: () -> Types::CmafPackage
|
149
|
+
def created_at: () -> ::String
|
150
|
+
def dash_package: () -> Types::DashPackage
|
151
|
+
def description: () -> ::String
|
152
|
+
def hls_package: () -> Types::HlsPackage
|
153
|
+
def id: () -> ::String
|
154
|
+
def manifest_name: () -> ::String
|
155
|
+
def mss_package: () -> Types::MssPackage
|
156
|
+
def origination: () -> ("ALLOW" | "DENY")
|
157
|
+
def startover_window_seconds: () -> ::Integer
|
158
|
+
def tags: () -> ::Hash[::String, ::String]
|
159
|
+
def time_delay_seconds: () -> ::Integer
|
160
|
+
def url: () -> ::String
|
161
|
+
def whitelist: () -> ::Array[::String]
|
162
|
+
end
|
163
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#create_origin_endpoint-instance_method
|
164
|
+
def create_origin_endpoint: (
|
165
|
+
?authorization: {
|
166
|
+
cdn_identifier_secret: ::String,
|
167
|
+
secrets_role_arn: ::String
|
168
|
+
},
|
169
|
+
channel_id: ::String,
|
170
|
+
?cmaf_package: {
|
171
|
+
encryption: {
|
172
|
+
constant_initialization_vector: ::String?,
|
173
|
+
encryption_method: ("SAMPLE_AES" | "AES_CTR")?,
|
174
|
+
key_rotation_interval_seconds: ::Integer?,
|
175
|
+
speke_key_provider: {
|
176
|
+
certificate_arn: ::String?,
|
177
|
+
encryption_contract_configuration: {
|
178
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
179
|
+
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")
|
180
|
+
}?,
|
181
|
+
resource_id: ::String,
|
182
|
+
role_arn: ::String,
|
183
|
+
system_ids: Array[::String],
|
184
|
+
url: ::String
|
185
|
+
}
|
186
|
+
}?,
|
187
|
+
hls_manifests: Array[
|
188
|
+
{
|
189
|
+
ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")?,
|
190
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
191
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
192
|
+
id: ::String,
|
193
|
+
include_iframe_only_stream: bool?,
|
194
|
+
manifest_name: ::String?,
|
195
|
+
playlist_type: ("NONE" | "EVENT" | "VOD")?,
|
196
|
+
playlist_window_seconds: ::Integer?,
|
197
|
+
program_date_time_interval_seconds: ::Integer?
|
198
|
+
},
|
199
|
+
]?,
|
200
|
+
segment_duration_seconds: ::Integer?,
|
201
|
+
segment_prefix: ::String?,
|
202
|
+
stream_selection: {
|
203
|
+
max_video_bits_per_second: ::Integer?,
|
204
|
+
min_video_bits_per_second: ::Integer?,
|
205
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
206
|
+
}?
|
207
|
+
},
|
208
|
+
?dash_package: {
|
209
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
210
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
211
|
+
encryption: {
|
212
|
+
key_rotation_interval_seconds: ::Integer?,
|
213
|
+
speke_key_provider: {
|
214
|
+
certificate_arn: ::String?,
|
215
|
+
encryption_contract_configuration: {
|
216
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
217
|
+
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")
|
218
|
+
}?,
|
219
|
+
resource_id: ::String,
|
220
|
+
role_arn: ::String,
|
221
|
+
system_ids: Array[::String],
|
222
|
+
url: ::String
|
223
|
+
}
|
224
|
+
}?,
|
225
|
+
include_iframe_only_stream: bool?,
|
226
|
+
manifest_layout: ("FULL" | "COMPACT" | "DRM_TOP_LEVEL_COMPACT")?,
|
227
|
+
manifest_window_seconds: ::Integer?,
|
228
|
+
min_buffer_time_seconds: ::Integer?,
|
229
|
+
min_update_period_seconds: ::Integer?,
|
230
|
+
period_triggers: Array[("ADS")]?,
|
231
|
+
profile: ("NONE" | "HBBTV_1_5" | "HYBRIDCAST" | "DVB_DASH_2014")?,
|
232
|
+
segment_duration_seconds: ::Integer?,
|
233
|
+
segment_template_format: ("NUMBER_WITH_TIMELINE" | "TIME_WITH_TIMELINE" | "NUMBER_WITH_DURATION")?,
|
234
|
+
stream_selection: {
|
235
|
+
max_video_bits_per_second: ::Integer?,
|
236
|
+
min_video_bits_per_second: ::Integer?,
|
237
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
238
|
+
}?,
|
239
|
+
suggested_presentation_delay_seconds: ::Integer?,
|
240
|
+
utc_timing: ("NONE" | "HTTP-HEAD" | "HTTP-ISO" | "HTTP-XSDATE")?,
|
241
|
+
utc_timing_uri: ::String?
|
242
|
+
},
|
243
|
+
?description: ::String,
|
244
|
+
?hls_package: {
|
245
|
+
ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")?,
|
246
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
247
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
248
|
+
encryption: {
|
249
|
+
constant_initialization_vector: ::String?,
|
250
|
+
encryption_method: ("AES_128" | "SAMPLE_AES")?,
|
251
|
+
key_rotation_interval_seconds: ::Integer?,
|
252
|
+
repeat_ext_x_key: bool?,
|
253
|
+
speke_key_provider: {
|
254
|
+
certificate_arn: ::String?,
|
255
|
+
encryption_contract_configuration: {
|
256
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
257
|
+
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")
|
258
|
+
}?,
|
259
|
+
resource_id: ::String,
|
260
|
+
role_arn: ::String,
|
261
|
+
system_ids: Array[::String],
|
262
|
+
url: ::String
|
263
|
+
}
|
264
|
+
}?,
|
265
|
+
include_dvb_subtitles: bool?,
|
266
|
+
include_iframe_only_stream: bool?,
|
267
|
+
playlist_type: ("NONE" | "EVENT" | "VOD")?,
|
268
|
+
playlist_window_seconds: ::Integer?,
|
269
|
+
program_date_time_interval_seconds: ::Integer?,
|
270
|
+
segment_duration_seconds: ::Integer?,
|
271
|
+
stream_selection: {
|
272
|
+
max_video_bits_per_second: ::Integer?,
|
273
|
+
min_video_bits_per_second: ::Integer?,
|
274
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
275
|
+
}?,
|
276
|
+
use_audio_rendition_group: bool?
|
277
|
+
},
|
278
|
+
id: ::String,
|
279
|
+
?manifest_name: ::String,
|
280
|
+
?mss_package: {
|
281
|
+
encryption: {
|
282
|
+
speke_key_provider: {
|
283
|
+
certificate_arn: ::String?,
|
284
|
+
encryption_contract_configuration: {
|
285
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
286
|
+
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")
|
287
|
+
}?,
|
288
|
+
resource_id: ::String,
|
289
|
+
role_arn: ::String,
|
290
|
+
system_ids: Array[::String],
|
291
|
+
url: ::String
|
292
|
+
}
|
293
|
+
}?,
|
294
|
+
manifest_window_seconds: ::Integer?,
|
295
|
+
segment_duration_seconds: ::Integer?,
|
296
|
+
stream_selection: {
|
297
|
+
max_video_bits_per_second: ::Integer?,
|
298
|
+
min_video_bits_per_second: ::Integer?,
|
299
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
300
|
+
}?
|
301
|
+
},
|
302
|
+
?origination: ("ALLOW" | "DENY"),
|
303
|
+
?startover_window_seconds: ::Integer,
|
304
|
+
?tags: Hash[::String, ::String],
|
305
|
+
?time_delay_seconds: ::Integer,
|
306
|
+
?whitelist: Array[::String]
|
307
|
+
) -> _CreateOriginEndpointResponseSuccess
|
308
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOriginEndpointResponseSuccess
|
309
|
+
|
310
|
+
interface _DeleteChannelResponseSuccess
|
311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChannelResponse]
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#delete_channel-instance_method
|
314
|
+
def delete_channel: (
|
315
|
+
id: ::String
|
316
|
+
) -> _DeleteChannelResponseSuccess
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChannelResponseSuccess
|
318
|
+
|
319
|
+
interface _DeleteOriginEndpointResponseSuccess
|
320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOriginEndpointResponse]
|
321
|
+
end
|
322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#delete_origin_endpoint-instance_method
|
323
|
+
def delete_origin_endpoint: (
|
324
|
+
id: ::String
|
325
|
+
) -> _DeleteOriginEndpointResponseSuccess
|
326
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOriginEndpointResponseSuccess
|
327
|
+
|
328
|
+
interface _DescribeChannelResponseSuccess
|
329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
|
330
|
+
def arn: () -> ::String
|
331
|
+
def created_at: () -> ::String
|
332
|
+
def description: () -> ::String
|
333
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
334
|
+
def hls_ingest: () -> Types::HlsIngest
|
335
|
+
def id: () -> ::String
|
336
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
337
|
+
def tags: () -> ::Hash[::String, ::String]
|
338
|
+
end
|
339
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#describe_channel-instance_method
|
340
|
+
def describe_channel: (
|
341
|
+
id: ::String
|
342
|
+
) -> _DescribeChannelResponseSuccess
|
343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChannelResponseSuccess
|
344
|
+
|
345
|
+
interface _DescribeHarvestJobResponseSuccess
|
346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeHarvestJobResponse]
|
347
|
+
def arn: () -> ::String
|
348
|
+
def channel_id: () -> ::String
|
349
|
+
def created_at: () -> ::String
|
350
|
+
def end_time: () -> ::String
|
351
|
+
def id: () -> ::String
|
352
|
+
def origin_endpoint_id: () -> ::String
|
353
|
+
def s3_destination: () -> Types::S3Destination
|
354
|
+
def start_time: () -> ::String
|
355
|
+
def status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#describe_harvest_job-instance_method
|
358
|
+
def describe_harvest_job: (
|
359
|
+
id: ::String
|
360
|
+
) -> _DescribeHarvestJobResponseSuccess
|
361
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHarvestJobResponseSuccess
|
362
|
+
|
363
|
+
interface _DescribeOriginEndpointResponseSuccess
|
364
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOriginEndpointResponse]
|
365
|
+
def arn: () -> ::String
|
366
|
+
def authorization: () -> Types::Authorization
|
367
|
+
def channel_id: () -> ::String
|
368
|
+
def cmaf_package: () -> Types::CmafPackage
|
369
|
+
def created_at: () -> ::String
|
370
|
+
def dash_package: () -> Types::DashPackage
|
371
|
+
def description: () -> ::String
|
372
|
+
def hls_package: () -> Types::HlsPackage
|
373
|
+
def id: () -> ::String
|
374
|
+
def manifest_name: () -> ::String
|
375
|
+
def mss_package: () -> Types::MssPackage
|
376
|
+
def origination: () -> ("ALLOW" | "DENY")
|
377
|
+
def startover_window_seconds: () -> ::Integer
|
378
|
+
def tags: () -> ::Hash[::String, ::String]
|
379
|
+
def time_delay_seconds: () -> ::Integer
|
380
|
+
def url: () -> ::String
|
381
|
+
def whitelist: () -> ::Array[::String]
|
382
|
+
end
|
383
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#describe_origin_endpoint-instance_method
|
384
|
+
def describe_origin_endpoint: (
|
385
|
+
id: ::String
|
386
|
+
) -> _DescribeOriginEndpointResponseSuccess
|
387
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOriginEndpointResponseSuccess
|
388
|
+
|
389
|
+
interface _ListChannelsResponseSuccess
|
390
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
|
391
|
+
def channels: () -> ::Array[Types::Channel]
|
392
|
+
def next_token: () -> ::String
|
393
|
+
end
|
394
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#list_channels-instance_method
|
395
|
+
def list_channels: (
|
396
|
+
?max_results: ::Integer,
|
397
|
+
?next_token: ::String
|
398
|
+
) -> _ListChannelsResponseSuccess
|
399
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
|
400
|
+
|
401
|
+
interface _ListHarvestJobsResponseSuccess
|
402
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListHarvestJobsResponse]
|
403
|
+
def harvest_jobs: () -> ::Array[Types::HarvestJob]
|
404
|
+
def next_token: () -> ::String
|
405
|
+
end
|
406
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#list_harvest_jobs-instance_method
|
407
|
+
def list_harvest_jobs: (
|
408
|
+
?include_channel_id: ::String,
|
409
|
+
?include_status: ::String,
|
410
|
+
?max_results: ::Integer,
|
411
|
+
?next_token: ::String
|
412
|
+
) -> _ListHarvestJobsResponseSuccess
|
413
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHarvestJobsResponseSuccess
|
414
|
+
|
415
|
+
interface _ListOriginEndpointsResponseSuccess
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOriginEndpointsResponse]
|
417
|
+
def next_token: () -> ::String
|
418
|
+
def origin_endpoints: () -> ::Array[Types::OriginEndpoint]
|
419
|
+
end
|
420
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#list_origin_endpoints-instance_method
|
421
|
+
def list_origin_endpoints: (
|
422
|
+
?channel_id: ::String,
|
423
|
+
?max_results: ::Integer,
|
424
|
+
?next_token: ::String
|
425
|
+
) -> _ListOriginEndpointsResponseSuccess
|
426
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOriginEndpointsResponseSuccess
|
427
|
+
|
428
|
+
interface _ListTagsForResourceResponseSuccess
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
430
|
+
def tags: () -> ::Hash[::String, ::String]
|
431
|
+
end
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#list_tags_for_resource-instance_method
|
433
|
+
def list_tags_for_resource: (
|
434
|
+
resource_arn: ::String
|
435
|
+
) -> _ListTagsForResourceResponseSuccess
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
437
|
+
|
438
|
+
interface _RotateChannelCredentialsResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RotateChannelCredentialsResponse]
|
440
|
+
def arn: () -> ::String
|
441
|
+
def created_at: () -> ::String
|
442
|
+
def description: () -> ::String
|
443
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
444
|
+
def hls_ingest: () -> Types::HlsIngest
|
445
|
+
def id: () -> ::String
|
446
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
447
|
+
def tags: () -> ::Hash[::String, ::String]
|
448
|
+
end
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#rotate_channel_credentials-instance_method
|
450
|
+
def rotate_channel_credentials: (
|
451
|
+
id: ::String
|
452
|
+
) -> _RotateChannelCredentialsResponseSuccess
|
453
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RotateChannelCredentialsResponseSuccess
|
454
|
+
|
455
|
+
interface _RotateIngestEndpointCredentialsResponseSuccess
|
456
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RotateIngestEndpointCredentialsResponse]
|
457
|
+
def arn: () -> ::String
|
458
|
+
def created_at: () -> ::String
|
459
|
+
def description: () -> ::String
|
460
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
461
|
+
def hls_ingest: () -> Types::HlsIngest
|
462
|
+
def id: () -> ::String
|
463
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
464
|
+
def tags: () -> ::Hash[::String, ::String]
|
465
|
+
end
|
466
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#rotate_ingest_endpoint_credentials-instance_method
|
467
|
+
def rotate_ingest_endpoint_credentials: (
|
468
|
+
id: ::String,
|
469
|
+
ingest_endpoint_id: ::String
|
470
|
+
) -> _RotateIngestEndpointCredentialsResponseSuccess
|
471
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RotateIngestEndpointCredentialsResponseSuccess
|
472
|
+
|
473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#tag_resource-instance_method
|
474
|
+
def tag_resource: (
|
475
|
+
resource_arn: ::String,
|
476
|
+
tags: Hash[::String, ::String]
|
477
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
478
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
479
|
+
|
480
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#untag_resource-instance_method
|
481
|
+
def untag_resource: (
|
482
|
+
resource_arn: ::String,
|
483
|
+
tag_keys: Array[::String]
|
484
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
486
|
+
|
487
|
+
interface _UpdateChannelResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
|
489
|
+
def arn: () -> ::String
|
490
|
+
def created_at: () -> ::String
|
491
|
+
def description: () -> ::String
|
492
|
+
def egress_access_logs: () -> Types::EgressAccessLogs
|
493
|
+
def hls_ingest: () -> Types::HlsIngest
|
494
|
+
def id: () -> ::String
|
495
|
+
def ingress_access_logs: () -> Types::IngressAccessLogs
|
496
|
+
def tags: () -> ::Hash[::String, ::String]
|
497
|
+
end
|
498
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#update_channel-instance_method
|
499
|
+
def update_channel: (
|
500
|
+
?description: ::String,
|
501
|
+
id: ::String
|
502
|
+
) -> _UpdateChannelResponseSuccess
|
503
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
504
|
+
|
505
|
+
interface _UpdateOriginEndpointResponseSuccess
|
506
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOriginEndpointResponse]
|
507
|
+
def arn: () -> ::String
|
508
|
+
def authorization: () -> Types::Authorization
|
509
|
+
def channel_id: () -> ::String
|
510
|
+
def cmaf_package: () -> Types::CmafPackage
|
511
|
+
def created_at: () -> ::String
|
512
|
+
def dash_package: () -> Types::DashPackage
|
513
|
+
def description: () -> ::String
|
514
|
+
def hls_package: () -> Types::HlsPackage
|
515
|
+
def id: () -> ::String
|
516
|
+
def manifest_name: () -> ::String
|
517
|
+
def mss_package: () -> Types::MssPackage
|
518
|
+
def origination: () -> ("ALLOW" | "DENY")
|
519
|
+
def startover_window_seconds: () -> ::Integer
|
520
|
+
def tags: () -> ::Hash[::String, ::String]
|
521
|
+
def time_delay_seconds: () -> ::Integer
|
522
|
+
def url: () -> ::String
|
523
|
+
def whitelist: () -> ::Array[::String]
|
524
|
+
end
|
525
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackage/Client.html#update_origin_endpoint-instance_method
|
526
|
+
def update_origin_endpoint: (
|
527
|
+
?authorization: {
|
528
|
+
cdn_identifier_secret: ::String,
|
529
|
+
secrets_role_arn: ::String
|
530
|
+
},
|
531
|
+
?cmaf_package: {
|
532
|
+
encryption: {
|
533
|
+
constant_initialization_vector: ::String?,
|
534
|
+
encryption_method: ("SAMPLE_AES" | "AES_CTR")?,
|
535
|
+
key_rotation_interval_seconds: ::Integer?,
|
536
|
+
speke_key_provider: {
|
537
|
+
certificate_arn: ::String?,
|
538
|
+
encryption_contract_configuration: {
|
539
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
540
|
+
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")
|
541
|
+
}?,
|
542
|
+
resource_id: ::String,
|
543
|
+
role_arn: ::String,
|
544
|
+
system_ids: Array[::String],
|
545
|
+
url: ::String
|
546
|
+
}
|
547
|
+
}?,
|
548
|
+
hls_manifests: Array[
|
549
|
+
{
|
550
|
+
ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")?,
|
551
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
552
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
553
|
+
id: ::String,
|
554
|
+
include_iframe_only_stream: bool?,
|
555
|
+
manifest_name: ::String?,
|
556
|
+
playlist_type: ("NONE" | "EVENT" | "VOD")?,
|
557
|
+
playlist_window_seconds: ::Integer?,
|
558
|
+
program_date_time_interval_seconds: ::Integer?
|
559
|
+
},
|
560
|
+
]?,
|
561
|
+
segment_duration_seconds: ::Integer?,
|
562
|
+
segment_prefix: ::String?,
|
563
|
+
stream_selection: {
|
564
|
+
max_video_bits_per_second: ::Integer?,
|
565
|
+
min_video_bits_per_second: ::Integer?,
|
566
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
567
|
+
}?
|
568
|
+
},
|
569
|
+
?dash_package: {
|
570
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
571
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
572
|
+
encryption: {
|
573
|
+
key_rotation_interval_seconds: ::Integer?,
|
574
|
+
speke_key_provider: {
|
575
|
+
certificate_arn: ::String?,
|
576
|
+
encryption_contract_configuration: {
|
577
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
578
|
+
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")
|
579
|
+
}?,
|
580
|
+
resource_id: ::String,
|
581
|
+
role_arn: ::String,
|
582
|
+
system_ids: Array[::String],
|
583
|
+
url: ::String
|
584
|
+
}
|
585
|
+
}?,
|
586
|
+
include_iframe_only_stream: bool?,
|
587
|
+
manifest_layout: ("FULL" | "COMPACT" | "DRM_TOP_LEVEL_COMPACT")?,
|
588
|
+
manifest_window_seconds: ::Integer?,
|
589
|
+
min_buffer_time_seconds: ::Integer?,
|
590
|
+
min_update_period_seconds: ::Integer?,
|
591
|
+
period_triggers: Array[("ADS")]?,
|
592
|
+
profile: ("NONE" | "HBBTV_1_5" | "HYBRIDCAST" | "DVB_DASH_2014")?,
|
593
|
+
segment_duration_seconds: ::Integer?,
|
594
|
+
segment_template_format: ("NUMBER_WITH_TIMELINE" | "TIME_WITH_TIMELINE" | "NUMBER_WITH_DURATION")?,
|
595
|
+
stream_selection: {
|
596
|
+
max_video_bits_per_second: ::Integer?,
|
597
|
+
min_video_bits_per_second: ::Integer?,
|
598
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
599
|
+
}?,
|
600
|
+
suggested_presentation_delay_seconds: ::Integer?,
|
601
|
+
utc_timing: ("NONE" | "HTTP-HEAD" | "HTTP-ISO" | "HTTP-XSDATE")?,
|
602
|
+
utc_timing_uri: ::String?
|
603
|
+
},
|
604
|
+
?description: ::String,
|
605
|
+
?hls_package: {
|
606
|
+
ad_markers: ("NONE" | "SCTE35_ENHANCED" | "PASSTHROUGH" | "DATERANGE")?,
|
607
|
+
ad_triggers: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY")]?,
|
608
|
+
ads_on_delivery_restrictions: ("NONE" | "RESTRICTED" | "UNRESTRICTED" | "BOTH")?,
|
609
|
+
encryption: {
|
610
|
+
constant_initialization_vector: ::String?,
|
611
|
+
encryption_method: ("AES_128" | "SAMPLE_AES")?,
|
612
|
+
key_rotation_interval_seconds: ::Integer?,
|
613
|
+
repeat_ext_x_key: bool?,
|
614
|
+
speke_key_provider: {
|
615
|
+
certificate_arn: ::String?,
|
616
|
+
encryption_contract_configuration: {
|
617
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
618
|
+
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")
|
619
|
+
}?,
|
620
|
+
resource_id: ::String,
|
621
|
+
role_arn: ::String,
|
622
|
+
system_ids: Array[::String],
|
623
|
+
url: ::String
|
624
|
+
}
|
625
|
+
}?,
|
626
|
+
include_dvb_subtitles: bool?,
|
627
|
+
include_iframe_only_stream: bool?,
|
628
|
+
playlist_type: ("NONE" | "EVENT" | "VOD")?,
|
629
|
+
playlist_window_seconds: ::Integer?,
|
630
|
+
program_date_time_interval_seconds: ::Integer?,
|
631
|
+
segment_duration_seconds: ::Integer?,
|
632
|
+
stream_selection: {
|
633
|
+
max_video_bits_per_second: ::Integer?,
|
634
|
+
min_video_bits_per_second: ::Integer?,
|
635
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
636
|
+
}?,
|
637
|
+
use_audio_rendition_group: bool?
|
638
|
+
},
|
639
|
+
id: ::String,
|
640
|
+
?manifest_name: ::String,
|
641
|
+
?mss_package: {
|
642
|
+
encryption: {
|
643
|
+
speke_key_provider: {
|
644
|
+
certificate_arn: ::String?,
|
645
|
+
encryption_contract_configuration: {
|
646
|
+
preset_speke_20_audio: ("PRESET-AUDIO-1" | "PRESET-AUDIO-2" | "PRESET-AUDIO-3" | "SHARED" | "UNENCRYPTED"),
|
647
|
+
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")
|
648
|
+
}?,
|
649
|
+
resource_id: ::String,
|
650
|
+
role_arn: ::String,
|
651
|
+
system_ids: Array[::String],
|
652
|
+
url: ::String
|
653
|
+
}
|
654
|
+
}?,
|
655
|
+
manifest_window_seconds: ::Integer?,
|
656
|
+
segment_duration_seconds: ::Integer?,
|
657
|
+
stream_selection: {
|
658
|
+
max_video_bits_per_second: ::Integer?,
|
659
|
+
min_video_bits_per_second: ::Integer?,
|
660
|
+
stream_order: ("ORIGINAL" | "VIDEO_BITRATE_ASCENDING" | "VIDEO_BITRATE_DESCENDING")?
|
661
|
+
}?
|
662
|
+
},
|
663
|
+
?origination: ("ALLOW" | "DENY"),
|
664
|
+
?startover_window_seconds: ::Integer,
|
665
|
+
?time_delay_seconds: ::Integer,
|
666
|
+
?whitelist: Array[::String]
|
667
|
+
) -> _UpdateOriginEndpointResponseSuccess
|
668
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOriginEndpointResponseSuccess
|
669
|
+
end
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|