aws-sdk-mediatailor 1.50.0 → 1.51.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +14 -2
- data/lib/aws-sdk-mediatailor/client_api.rb +1 -0
- data/lib/aws-sdk-mediatailor/types.rb +19 -5
- data/lib/aws-sdk-mediatailor.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 680a93d698a3329c6a238a10409ec74ad9cacb816f08b4172852590e65ff1cd2
|
4
|
+
data.tar.gz: 3eaba8fa6dd99a5b6e9135c78a284cac9a74cdb0f40110690cef25c5f949f1bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 222d060d022fbac56a268c47e12271cdcc98641d226388590933c147a2f8e5b4f8558a209cfa5d427476d4f6bae55e647c4c43aafef54ea5b2573bc30dc895bd
|
7
|
+
data.tar.gz: 35399ff97066ecfdbc2a20f5a315f076961fab1e2196954b78bd2d4204ba2cfa93b648f8360d003bab10dc6ccda22762c021bf091b8bf93e6c1e9d215094b92a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
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
|
+
|
4
9
|
1.50.0 (2021-12-21)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
@@ -400,7 +400,9 @@ module Aws::MediaTailor
|
|
400
400
|
#
|
401
401
|
# @option params [Types::SlateSource] :filler_slate
|
402
402
|
# The slate used to fill gaps between programs in the schedule. You must
|
403
|
-
# configure filler slate if your channel uses
|
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.
|
404
406
|
#
|
405
407
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
406
408
|
# The channel's output properties.
|
@@ -2035,6 +2037,12 @@ module Aws::MediaTailor
|
|
2035
2037
|
#
|
2036
2038
|
# @option params [required, String] :channel_name
|
2037
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
|
+
#
|
2038
2046
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
2039
2047
|
# The channel's output properties.
|
2040
2048
|
#
|
@@ -2054,6 +2062,10 @@ module Aws::MediaTailor
|
|
2054
2062
|
#
|
2055
2063
|
# resp = client.update_channel({
|
2056
2064
|
# channel_name: "__string", # required
|
2065
|
+
# filler_slate: {
|
2066
|
+
# source_location_name: "__string",
|
2067
|
+
# vod_source_name: "__string",
|
2068
|
+
# },
|
2057
2069
|
# outputs: [ # required
|
2058
2070
|
# {
|
2059
2071
|
# dash_playlist_settings: {
|
@@ -2241,7 +2253,7 @@ module Aws::MediaTailor
|
|
2241
2253
|
params: params,
|
2242
2254
|
config: config)
|
2243
2255
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
2244
|
-
context[:gem_version] = '1.
|
2256
|
+
context[:gem_version] = '1.51.0'
|
2245
2257
|
Seahorse::Client::Request.new(handlers, context)
|
2246
2258
|
end
|
2247
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
|
-
#
|
389
|
-
#
|
390
|
-
#
|
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
|
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
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
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.
|
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:
|
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
|