aws-sdk-medialive 1.77.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da36f10d0a389cbf162ea6f246b268a84ac25300f90d2b92a561e6a32a758143
4
- data.tar.gz: 3de8b627da88eb5b9f834f505564a8e12ffd119cc73101f6f0096472f6c0bd9c
3
+ metadata.gz: '0821313cdb1fb2eed9b6c236c648ba8b64b67e24f50958f5f69192094913254c'
4
+ data.tar.gz: 519441f02892b769eeaa5c0f8de4e9353572cbae0b7bcbeef5d050fa8af6a0ac
5
5
  SHA512:
6
- metadata.gz: 779eb2937f23fabe5643feeba1064de43bbc6d1cba519dcd5de359ce546feaf226f694e89a679c732aa053ede0dd14a7c0a7c5b93177cd824334f1352fa3c951
7
- data.tar.gz: 5f5966e8fe7e069f60063615f3dbd95d633c25e0f672823ad8b59903db96cb188760efbb55459a4e939453651f386fa1bbbbba6662d2dd74d9f80681cfa62f6f
6
+ metadata.gz: 652e171ee0604e50583859a886389140c7c57d7e9b0a64a58b47675a97e28cffaeebcb8e4954d1772f779948ad0cdf0bd6dd849895019db1ef307659f54d63bc
7
+ data.tar.gz: a5f7800c6368270475abb67033f9f07b0fffe377a320b8c23647a1996db858be75dc7b6c66c3e881182d10050a77969b322e1311079c9718c67d9e341096b11f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.80.0 (2021-11-19)
10
+ ------------------
11
+
12
+ * 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.
13
+
14
+ 1.79.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.78.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.77.0 (2021-10-11)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.81.0
@@ -119,7 +119,9 @@ module Aws::MediaLive
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::MediaLive
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -1755,6 +1766,7 @@ module Aws::MediaLive
1755
1766
  # },
1756
1767
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
1757
1768
  # },
1769
+ # scte_35_pid: 1,
1758
1770
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
1759
1771
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
1760
1772
  # video_selector: {
@@ -2381,6 +2393,7 @@ module Aws::MediaLive
2381
2393
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
2382
2394
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
2383
2395
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
2396
+ # resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
2384
2397
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
2385
2398
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
2386
2399
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -3436,6 +3449,7 @@ module Aws::MediaLive
3436
3449
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
3437
3450
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
3438
3451
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
3452
+ # resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
3439
3453
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
3440
3454
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
3441
3455
  # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -4361,6 +4375,7 @@ module Aws::MediaLive
4361
4375
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
4362
4376
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
4363
4377
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
4378
+ # resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
4364
4379
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
4365
4380
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
4366
4381
  # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -5065,6 +5080,7 @@ module Aws::MediaLive
5065
5080
  # resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
5066
5081
  # resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
5067
5082
  # resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
5083
+ # resp.channels[0].input_attachments[0].input_settings.scte_35_pid #=> Integer
5068
5084
  # resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
5069
5085
  # resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
5070
5086
  # 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 +6316,7 @@ module Aws::MediaLive
6300
6316
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
6301
6317
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
6302
6318
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
6319
+ # resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
6303
6320
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
6304
6321
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
6305
6322
  # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -7007,6 +7024,7 @@ module Aws::MediaLive
7007
7024
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
7008
7025
  # resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
7009
7026
  # resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
7027
+ # resp.input_attachments[0].input_settings.scte_35_pid #=> Integer
7010
7028
  # resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
7011
7029
  # resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
7012
7030
  # resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -8079,6 +8097,7 @@ module Aws::MediaLive
8079
8097
  # },
8080
8098
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
8081
8099
  # },
8100
+ # scte_35_pid: 1,
8082
8101
  # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
8083
8102
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
8084
8103
  # video_selector: {
@@ -8695,6 +8714,7 @@ module Aws::MediaLive
8695
8714
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
8696
8715
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
8697
8716
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
8717
+ # resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
8698
8718
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
8699
8719
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
8700
8720
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -9363,6 +9383,7 @@ module Aws::MediaLive
9363
9383
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
9364
9384
  # resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
9365
9385
  # resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
9386
+ # resp.channel.input_attachments[0].input_settings.scte_35_pid #=> Integer
9366
9387
  # resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
9367
9388
  # resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
9368
9389
  # resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "HDR10", "HLG_2020", "REC_601", "REC_709"
@@ -9832,7 +9853,7 @@ module Aws::MediaLive
9832
9853
  params: params,
9833
9854
  config: config)
9834
9855
  context[:gem_name] = 'aws-sdk-medialive'
9835
- context[:gem_version] = '1.77.0'
9856
+ context[:gem_version] = '1.81.0'
9836
9857
  Seahorse::Client::Request.new(handlers, context)
9837
9858
  end
9838
9859
 
@@ -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: {
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.77.0'
52
+ GEM_VERSION = '1.81.0'
53
53
 
54
54
  end
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.77.0
4
+ version: 1.81.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-10-11 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement