aws-sdk-medialive 1.79.0 → 1.83.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +33 -3
- data/lib/aws-sdk-medialive/client_api.rb +4 -0
- data/lib/aws-sdk-medialive/types.rb +30 -4
- data/lib/aws-sdk-medialive.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ea82f1e04c1ca358952970ebd9dedb6b90a38af91ca451b43b4b15f9ff4e698
|
4
|
+
data.tar.gz: ecdc4da113cd9477e52058fca5b1d11edfc1dce8687f820e58e29374181459af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d64fd3252e4f2df986c0907282827e06e48ad7425cd9be8ae65d61001738cb8144e0f2a0f1a06a289f4211408b77a62acd0d0fbd228cc884d68a701068f4a76
|
7
|
+
data.tar.gz: d6d2fa62a1251051ef3d71b060b216f5f4fffc7a49adebfaa88cf06d03c348a8041bd8c9af8145d84e68a51dfe6c1698212c7a3df11e86ec094c83992327177b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.83.0 (2022-01-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for selecting the Program Date Time (PDT) Clock source algorithm for HLS outputs.
|
8
|
+
|
9
|
+
1.82.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.81.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.80.0 (2021-11-19)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds support for specifying a SCTE-35 PID on input. MediaLive now supports SCTE-35 PID selection on inputs containing one or more active SCTE-35 PIDs.
|
23
|
+
|
4
24
|
1.79.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::MediaLive
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::MediaLive
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::MediaLive
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -295,7 +303,7 @@ module Aws::MediaLive
|
|
295
303
|
# seconds to wait when opening a HTTP session before raising a
|
296
304
|
# `Timeout::Error`.
|
297
305
|
#
|
298
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
307
|
# number of seconds to wait for response data. This value can
|
300
308
|
# safely be set per-request on the session.
|
301
309
|
#
|
@@ -311,6 +319,9 @@ module Aws::MediaLive
|
|
311
319
|
# disables this behaviour. This value can safely be set per
|
312
320
|
# request on the session.
|
313
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
314
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
326
|
# HTTP debug output will be sent to the `:logger`.
|
316
327
|
#
|
@@ -1235,6 +1246,7 @@ module Aws::MediaLive
|
|
1235
1246
|
# mode: "LIVE", # accepts LIVE, VOD
|
1236
1247
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
1237
1248
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
1249
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
1238
1250
|
# program_date_time_period: 1,
|
1239
1251
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
1240
1252
|
# segment_length: 1,
|
@@ -1764,6 +1776,7 @@ module Aws::MediaLive
|
|
1764
1776
|
# },
|
1765
1777
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
1766
1778
|
# },
|
1779
|
+
# scte_35_pid: 1,
|
1767
1780
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
1768
1781
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
1769
1782
|
# video_selector: {
|
@@ -2042,6 +2055,7 @@ module Aws::MediaLive
|
|
2042
2055
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
2043
2056
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
2044
2057
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
2058
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
2045
2059
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
2046
2060
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
2047
2061
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -2390,6 +2404,7 @@ module Aws::MediaLive
|
|
2390
2404
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
2391
2405
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
2392
2406
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
2407
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
2393
2408
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
2394
2409
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
2395
2410
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -3097,6 +3112,7 @@ module Aws::MediaLive
|
|
3097
3112
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
3098
3113
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
3099
3114
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
3115
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
3100
3116
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
3101
3117
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
3102
3118
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -3445,6 +3461,7 @@ module Aws::MediaLive
|
|
3445
3461
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
3446
3462
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
3447
3463
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
3464
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
3448
3465
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
3449
3466
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
3450
3467
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -4022,6 +4039,7 @@ module Aws::MediaLive
|
|
4022
4039
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
4023
4040
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
4024
4041
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
4042
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
4025
4043
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
4026
4044
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
4027
4045
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -4370,6 +4388,7 @@ module Aws::MediaLive
|
|
4370
4388
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
4371
4389
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
4372
4390
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4391
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
4373
4392
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4374
4393
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
4375
4394
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -5074,6 +5093,7 @@ module Aws::MediaLive
|
|
5074
5093
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5075
5094
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
5076
5095
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
5096
|
+
# resp.channels[0].input_attachments[0].input_settings.scte_35_pid #=> Integer
|
5077
5097
|
# resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
5078
5098
|
# resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
5079
5099
|
# resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -5961,6 +5981,7 @@ module Aws::MediaLive
|
|
5961
5981
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
5962
5982
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
5963
5983
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
5984
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
5964
5985
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
5965
5986
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
5966
5987
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -6309,6 +6330,7 @@ module Aws::MediaLive
|
|
6309
6330
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6310
6331
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6311
6332
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6333
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
6312
6334
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6313
6335
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
6314
6336
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -6668,6 +6690,7 @@ module Aws::MediaLive
|
|
6668
6690
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
6669
6691
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
6670
6692
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
6693
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
6671
6694
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
6672
6695
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
6673
6696
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -7016,6 +7039,7 @@ module Aws::MediaLive
|
|
7016
7039
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
7017
7040
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
7018
7041
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
7042
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
7019
7043
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
7020
7044
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
7021
7045
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -7559,6 +7583,7 @@ module Aws::MediaLive
|
|
7559
7583
|
# mode: "LIVE", # accepts LIVE, VOD
|
7560
7584
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
7561
7585
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
7586
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
7562
7587
|
# program_date_time_period: 1,
|
7563
7588
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
7564
7589
|
# segment_length: 1,
|
@@ -8088,6 +8113,7 @@ module Aws::MediaLive
|
|
8088
8113
|
# },
|
8089
8114
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
8090
8115
|
# },
|
8116
|
+
# scte_35_pid: 1,
|
8091
8117
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
8092
8118
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
8093
8119
|
# video_selector: {
|
@@ -8356,6 +8382,7 @@ module Aws::MediaLive
|
|
8356
8382
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
8357
8383
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
8358
8384
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
8385
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
8359
8386
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
8360
8387
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
8361
8388
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -8704,6 +8731,7 @@ module Aws::MediaLive
|
|
8704
8731
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
8705
8732
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
8706
8733
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
8734
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
8707
8735
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
8708
8736
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
8709
8737
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -9024,6 +9052,7 @@ module Aws::MediaLive
|
|
9024
9052
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
|
9025
9053
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
|
9026
9054
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
|
9055
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_clock #=> String, one of "INITIALIZE_FROM_OUTPUT_TIMECODE", "SYSTEM_CLOCK"
|
9027
9056
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
|
9028
9057
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
|
9029
9058
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.segment_length #=> Integer
|
@@ -9372,6 +9401,7 @@ module Aws::MediaLive
|
|
9372
9401
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
9373
9402
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
9374
9403
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
9404
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
9375
9405
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
9376
9406
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
9377
9407
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -9841,7 +9871,7 @@ module Aws::MediaLive
|
|
9841
9871
|
params: params,
|
9842
9872
|
config: config)
|
9843
9873
|
context[:gem_name] = 'aws-sdk-medialive'
|
9844
|
-
context[:gem_version] = '1.
|
9874
|
+
context[:gem_version] = '1.83.0'
|
9845
9875
|
Seahorse::Client::Request.new(handlers, context)
|
9846
9876
|
end
|
9847
9877
|
|
@@ -318,6 +318,7 @@ module Aws::MediaLive
|
|
318
318
|
HlsOutputSelection = Shapes::StringShape.new(name: 'HlsOutputSelection')
|
319
319
|
HlsOutputSettings = Shapes::StructureShape.new(name: 'HlsOutputSettings')
|
320
320
|
HlsProgramDateTime = Shapes::StringShape.new(name: 'HlsProgramDateTime')
|
321
|
+
HlsProgramDateTimeClock = Shapes::StringShape.new(name: 'HlsProgramDateTimeClock')
|
321
322
|
HlsRedundantManifest = Shapes::StringShape.new(name: 'HlsRedundantManifest')
|
322
323
|
HlsS3LogUploads = Shapes::StringShape.new(name: 'HlsS3LogUploads')
|
323
324
|
HlsS3Settings = Shapes::StructureShape.new(name: 'HlsS3Settings')
|
@@ -728,6 +729,7 @@ module Aws::MediaLive
|
|
728
729
|
__integerMin25Max2000 = Shapes::IntegerShape.new(name: '__integerMin25Max2000')
|
729
730
|
__integerMin3 = Shapes::IntegerShape.new(name: '__integerMin3')
|
730
731
|
__integerMin30 = Shapes::IntegerShape.new(name: '__integerMin30')
|
732
|
+
__integerMin32Max8191 = Shapes::IntegerShape.new(name: '__integerMin32Max8191')
|
731
733
|
__integerMin4Max20 = Shapes::IntegerShape.new(name: '__integerMin4Max20')
|
732
734
|
__integerMin800Max3000 = Shapes::IntegerShape.new(name: '__integerMin800Max3000')
|
733
735
|
__integerMin96Max600 = Shapes::IntegerShape.new(name: '__integerMin96Max600')
|
@@ -1860,6 +1862,7 @@ module Aws::MediaLive
|
|
1860
1862
|
HlsGroupSettings.add_member(:mode, Shapes::ShapeRef.new(shape: HlsMode, location_name: "mode"))
|
1861
1863
|
HlsGroupSettings.add_member(:output_selection, Shapes::ShapeRef.new(shape: HlsOutputSelection, location_name: "outputSelection"))
|
1862
1864
|
HlsGroupSettings.add_member(:program_date_time, Shapes::ShapeRef.new(shape: HlsProgramDateTime, location_name: "programDateTime"))
|
1865
|
+
HlsGroupSettings.add_member(:program_date_time_clock, Shapes::ShapeRef.new(shape: HlsProgramDateTimeClock, location_name: "programDateTimeClock"))
|
1863
1866
|
HlsGroupSettings.add_member(:program_date_time_period, Shapes::ShapeRef.new(shape: __integerMin0Max3600, location_name: "programDateTimePeriod"))
|
1864
1867
|
HlsGroupSettings.add_member(:redundant_manifest, Shapes::ShapeRef.new(shape: HlsRedundantManifest, location_name: "redundantManifest"))
|
1865
1868
|
HlsGroupSettings.add_member(:segment_length, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "segmentLength"))
|
@@ -2072,6 +2075,7 @@ module Aws::MediaLive
|
|
2072
2075
|
InputSettings.add_member(:filter_strength, Shapes::ShapeRef.new(shape: __integerMin1Max5, location_name: "filterStrength"))
|
2073
2076
|
InputSettings.add_member(:input_filter, Shapes::ShapeRef.new(shape: InputFilter, location_name: "inputFilter"))
|
2074
2077
|
InputSettings.add_member(:network_input_settings, Shapes::ShapeRef.new(shape: NetworkInputSettings, location_name: "networkInputSettings"))
|
2078
|
+
InputSettings.add_member(:scte_35_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8191, location_name: "scte35Pid"))
|
2075
2079
|
InputSettings.add_member(:smpte_2038_data_preference, Shapes::ShapeRef.new(shape: Smpte2038DataPreference, location_name: "smpte2038DataPreference"))
|
2076
2080
|
InputSettings.add_member(:source_end_behavior, Shapes::ShapeRef.new(shape: InputSourceEndBehavior, location_name: "sourceEndBehavior"))
|
2077
2081
|
InputSettings.add_member(:video_selector, Shapes::ShapeRef.new(shape: VideoSelector, location_name: "videoSelector"))
|
@@ -3612,6 +3612,7 @@ module Aws::MediaLive
|
|
3612
3612
|
# mode: "LIVE", # accepts LIVE, VOD
|
3613
3613
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
3614
3614
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
3615
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
3615
3616
|
# program_date_time_period: 1,
|
3616
3617
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
3617
3618
|
# segment_length: 1,
|
@@ -4141,6 +4142,7 @@ module Aws::MediaLive
|
|
4141
4142
|
# },
|
4142
4143
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
4143
4144
|
# },
|
4145
|
+
# scte_35_pid: 1,
|
4144
4146
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
4145
4147
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
4146
4148
|
# video_selector: {
|
@@ -6915,6 +6917,7 @@ module Aws::MediaLive
|
|
6915
6917
|
# mode: "LIVE", # accepts LIVE, VOD
|
6916
6918
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
6917
6919
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
6920
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
6918
6921
|
# program_date_time_period: 1,
|
6919
6922
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
6920
6923
|
# segment_length: 1,
|
@@ -8965,6 +8968,7 @@ module Aws::MediaLive
|
|
8965
8968
|
# mode: "LIVE", # accepts LIVE, VOD
|
8966
8969
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
8967
8970
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
8971
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
8968
8972
|
# program_date_time_period: 1,
|
8969
8973
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
8970
8974
|
# segment_length: 1,
|
@@ -9187,10 +9191,19 @@ module Aws::MediaLive
|
|
9187
9191
|
#
|
9188
9192
|
# @!attribute [rw] program_date_time
|
9189
9193
|
# Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest
|
9190
|
-
# files. The value is calculated
|
9191
|
-
#
|
9192
|
-
#
|
9193
|
-
#
|
9194
|
+
# files. The value is calculated using the program date time clock.
|
9195
|
+
# @return [String]
|
9196
|
+
#
|
9197
|
+
# @!attribute [rw] program_date_time_clock
|
9198
|
+
# Specifies the algorithm used to drive the HLS
|
9199
|
+
# EXT-X-PROGRAM-DATE-TIME clock. Options include:
|
9200
|
+
# INITIALIZE\_FROM\_OUTPUT\_TIMECODE: The PDT clock is initialized as
|
9201
|
+
# a function of the first output timecode, then incremented by the
|
9202
|
+
# EXTINF duration of each encoded segment. SYSTEM\_CLOCK: The PDT
|
9203
|
+
# clock is initialized as a function of the UTC wall clock, then
|
9204
|
+
# incremented by the EXTINF duration of each encoded segment. If the
|
9205
|
+
# PDT clock diverges from the wall clock by more than 500ms, it is
|
9206
|
+
# resynchronized to the wall clock.
|
9194
9207
|
# @return [String]
|
9195
9208
|
#
|
9196
9209
|
# @!attribute [rw] program_date_time_period
|
@@ -9293,6 +9306,7 @@ module Aws::MediaLive
|
|
9293
9306
|
:mode,
|
9294
9307
|
:output_selection,
|
9295
9308
|
:program_date_time,
|
9309
|
+
:program_date_time_clock,
|
9296
9310
|
:program_date_time_period,
|
9297
9311
|
:redundant_manifest,
|
9298
9312
|
:segment_length,
|
@@ -9909,6 +9923,7 @@ module Aws::MediaLive
|
|
9909
9923
|
# },
|
9910
9924
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
9911
9925
|
# },
|
9926
|
+
# scte_35_pid: 1,
|
9912
9927
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
9913
9928
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
9914
9929
|
# video_selector: {
|
@@ -10794,6 +10809,7 @@ module Aws::MediaLive
|
|
10794
10809
|
# },
|
10795
10810
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
10796
10811
|
# },
|
10812
|
+
# scte_35_pid: 1,
|
10797
10813
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
10798
10814
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
10799
10815
|
# video_selector: {
|
@@ -10851,6 +10867,11 @@ module Aws::MediaLive
|
|
10851
10867
|
# Input settings.
|
10852
10868
|
# @return [Types::NetworkInputSettings]
|
10853
10869
|
#
|
10870
|
+
# @!attribute [rw] scte_35_pid
|
10871
|
+
# PID from which to read SCTE-35 messages. If left undefined, EML will
|
10872
|
+
# select the first SCTE-35 PID found in the input.
|
10873
|
+
# @return [Integer]
|
10874
|
+
#
|
10854
10875
|
# @!attribute [rw] smpte_2038_data_preference
|
10855
10876
|
# Specifies whether to extract applicable ancillary data from a
|
10856
10877
|
# SMPTE-2038 source in this input. Applicable data types are captions,
|
@@ -10880,6 +10901,7 @@ module Aws::MediaLive
|
|
10880
10901
|
:filter_strength,
|
10881
10902
|
:input_filter,
|
10882
10903
|
:network_input_settings,
|
10904
|
+
:scte_35_pid,
|
10883
10905
|
:smpte_2038_data_preference,
|
10884
10906
|
:source_end_behavior,
|
10885
10907
|
:video_selector)
|
@@ -14236,6 +14258,7 @@ module Aws::MediaLive
|
|
14236
14258
|
# mode: "LIVE", # accepts LIVE, VOD
|
14237
14259
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
14238
14260
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
14261
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
14239
14262
|
# program_date_time_period: 1,
|
14240
14263
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
14241
14264
|
# segment_length: 1,
|
@@ -14646,6 +14669,7 @@ module Aws::MediaLive
|
|
14646
14669
|
# mode: "LIVE", # accepts LIVE, VOD
|
14647
14670
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
14648
14671
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
14672
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
14649
14673
|
# program_date_time_period: 1,
|
14650
14674
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
14651
14675
|
# segment_length: 1,
|
@@ -18149,6 +18173,7 @@ module Aws::MediaLive
|
|
18149
18173
|
# mode: "LIVE", # accepts LIVE, VOD
|
18150
18174
|
# output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
|
18151
18175
|
# program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
18176
|
+
# program_date_time_clock: "INITIALIZE_FROM_OUTPUT_TIMECODE", # accepts INITIALIZE_FROM_OUTPUT_TIMECODE, SYSTEM_CLOCK
|
18152
18177
|
# program_date_time_period: 1,
|
18153
18178
|
# redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
|
18154
18179
|
# segment_length: 1,
|
@@ -18678,6 +18703,7 @@ module Aws::MediaLive
|
|
18678
18703
|
# },
|
18679
18704
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
18680
18705
|
# },
|
18706
|
+
# scte_35_pid: 1,
|
18681
18707
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
18682
18708
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
18683
18709
|
# video_selector: {
|
data/lib/aws-sdk-medialive.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.83.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-07 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.
|
22
|
+
version: 3.125.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.
|
32
|
+
version: 3.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|