aws-sdk-mediatailor 1.48.0 → 1.52.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-mediatailor/client.rb +60 -4
- data/lib/aws-sdk-mediatailor/client_api.rb +15 -0
- data/lib/aws-sdk-mediatailor/types.rb +94 -5
- data/lib/aws-sdk-mediatailor.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: c0c5a5bad0447568ae375e4a16bd14c67d4e160f471bee471290dfbdb89e8b44
|
4
|
+
data.tar.gz: 3b583f1190f92cae76bad89e496f70de2e39fcd2b29cadd84c75716ee6cc8a0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e0271a0f8d41491159c872bb4a9af156ae19f07d6516c30c33f491c0f9ba6cb1b309375f8538b43e1c343f48af86468b139865b39db4a9c9df5dcd488e7a815
|
7
|
+
data.tar.gz: 2615caab7c7f552818541c4f136a8331a25e72520b116eea57f3976dac22c100114703dcd822703a28f6a3229d0e3f11cb2c1c15afa48089da20c77945329917
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2022-01-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for multiple Segment Delivery Configurations. Users can provide a list of names and URLs when creating or editing a source location. When retrieving content, users can send a header to choose which URL should be used to serve content.
|
8
|
+
|
9
|
+
1.51.0 (2022-01-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for filler slate when updating MediaTailor channels that use the linear playback mode.
|
13
|
+
|
14
|
+
1.50.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.49.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.48.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.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.
|
@@ -295,7 +303,7 @@ module Aws::MediaTailor
|
|
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::MediaTailor
|
|
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
|
#
|
@@ -389,7 +400,9 @@ module Aws::MediaTailor
|
|
389
400
|
#
|
390
401
|
# @option params [Types::SlateSource] :filler_slate
|
391
402
|
# The slate used to fill gaps between programs in the schedule. You must
|
392
|
-
# 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.
|
393
406
|
#
|
394
407
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
395
408
|
# The channel's output properties.
|
@@ -667,6 +680,9 @@ module Aws::MediaTailor
|
|
667
680
|
# @option params [required, Types::HttpConfiguration] :http_configuration
|
668
681
|
# The source's HTTP package configurations.
|
669
682
|
#
|
683
|
+
# @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
|
684
|
+
# An array of segment delivery configurations for this source location.
|
685
|
+
#
|
670
686
|
# @option params [required, String] :source_location_name
|
671
687
|
#
|
672
688
|
# @option params [Hash<String,String>] :tags
|
@@ -680,6 +696,7 @@ module Aws::MediaTailor
|
|
680
696
|
# * {Types::CreateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
|
681
697
|
# * {Types::CreateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
|
682
698
|
# * {Types::CreateSourceLocationResponse#last_modified_time #last_modified_time} => Time
|
699
|
+
# * {Types::CreateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array<Types::SegmentDeliveryConfiguration>
|
683
700
|
# * {Types::CreateSourceLocationResponse#source_location_name #source_location_name} => String
|
684
701
|
# * {Types::CreateSourceLocationResponse#tags #tags} => Hash<String,String>
|
685
702
|
#
|
@@ -700,6 +717,12 @@ module Aws::MediaTailor
|
|
700
717
|
# http_configuration: { # required
|
701
718
|
# base_url: "__string", # required
|
702
719
|
# },
|
720
|
+
# segment_delivery_configurations: [
|
721
|
+
# {
|
722
|
+
# base_url: "__string",
|
723
|
+
# name: "__string",
|
724
|
+
# },
|
725
|
+
# ],
|
703
726
|
# source_location_name: "__string", # required
|
704
727
|
# tags: {
|
705
728
|
# "__string" => "__string",
|
@@ -717,6 +740,9 @@ module Aws::MediaTailor
|
|
717
740
|
# resp.default_segment_delivery_configuration.base_url #=> String
|
718
741
|
# resp.http_configuration.base_url #=> String
|
719
742
|
# resp.last_modified_time #=> Time
|
743
|
+
# resp.segment_delivery_configurations #=> Array
|
744
|
+
# resp.segment_delivery_configurations[0].base_url #=> String
|
745
|
+
# resp.segment_delivery_configurations[0].name #=> String
|
720
746
|
# resp.source_location_name #=> String
|
721
747
|
# resp.tags #=> Hash
|
722
748
|
# resp.tags["__string"] #=> String
|
@@ -1067,6 +1093,7 @@ module Aws::MediaTailor
|
|
1067
1093
|
# * {Types::DescribeSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
|
1068
1094
|
# * {Types::DescribeSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
|
1069
1095
|
# * {Types::DescribeSourceLocationResponse#last_modified_time #last_modified_time} => Time
|
1096
|
+
# * {Types::DescribeSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array<Types::SegmentDeliveryConfiguration>
|
1070
1097
|
# * {Types::DescribeSourceLocationResponse#source_location_name #source_location_name} => String
|
1071
1098
|
# * {Types::DescribeSourceLocationResponse#tags #tags} => Hash<String,String>
|
1072
1099
|
#
|
@@ -1087,6 +1114,9 @@ module Aws::MediaTailor
|
|
1087
1114
|
# resp.default_segment_delivery_configuration.base_url #=> String
|
1088
1115
|
# resp.http_configuration.base_url #=> String
|
1089
1116
|
# resp.last_modified_time #=> Time
|
1117
|
+
# resp.segment_delivery_configurations #=> Array
|
1118
|
+
# resp.segment_delivery_configurations[0].base_url #=> String
|
1119
|
+
# resp.segment_delivery_configurations[0].name #=> String
|
1090
1120
|
# resp.source_location_name #=> String
|
1091
1121
|
# resp.tags #=> Hash
|
1092
1122
|
# resp.tags["__string"] #=> String
|
@@ -1614,6 +1644,9 @@ module Aws::MediaTailor
|
|
1614
1644
|
# resp.items[0].default_segment_delivery_configuration.base_url #=> String
|
1615
1645
|
# resp.items[0].http_configuration.base_url #=> String
|
1616
1646
|
# resp.items[0].last_modified_time #=> Time
|
1647
|
+
# resp.items[0].segment_delivery_configurations #=> Array
|
1648
|
+
# resp.items[0].segment_delivery_configurations[0].base_url #=> String
|
1649
|
+
# resp.items[0].segment_delivery_configurations[0].name #=> String
|
1617
1650
|
# resp.items[0].source_location_name #=> String
|
1618
1651
|
# resp.items[0].tags #=> Hash
|
1619
1652
|
# resp.items[0].tags["__string"] #=> String
|
@@ -2024,6 +2057,12 @@ module Aws::MediaTailor
|
|
2024
2057
|
#
|
2025
2058
|
# @option params [required, String] :channel_name
|
2026
2059
|
#
|
2060
|
+
# @option params [Types::SlateSource] :filler_slate
|
2061
|
+
# The slate used to fill gaps between programs in the schedule. You must
|
2062
|
+
# configure filler slate if your channel uses the LINEAR PlaybackMode.
|
2063
|
+
# MediaTailor doesn't support filler slate for channels using the LOOP
|
2064
|
+
# PlaybackMode.
|
2065
|
+
#
|
2027
2066
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
2028
2067
|
# The channel's output properties.
|
2029
2068
|
#
|
@@ -2043,6 +2082,10 @@ module Aws::MediaTailor
|
|
2043
2082
|
#
|
2044
2083
|
# resp = client.update_channel({
|
2045
2084
|
# channel_name: "__string", # required
|
2085
|
+
# filler_slate: {
|
2086
|
+
# source_location_name: "__string",
|
2087
|
+
# vod_source_name: "__string",
|
2088
|
+
# },
|
2046
2089
|
# outputs: [ # required
|
2047
2090
|
# {
|
2048
2091
|
# dash_playlist_settings: {
|
@@ -2103,6 +2146,9 @@ module Aws::MediaTailor
|
|
2103
2146
|
# @option params [required, Types::HttpConfiguration] :http_configuration
|
2104
2147
|
# The HTTP configuration for the source location.
|
2105
2148
|
#
|
2149
|
+
# @option params [Array<Types::SegmentDeliveryConfiguration>] :segment_delivery_configurations
|
2150
|
+
# An array of segment delivery configurations for this source location.
|
2151
|
+
#
|
2106
2152
|
# @option params [required, String] :source_location_name
|
2107
2153
|
#
|
2108
2154
|
# @return [Types::UpdateSourceLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -2113,6 +2159,7 @@ module Aws::MediaTailor
|
|
2113
2159
|
# * {Types::UpdateSourceLocationResponse#default_segment_delivery_configuration #default_segment_delivery_configuration} => Types::DefaultSegmentDeliveryConfiguration
|
2114
2160
|
# * {Types::UpdateSourceLocationResponse#http_configuration #http_configuration} => Types::HttpConfiguration
|
2115
2161
|
# * {Types::UpdateSourceLocationResponse#last_modified_time #last_modified_time} => Time
|
2162
|
+
# * {Types::UpdateSourceLocationResponse#segment_delivery_configurations #segment_delivery_configurations} => Array<Types::SegmentDeliveryConfiguration>
|
2116
2163
|
# * {Types::UpdateSourceLocationResponse#source_location_name #source_location_name} => String
|
2117
2164
|
# * {Types::UpdateSourceLocationResponse#tags #tags} => Hash<String,String>
|
2118
2165
|
#
|
@@ -2133,6 +2180,12 @@ module Aws::MediaTailor
|
|
2133
2180
|
# http_configuration: { # required
|
2134
2181
|
# base_url: "__string", # required
|
2135
2182
|
# },
|
2183
|
+
# segment_delivery_configurations: [
|
2184
|
+
# {
|
2185
|
+
# base_url: "__string",
|
2186
|
+
# name: "__string",
|
2187
|
+
# },
|
2188
|
+
# ],
|
2136
2189
|
# source_location_name: "__string", # required
|
2137
2190
|
# })
|
2138
2191
|
#
|
@@ -2147,6 +2200,9 @@ module Aws::MediaTailor
|
|
2147
2200
|
# resp.default_segment_delivery_configuration.base_url #=> String
|
2148
2201
|
# resp.http_configuration.base_url #=> String
|
2149
2202
|
# resp.last_modified_time #=> Time
|
2203
|
+
# resp.segment_delivery_configurations #=> Array
|
2204
|
+
# resp.segment_delivery_configurations[0].base_url #=> String
|
2205
|
+
# resp.segment_delivery_configurations[0].name #=> String
|
2150
2206
|
# resp.source_location_name #=> String
|
2151
2207
|
# resp.tags #=> Hash
|
2152
2208
|
# resp.tags["__string"] #=> String
|
@@ -2230,7 +2286,7 @@ module Aws::MediaTailor
|
|
2230
2286
|
params: params,
|
2231
2287
|
config: config)
|
2232
2288
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
2233
|
-
context[:gem_version] = '1.
|
2289
|
+
context[:gem_version] = '1.52.0'
|
2234
2290
|
Seahorse::Client::Request.new(handlers, context)
|
2235
2291
|
end
|
2236
2292
|
|
@@ -119,6 +119,7 @@ module Aws::MediaTailor
|
|
119
119
|
ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
|
120
120
|
ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
|
121
121
|
SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
|
122
|
+
SegmentDeliveryConfiguration = Shapes::StructureShape.new(name: 'SegmentDeliveryConfiguration')
|
122
123
|
SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
|
123
124
|
SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
|
124
125
|
SpliceInsertMessage = Shapes::StructureShape.new(name: 'SpliceInsertMessage')
|
@@ -149,6 +150,7 @@ module Aws::MediaTailor
|
|
149
150
|
__listOfPrefetchSchedule = Shapes::ListShape.new(name: '__listOfPrefetchSchedule')
|
150
151
|
__listOfScheduleAdBreak = Shapes::ListShape.new(name: '__listOfScheduleAdBreak')
|
151
152
|
__listOfScheduleEntry = Shapes::ListShape.new(name: '__listOfScheduleEntry')
|
153
|
+
__listOfSegmentDeliveryConfiguration = Shapes::ListShape.new(name: '__listOfSegmentDeliveryConfiguration')
|
152
154
|
__listOfSourceLocation = Shapes::ListShape.new(name: '__listOfSourceLocation')
|
153
155
|
__listOfVodSource = Shapes::ListShape.new(name: '__listOfVodSource')
|
154
156
|
__listOf__string = Shapes::ListShape.new(name: '__listOf__string')
|
@@ -275,6 +277,7 @@ module Aws::MediaTailor
|
|
275
277
|
CreateSourceLocationRequest.add_member(:access_configuration, Shapes::ShapeRef.new(shape: AccessConfiguration, location_name: "AccessConfiguration"))
|
276
278
|
CreateSourceLocationRequest.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
277
279
|
CreateSourceLocationRequest.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
|
280
|
+
CreateSourceLocationRequest.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
278
281
|
CreateSourceLocationRequest.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceLocationName"))
|
279
282
|
CreateSourceLocationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
280
283
|
CreateSourceLocationRequest.struct_class = Types::CreateSourceLocationRequest
|
@@ -285,6 +288,7 @@ module Aws::MediaTailor
|
|
285
288
|
CreateSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
286
289
|
CreateSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
|
287
290
|
CreateSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
291
|
+
CreateSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
288
292
|
CreateSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
289
293
|
CreateSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
290
294
|
CreateSourceLocationResponse.struct_class = Types::CreateSourceLocationResponse
|
@@ -397,6 +401,7 @@ module Aws::MediaTailor
|
|
397
401
|
DescribeSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
398
402
|
DescribeSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
|
399
403
|
DescribeSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
404
|
+
DescribeSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
400
405
|
DescribeSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
401
406
|
DescribeSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
402
407
|
DescribeSourceLocationResponse.struct_class = Types::DescribeSourceLocationResponse
|
@@ -674,6 +679,10 @@ module Aws::MediaTailor
|
|
674
679
|
SecretsManagerAccessTokenConfiguration.add_member(:secret_string_key, Shapes::ShapeRef.new(shape: __string, location_name: "SecretStringKey"))
|
675
680
|
SecretsManagerAccessTokenConfiguration.struct_class = Types::SecretsManagerAccessTokenConfiguration
|
676
681
|
|
682
|
+
SegmentDeliveryConfiguration.add_member(:base_url, Shapes::ShapeRef.new(shape: __string, location_name: "BaseUrl"))
|
683
|
+
SegmentDeliveryConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
684
|
+
SegmentDeliveryConfiguration.struct_class = Types::SegmentDeliveryConfiguration
|
685
|
+
|
677
686
|
SlateSource.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
678
687
|
SlateSource.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
|
679
688
|
SlateSource.struct_class = Types::SlateSource
|
@@ -684,6 +693,7 @@ module Aws::MediaTailor
|
|
684
693
|
SourceLocation.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
685
694
|
SourceLocation.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
|
686
695
|
SourceLocation.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
696
|
+
SourceLocation.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
687
697
|
SourceLocation.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
|
688
698
|
SourceLocation.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
689
699
|
SourceLocation.struct_class = Types::SourceLocation
|
@@ -719,6 +729,7 @@ module Aws::MediaTailor
|
|
719
729
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
720
730
|
|
721
731
|
UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
|
732
|
+
UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
722
733
|
UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
|
723
734
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
724
735
|
|
@@ -736,6 +747,7 @@ module Aws::MediaTailor
|
|
736
747
|
UpdateSourceLocationRequest.add_member(:access_configuration, Shapes::ShapeRef.new(shape: AccessConfiguration, location_name: "AccessConfiguration"))
|
737
748
|
UpdateSourceLocationRequest.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
738
749
|
UpdateSourceLocationRequest.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, required: true, location_name: "HttpConfiguration"))
|
750
|
+
UpdateSourceLocationRequest.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
739
751
|
UpdateSourceLocationRequest.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceLocationName"))
|
740
752
|
UpdateSourceLocationRequest.struct_class = Types::UpdateSourceLocationRequest
|
741
753
|
|
@@ -745,6 +757,7 @@ module Aws::MediaTailor
|
|
745
757
|
UpdateSourceLocationResponse.add_member(:default_segment_delivery_configuration, Shapes::ShapeRef.new(shape: DefaultSegmentDeliveryConfiguration, location_name: "DefaultSegmentDeliveryConfiguration"))
|
746
758
|
UpdateSourceLocationResponse.add_member(:http_configuration, Shapes::ShapeRef.new(shape: HttpConfiguration, location_name: "HttpConfiguration"))
|
747
759
|
UpdateSourceLocationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
|
760
|
+
UpdateSourceLocationResponse.add_member(:segment_delivery_configurations, Shapes::ShapeRef.new(shape: __listOfSegmentDeliveryConfiguration, location_name: "SegmentDeliveryConfigurations"))
|
748
761
|
UpdateSourceLocationResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
749
762
|
UpdateSourceLocationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
750
763
|
UpdateSourceLocationResponse.struct_class = Types::UpdateSourceLocationResponse
|
@@ -788,6 +801,8 @@ module Aws::MediaTailor
|
|
788
801
|
|
789
802
|
__listOfScheduleEntry.member = Shapes::ShapeRef.new(shape: ScheduleEntry)
|
790
803
|
|
804
|
+
__listOfSegmentDeliveryConfiguration.member = Shapes::ShapeRef.new(shape: SegmentDeliveryConfiguration)
|
805
|
+
|
791
806
|
__listOfSourceLocation.member = Shapes::ShapeRef.new(shape: SourceLocation)
|
792
807
|
|
793
808
|
__listOfVodSource.member = Shapes::ShapeRef.new(shape: VodSource)
|
@@ -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
|
@@ -840,6 +842,12 @@ module Aws::MediaTailor
|
|
840
842
|
# http_configuration: { # required
|
841
843
|
# base_url: "__string", # required
|
842
844
|
# },
|
845
|
+
# segment_delivery_configurations: [
|
846
|
+
# {
|
847
|
+
# base_url: "__string",
|
848
|
+
# name: "__string",
|
849
|
+
# },
|
850
|
+
# ],
|
843
851
|
# source_location_name: "__string", # required
|
844
852
|
# tags: {
|
845
853
|
# "__string" => "__string",
|
@@ -859,6 +867,11 @@ module Aws::MediaTailor
|
|
859
867
|
# The source's HTTP package configurations.
|
860
868
|
# @return [Types::HttpConfiguration]
|
861
869
|
#
|
870
|
+
# @!attribute [rw] segment_delivery_configurations
|
871
|
+
# An array of segment delivery configurations for this source
|
872
|
+
# location.
|
873
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
874
|
+
#
|
862
875
|
# @!attribute [rw] source_location_name
|
863
876
|
# @return [String]
|
864
877
|
#
|
@@ -872,6 +885,7 @@ module Aws::MediaTailor
|
|
872
885
|
:access_configuration,
|
873
886
|
:default_segment_delivery_configuration,
|
874
887
|
:http_configuration,
|
888
|
+
:segment_delivery_configurations,
|
875
889
|
:source_location_name,
|
876
890
|
:tags)
|
877
891
|
SENSITIVE = []
|
@@ -905,6 +919,9 @@ module Aws::MediaTailor
|
|
905
919
|
# @!attribute [rw] last_modified_time
|
906
920
|
# @return [Time]
|
907
921
|
#
|
922
|
+
# @!attribute [rw] segment_delivery_configurations
|
923
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
924
|
+
#
|
908
925
|
# @!attribute [rw] source_location_name
|
909
926
|
# @return [String]
|
910
927
|
#
|
@@ -920,6 +937,7 @@ module Aws::MediaTailor
|
|
920
937
|
:default_segment_delivery_configuration,
|
921
938
|
:http_configuration,
|
922
939
|
:last_modified_time,
|
940
|
+
:segment_delivery_configurations,
|
923
941
|
:source_location_name,
|
924
942
|
:tags)
|
925
943
|
SENSITIVE = []
|
@@ -1538,6 +1556,11 @@ module Aws::MediaTailor
|
|
1538
1556
|
# modified.
|
1539
1557
|
# @return [Time]
|
1540
1558
|
#
|
1559
|
+
# @!attribute [rw] segment_delivery_configurations
|
1560
|
+
# An array of segment delivery configurations for this source
|
1561
|
+
# location.
|
1562
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
1563
|
+
#
|
1541
1564
|
# @!attribute [rw] source_location_name
|
1542
1565
|
# The name of the source location.
|
1543
1566
|
# @return [String]
|
@@ -1555,6 +1578,7 @@ module Aws::MediaTailor
|
|
1555
1578
|
:default_segment_delivery_configuration,
|
1556
1579
|
:http_configuration,
|
1557
1580
|
:last_modified_time,
|
1581
|
+
:segment_delivery_configurations,
|
1558
1582
|
:source_location_name,
|
1559
1583
|
:tags)
|
1560
1584
|
SENSITIVE = []
|
@@ -3328,6 +3352,37 @@ module Aws::MediaTailor
|
|
3328
3352
|
include Aws::Structure
|
3329
3353
|
end
|
3330
3354
|
|
3355
|
+
# @note When making an API call, you may pass SegmentDeliveryConfiguration
|
3356
|
+
# data as a hash:
|
3357
|
+
#
|
3358
|
+
# {
|
3359
|
+
# base_url: "__string",
|
3360
|
+
# name: "__string",
|
3361
|
+
# }
|
3362
|
+
#
|
3363
|
+
# @!attribute [rw] base_url
|
3364
|
+
# The base URL of the host or path of the segment delivery server that
|
3365
|
+
# you're using to serve segments. This is typically a content
|
3366
|
+
# delivery network (CDN). The URL can be absolute or relative. To use
|
3367
|
+
# an absolute URL include the protocol, such as
|
3368
|
+
# https://example.com/some/path. To use a relative URL specify the
|
3369
|
+
# relative path, such as /some/path.
|
3370
|
+
# @return [String]
|
3371
|
+
#
|
3372
|
+
# @!attribute [rw] name
|
3373
|
+
# A unique identifier used to distinguish between multiple segment
|
3374
|
+
# delivery configurations in a source location.
|
3375
|
+
# @return [String]
|
3376
|
+
#
|
3377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentDeliveryConfiguration AWS API Documentation
|
3378
|
+
#
|
3379
|
+
class SegmentDeliveryConfiguration < Struct.new(
|
3380
|
+
:base_url,
|
3381
|
+
:name)
|
3382
|
+
SENSITIVE = []
|
3383
|
+
include Aws::Structure
|
3384
|
+
end
|
3385
|
+
|
3331
3386
|
# Slate VOD source configuration.
|
3332
3387
|
#
|
3333
3388
|
# @note When making an API call, you may pass SlateSource
|
@@ -3384,6 +3439,11 @@ module Aws::MediaTailor
|
|
3384
3439
|
# modified.
|
3385
3440
|
# @return [Time]
|
3386
3441
|
#
|
3442
|
+
# @!attribute [rw] segment_delivery_configurations
|
3443
|
+
# An array of segment delivery configurations for this source
|
3444
|
+
# location.
|
3445
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3446
|
+
#
|
3387
3447
|
# @!attribute [rw] source_location_name
|
3388
3448
|
# The name of the source location.
|
3389
3449
|
# @return [String]
|
@@ -3401,6 +3461,7 @@ module Aws::MediaTailor
|
|
3401
3461
|
:default_segment_delivery_configuration,
|
3402
3462
|
:http_configuration,
|
3403
3463
|
:last_modified_time,
|
3464
|
+
:segment_delivery_configurations,
|
3404
3465
|
:source_location_name,
|
3405
3466
|
:tags)
|
3406
3467
|
SENSITIVE = []
|
@@ -3611,6 +3672,10 @@ module Aws::MediaTailor
|
|
3611
3672
|
#
|
3612
3673
|
# {
|
3613
3674
|
# channel_name: "__string", # required
|
3675
|
+
# filler_slate: {
|
3676
|
+
# source_location_name: "__string",
|
3677
|
+
# vod_source_name: "__string",
|
3678
|
+
# },
|
3614
3679
|
# outputs: [ # required
|
3615
3680
|
# {
|
3616
3681
|
# dash_playlist_settings: {
|
@@ -3631,6 +3696,13 @@ module Aws::MediaTailor
|
|
3631
3696
|
# @!attribute [rw] channel_name
|
3632
3697
|
# @return [String]
|
3633
3698
|
#
|
3699
|
+
# @!attribute [rw] filler_slate
|
3700
|
+
# The slate used to fill gaps between programs in the schedule. You
|
3701
|
+
# must configure filler slate if your channel uses the LINEAR
|
3702
|
+
# PlaybackMode. MediaTailor doesn't support filler slate for channels
|
3703
|
+
# using the LOOP PlaybackMode.
|
3704
|
+
# @return [Types::SlateSource]
|
3705
|
+
#
|
3634
3706
|
# @!attribute [rw] outputs
|
3635
3707
|
# The channel's output properties.
|
3636
3708
|
# @return [Array<Types::RequestOutputItem>]
|
@@ -3639,6 +3711,7 @@ module Aws::MediaTailor
|
|
3639
3711
|
#
|
3640
3712
|
class UpdateChannelRequest < Struct.new(
|
3641
3713
|
:channel_name,
|
3714
|
+
:filler_slate,
|
3642
3715
|
:outputs)
|
3643
3716
|
SENSITIVE = []
|
3644
3717
|
include Aws::Structure
|
@@ -3708,6 +3781,12 @@ module Aws::MediaTailor
|
|
3708
3781
|
# http_configuration: { # required
|
3709
3782
|
# base_url: "__string", # required
|
3710
3783
|
# },
|
3784
|
+
# segment_delivery_configurations: [
|
3785
|
+
# {
|
3786
|
+
# base_url: "__string",
|
3787
|
+
# name: "__string",
|
3788
|
+
# },
|
3789
|
+
# ],
|
3711
3790
|
# source_location_name: "__string", # required
|
3712
3791
|
# }
|
3713
3792
|
#
|
@@ -3724,6 +3803,11 @@ module Aws::MediaTailor
|
|
3724
3803
|
# The HTTP configuration for the source location.
|
3725
3804
|
# @return [Types::HttpConfiguration]
|
3726
3805
|
#
|
3806
|
+
# @!attribute [rw] segment_delivery_configurations
|
3807
|
+
# An array of segment delivery configurations for this source
|
3808
|
+
# location.
|
3809
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3810
|
+
#
|
3727
3811
|
# @!attribute [rw] source_location_name
|
3728
3812
|
# @return [String]
|
3729
3813
|
#
|
@@ -3733,6 +3817,7 @@ module Aws::MediaTailor
|
|
3733
3817
|
:access_configuration,
|
3734
3818
|
:default_segment_delivery_configuration,
|
3735
3819
|
:http_configuration,
|
3820
|
+
:segment_delivery_configurations,
|
3736
3821
|
:source_location_name)
|
3737
3822
|
SENSITIVE = []
|
3738
3823
|
include Aws::Structure
|
@@ -3765,6 +3850,9 @@ module Aws::MediaTailor
|
|
3765
3850
|
# @!attribute [rw] last_modified_time
|
3766
3851
|
# @return [Time]
|
3767
3852
|
#
|
3853
|
+
# @!attribute [rw] segment_delivery_configurations
|
3854
|
+
# @return [Array<Types::SegmentDeliveryConfiguration>]
|
3855
|
+
#
|
3768
3856
|
# @!attribute [rw] source_location_name
|
3769
3857
|
# @return [String]
|
3770
3858
|
#
|
@@ -3780,6 +3868,7 @@ module Aws::MediaTailor
|
|
3780
3868
|
:default_segment_delivery_configuration,
|
3781
3869
|
:http_configuration,
|
3782
3870
|
:last_modified_time,
|
3871
|
+
:segment_delivery_configurations,
|
3783
3872
|
:source_location_name,
|
3784
3873
|
:tags)
|
3785
3874
|
SENSITIVE = []
|
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.52.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-20 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
|