aws-sdk-medialive 1.78.0 → 1.82.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +33 -3
- data/lib/aws-sdk-medialive/client_api.rb +2 -0
- data/lib/aws-sdk-medialive/types.rb +10 -0
- 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: a6ec8a08f826e8bbb9665f65d12a45430ba139bb31ad2dbe959f202b2056bb62
|
4
|
+
data.tar.gz: 35909d90fb28a6b78a7e5017f0e9a286d460a0ab6006de2e46ceaddb7b5b636f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10758b5c926ee3ad9d03dfc75e2a1e08c7faae7c08d1a32c9e9cab5136af64a6ad003ef4489e85c04f7a66fe02aa17f4c77ec059c7ad17387bd6bb21a4dd96cf
|
7
|
+
data.tar.gz: f6bfb574202da18d874ac53bfad12a1362c45329eea39fa7191fb717f80602587b3a2bc26319333b8e14de4edf18217dc578ed22e44a70bb2eac5356890cd24e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.82.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.81.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.80.0 (2021-11-19)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* 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.
|
18
|
+
|
19
|
+
1.79.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.78.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.82.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.
|
@@ -275,6 +283,15 @@ module Aws::MediaLive
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
284
|
# requests are made, and retries are disabled.
|
277
285
|
#
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
288
|
+
# will be used if available.
|
289
|
+
#
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
293
|
+
# is set to `true`.
|
294
|
+
#
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
279
296
|
# When `true`, request parameters are validated before
|
280
297
|
# sending the request.
|
@@ -286,7 +303,7 @@ module Aws::MediaLive
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
287
304
|
# `Timeout::Error`.
|
288
305
|
#
|
289
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
307
|
# number of seconds to wait for response data. This value can
|
291
308
|
# safely be set per-request on the session.
|
292
309
|
#
|
@@ -302,6 +319,9 @@ module Aws::MediaLive
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
303
320
|
# request on the session.
|
304
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
307
327
|
#
|
@@ -1755,6 +1775,7 @@ module Aws::MediaLive
|
|
1755
1775
|
# },
|
1756
1776
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
1757
1777
|
# },
|
1778
|
+
# scte_35_pid: 1,
|
1758
1779
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
1759
1780
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
1760
1781
|
# video_selector: {
|
@@ -2381,6 +2402,7 @@ module Aws::MediaLive
|
|
2381
2402
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
2382
2403
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
2383
2404
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
2405
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
2384
2406
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
2385
2407
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
2386
2408
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -3436,6 +3458,7 @@ module Aws::MediaLive
|
|
3436
3458
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
3437
3459
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
3438
3460
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
3461
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
3439
3462
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
3440
3463
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
3441
3464
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -4361,6 +4384,7 @@ module Aws::MediaLive
|
|
4361
4384
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
4362
4385
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
4363
4386
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4387
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
4364
4388
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4365
4389
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
4366
4390
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -5065,6 +5089,7 @@ module Aws::MediaLive
|
|
5065
5089
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5066
5090
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
5067
5091
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
5092
|
+
# resp.channels[0].input_attachments[0].input_settings.scte_35_pid #=> Integer
|
5068
5093
|
# resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
5069
5094
|
# resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
5070
5095
|
# resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -6300,6 +6325,7 @@ module Aws::MediaLive
|
|
6300
6325
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6301
6326
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6302
6327
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6328
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
6303
6329
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6304
6330
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
6305
6331
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -7007,6 +7033,7 @@ module Aws::MediaLive
|
|
7007
7033
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
7008
7034
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
7009
7035
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
7036
|
+
# resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
7010
7037
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
7011
7038
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
7012
7039
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -8079,6 +8106,7 @@ module Aws::MediaLive
|
|
8079
8106
|
# },
|
8080
8107
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
8081
8108
|
# },
|
8109
|
+
# scte_35_pid: 1,
|
8082
8110
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
8083
8111
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
8084
8112
|
# video_selector: {
|
@@ -8695,6 +8723,7 @@ module Aws::MediaLive
|
|
8695
8723
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
8696
8724
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
8697
8725
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
8726
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
8698
8727
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
8699
8728
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
8700
8729
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -9363,6 +9392,7 @@ module Aws::MediaLive
|
|
9363
9392
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
9364
9393
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
9365
9394
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
9395
|
+
# resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
|
9366
9396
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
9367
9397
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
9368
9398
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
|
@@ -9832,7 +9862,7 @@ module Aws::MediaLive
|
|
9832
9862
|
params: params,
|
9833
9863
|
config: config)
|
9834
9864
|
context[:gem_name] = 'aws-sdk-medialive'
|
9835
|
-
context[:gem_version] = '1.
|
9865
|
+
context[:gem_version] = '1.82.0'
|
9836
9866
|
Seahorse::Client::Request.new(handlers, context)
|
9837
9867
|
end
|
9838
9868
|
|
@@ -728,6 +728,7 @@ module Aws::MediaLive
|
|
728
728
|
__integerMin25Max2000 = Shapes::IntegerShape.new(name: '__integerMin25Max2000')
|
729
729
|
__integerMin3 = Shapes::IntegerShape.new(name: '__integerMin3')
|
730
730
|
__integerMin30 = Shapes::IntegerShape.new(name: '__integerMin30')
|
731
|
+
__integerMin32Max8191 = Shapes::IntegerShape.new(name: '__integerMin32Max8191')
|
731
732
|
__integerMin4Max20 = Shapes::IntegerShape.new(name: '__integerMin4Max20')
|
732
733
|
__integerMin800Max3000 = Shapes::IntegerShape.new(name: '__integerMin800Max3000')
|
733
734
|
__integerMin96Max600 = Shapes::IntegerShape.new(name: '__integerMin96Max600')
|
@@ -2072,6 +2073,7 @@ module Aws::MediaLive
|
|
2072
2073
|
InputSettings.add_member(:filter_strength, Shapes::ShapeRef.new(shape: __integerMin1Max5, location_name: "filterStrength"))
|
2073
2074
|
InputSettings.add_member(:input_filter, Shapes::ShapeRef.new(shape: InputFilter, location_name: "inputFilter"))
|
2074
2075
|
InputSettings.add_member(:network_input_settings, Shapes::ShapeRef.new(shape: NetworkInputSettings, location_name: "networkInputSettings"))
|
2076
|
+
InputSettings.add_member(:scte_35_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8191, location_name: "scte35Pid"))
|
2075
2077
|
InputSettings.add_member(:smpte_2038_data_preference, Shapes::ShapeRef.new(shape: Smpte2038DataPreference, location_name: "smpte2038DataPreference"))
|
2076
2078
|
InputSettings.add_member(:source_end_behavior, Shapes::ShapeRef.new(shape: InputSourceEndBehavior, location_name: "sourceEndBehavior"))
|
2077
2079
|
InputSettings.add_member(:video_selector, Shapes::ShapeRef.new(shape: VideoSelector, location_name: "videoSelector"))
|
@@ -4141,6 +4141,7 @@ module Aws::MediaLive
|
|
4141
4141
|
# },
|
4142
4142
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
4143
4143
|
# },
|
4144
|
+
# scte_35_pid: 1,
|
4144
4145
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
4145
4146
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
4146
4147
|
# video_selector: {
|
@@ -9909,6 +9910,7 @@ module Aws::MediaLive
|
|
9909
9910
|
# },
|
9910
9911
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
9911
9912
|
# },
|
9913
|
+
# scte_35_pid: 1,
|
9912
9914
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
9913
9915
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
9914
9916
|
# video_selector: {
|
@@ -10794,6 +10796,7 @@ module Aws::MediaLive
|
|
10794
10796
|
# },
|
10795
10797
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
10796
10798
|
# },
|
10799
|
+
# scte_35_pid: 1,
|
10797
10800
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
10798
10801
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
10799
10802
|
# video_selector: {
|
@@ -10851,6 +10854,11 @@ module Aws::MediaLive
|
|
10851
10854
|
# Input settings.
|
10852
10855
|
# @return [Types::NetworkInputSettings]
|
10853
10856
|
#
|
10857
|
+
# @!attribute [rw] scte_35_pid
|
10858
|
+
# PID from which to read SCTE-35 messages. If left undefined, EML will
|
10859
|
+
# select the first SCTE-35 PID found in the input.
|
10860
|
+
# @return [Integer]
|
10861
|
+
#
|
10854
10862
|
# @!attribute [rw] smpte_2038_data_preference
|
10855
10863
|
# Specifies whether to extract applicable ancillary data from a
|
10856
10864
|
# SMPTE-2038 source in this input. Applicable data types are captions,
|
@@ -10880,6 +10888,7 @@ module Aws::MediaLive
|
|
10880
10888
|
:filter_strength,
|
10881
10889
|
:input_filter,
|
10882
10890
|
:network_input_settings,
|
10891
|
+
:scte_35_pid,
|
10883
10892
|
:smpte_2038_data_preference,
|
10884
10893
|
:source_end_behavior,
|
10885
10894
|
:video_selector)
|
@@ -18678,6 +18687,7 @@ module Aws::MediaLive
|
|
18678
18687
|
# },
|
18679
18688
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
18680
18689
|
# },
|
18690
|
+
# scte_35_pid: 1,
|
18681
18691
|
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
18682
18692
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
18683
18693
|
# 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.82.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: 2021-
|
11
|
+
date: 2021-12-21 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
|