aws-sdk-mediatailor 1.47.0 → 1.51.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: 5e691cb0b3731362da039d83d1cfb5503d18fbdd0d01a67844bbddcb36f9ffd6
4
- data.tar.gz: 21a536c9aaebf7cc50db299966894ec2b5496a68abff2db6d71ae6d272da0752
3
+ metadata.gz: 680a93d698a3329c6a238a10409ec74ad9cacb816f08b4172852590e65ff1cd2
4
+ data.tar.gz: 3eaba8fa6dd99a5b6e9135c78a284cac9a74cdb0f40110690cef25c5f949f1bc
5
5
  SHA512:
6
- metadata.gz: 1570a433787803a0bf01eee9fc65b1b05db699ae354d61b5c37aa6b2acd583e8755deb1383e04709dd876149ecfd85d2101b48041d0f327eae1c3dc8e814943d
7
- data.tar.gz: 2f8da74f85d50e95f55435f6009c9c438a9a69b60b6714a33bc04a4c4d6c458c3482cba3b0912868126c28a3a42d86b77aae2b2586c884ff57d6695788b5078c
6
+ metadata.gz: 222d060d022fbac56a268c47e12271cdcc98641d226388590933c147a2f8e5b4f8558a209cfa5d427476d4f6bae55e647c4c43aafef54ea5b2573bc30dc895bd
7
+ data.tar.gz: 35399ff97066ecfdbc2a20f5a315f076961fab1e2196954b78bd2d4204ba2cfa93b648f8360d003bab10dc6ccda22762c021bf091b8bf93e6c1e9d215094b92a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2022-01-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for filler slate when updating MediaTailor channels that use the linear playback mode.
8
+
9
+ 1.50.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.49.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.48.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.47.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.51.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::MediaTailor
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::MediaTailor
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::MediaTailor
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::MediaTailor
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::MediaTailor
286
303
  # seconds to wait when opening a HTTP session before raising a
287
304
  # `Timeout::Error`.
288
305
  #
289
- # @option options [Integer] :http_read_timeout (60) The default
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::MediaTailor
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
  #
@@ -380,7 +400,9 @@ module Aws::MediaTailor
380
400
  #
381
401
  # @option params [Types::SlateSource] :filler_slate
382
402
  # The slate used to fill gaps between programs in the schedule. You must
383
- # configure filler slate if your channel uses a LINEAR PlaybackMode.
403
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
404
+ # MediaTailor doesn't support filler slate for channels using the LOOP
405
+ # PlaybackMode.
384
406
  #
385
407
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
386
408
  # The channel's output properties.
@@ -2015,6 +2037,12 @@ module Aws::MediaTailor
2015
2037
  #
2016
2038
  # @option params [required, String] :channel_name
2017
2039
  #
2040
+ # @option params [Types::SlateSource] :filler_slate
2041
+ # The slate used to fill gaps between programs in the schedule. You must
2042
+ # configure filler slate if your channel uses the LINEAR PlaybackMode.
2043
+ # MediaTailor doesn't support filler slate for channels using the LOOP
2044
+ # PlaybackMode.
2045
+ #
2018
2046
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
2019
2047
  # The channel's output properties.
2020
2048
  #
@@ -2034,6 +2062,10 @@ module Aws::MediaTailor
2034
2062
  #
2035
2063
  # resp = client.update_channel({
2036
2064
  # channel_name: "__string", # required
2065
+ # filler_slate: {
2066
+ # source_location_name: "__string",
2067
+ # vod_source_name: "__string",
2068
+ # },
2037
2069
  # outputs: [ # required
2038
2070
  # {
2039
2071
  # dash_playlist_settings: {
@@ -2221,7 +2253,7 @@ module Aws::MediaTailor
2221
2253
  params: params,
2222
2254
  config: config)
2223
2255
  context[:gem_name] = 'aws-sdk-mediatailor'
2224
- context[:gem_version] = '1.47.0'
2256
+ context[:gem_version] = '1.51.0'
2225
2257
  Seahorse::Client::Request.new(handlers, context)
2226
2258
  end
2227
2259
 
@@ -719,6 +719,7 @@ module Aws::MediaTailor
719
719
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
720
720
 
721
721
  UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
722
+ UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
722
723
  UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
723
724
  UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
724
725
 
@@ -385,9 +385,10 @@ module Aws::MediaTailor
385
385
  # @return [Time]
386
386
  #
387
387
  # @!attribute [rw] filler_slate
388
- # Contains information about the slate used to fill gaps between
389
- # programs in the schedule. You must configure FillerSlate if your
390
- # channel uses an LINEAR PlaybackMode.
388
+ # The slate used to fill gaps between programs in the schedule. You
389
+ # must configure filler slate if your channel uses the LINEAR
390
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
391
+ # using the LOOP PlaybackMode.
391
392
  # @return [Types::SlateSource]
392
393
  #
393
394
  # @!attribute [rw] last_modified_time
@@ -525,8 +526,9 @@ module Aws::MediaTailor
525
526
  #
526
527
  # @!attribute [rw] filler_slate
527
528
  # The slate used to fill gaps between programs in the schedule. You
528
- # must configure filler slate if your channel uses a LINEAR
529
- # PlaybackMode.
529
+ # must configure filler slate if your channel uses the LINEAR
530
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
531
+ # using the LOOP PlaybackMode.
530
532
  # @return [Types::SlateSource]
531
533
  #
532
534
  # @!attribute [rw] outputs
@@ -3611,6 +3613,10 @@ module Aws::MediaTailor
3611
3613
  #
3612
3614
  # {
3613
3615
  # channel_name: "__string", # required
3616
+ # filler_slate: {
3617
+ # source_location_name: "__string",
3618
+ # vod_source_name: "__string",
3619
+ # },
3614
3620
  # outputs: [ # required
3615
3621
  # {
3616
3622
  # dash_playlist_settings: {
@@ -3631,6 +3637,13 @@ module Aws::MediaTailor
3631
3637
  # @!attribute [rw] channel_name
3632
3638
  # @return [String]
3633
3639
  #
3640
+ # @!attribute [rw] filler_slate
3641
+ # The slate used to fill gaps between programs in the schedule. You
3642
+ # must configure filler slate if your channel uses the LINEAR
3643
+ # PlaybackMode. MediaTailor doesn't support filler slate for channels
3644
+ # using the LOOP PlaybackMode.
3645
+ # @return [Types::SlateSource]
3646
+ #
3634
3647
  # @!attribute [rw] outputs
3635
3648
  # The channel's output properties.
3636
3649
  # @return [Array<Types::RequestOutputItem>]
@@ -3639,6 +3652,7 @@ module Aws::MediaTailor
3639
3652
  #
3640
3653
  class UpdateChannelRequest < Struct.new(
3641
3654
  :channel_name,
3655
+ :filler_slate,
3642
3656
  :outputs)
3643
3657
  SENSITIVE = []
3644
3658
  include Aws::Structure
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaTailor
50
50
 
51
- GEM_VERSION = '1.47.0'
51
+ GEM_VERSION = '1.51.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.51.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-18 00:00:00.000000000 Z
11
+ date: 2022-01-06 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.121.2
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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement