aws-sdk-mediatailor 1.13.0 → 1.14.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/lib/aws-sdk-mediatailor.rb +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +48 -1
- data/lib/aws-sdk-mediatailor/client_api.rb +7 -1
- data/lib/aws-sdk-mediatailor/types.rb +104 -78
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e4e0cf7d80912edf270c4ad8ba7a164201c8895
|
4
|
+
data.tar.gz: 2305046789a61c8a84acf69e0e0e3bc136f6ca5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 791b73fe6a8dad6ff8968c5e18f53399b2357b70498ef1893a6e9a01768ad1570c7f447264f302cedd971c23305518cded89471fa0346bdeb83a457464b1b81a
|
7
|
+
data.tar.gz: dd2b793ec9d5a5effeeace22c2338c31e2fef6b4b59f3f4b4259009546dcbe87dc76c4a9e0b7df3884d79ceb19a94c66f900385cbeb970b891abfdbaec2b58fd
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
@@ -199,6 +199,49 @@ module Aws::MediaTailor
|
|
199
199
|
# When `true`, request parameters are validated before
|
200
200
|
# sending the request.
|
201
201
|
#
|
202
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
203
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
204
|
+
#
|
205
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
206
|
+
# seconds to wait when opening a HTTP session before rasing a
|
207
|
+
# `Timeout::Error`.
|
208
|
+
#
|
209
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
210
|
+
# number of seconds to wait for response data. This value can
|
211
|
+
# safely be set
|
212
|
+
# per-request on the session yeidled by {#session_for}.
|
213
|
+
#
|
214
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
215
|
+
# seconds a connection is allowed to sit idble before it is
|
216
|
+
# considered stale. Stale connections are closed and removed
|
217
|
+
# from the pool before making a request.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
220
|
+
# seconds to wait for a 100-continue response before sending the
|
221
|
+
# request body. This option has no effect unless the request has
|
222
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
223
|
+
# disables this behaviour. This value can safely be set per
|
224
|
+
# request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
227
|
+
# HTTP debug output will be sent to the `:logger`.
|
228
|
+
#
|
229
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
230
|
+
# SSL peer certificates are verified when establishing a
|
231
|
+
# connection.
|
232
|
+
#
|
233
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
234
|
+
# certificate authority bundle file that should be used when
|
235
|
+
# verifying peer certificates. If you do not pass
|
236
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
240
|
+
# directory that contains the unbundled SSL certificate
|
241
|
+
# authority files for verifying peer certificates. If you do
|
242
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
243
|
+
# system default will be used if available.
|
244
|
+
#
|
202
245
|
def initialize(*args)
|
203
246
|
super
|
204
247
|
end
|
@@ -258,6 +301,7 @@ module Aws::MediaTailor
|
|
258
301
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
259
302
|
# resp.dash_configuration.manifest_endpoint_prefix #=> String
|
260
303
|
# resp.dash_configuration.mpd_location #=> String
|
304
|
+
# resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
261
305
|
# resp.hls_configuration.manifest_endpoint_prefix #=> String
|
262
306
|
# resp.name #=> String
|
263
307
|
# resp.playback_configuration_arn #=> String
|
@@ -309,6 +353,7 @@ module Aws::MediaTailor
|
|
309
353
|
# resp.items[0].cdn_configuration.content_segment_url_prefix #=> String
|
310
354
|
# resp.items[0].dash_configuration.manifest_endpoint_prefix #=> String
|
311
355
|
# resp.items[0].dash_configuration.mpd_location #=> String
|
356
|
+
# resp.items[0].dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
312
357
|
# resp.items[0].hls_configuration.manifest_endpoint_prefix #=> String
|
313
358
|
# resp.items[0].name #=> String
|
314
359
|
# resp.items[0].playback_configuration_arn #=> String
|
@@ -426,6 +471,7 @@ module Aws::MediaTailor
|
|
426
471
|
# },
|
427
472
|
# dash_configuration: {
|
428
473
|
# mpd_location: "__string",
|
474
|
+
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
429
475
|
# },
|
430
476
|
# name: "__string",
|
431
477
|
# slate_ad_url: "__string",
|
@@ -443,6 +489,7 @@ module Aws::MediaTailor
|
|
443
489
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
444
490
|
# resp.dash_configuration.manifest_endpoint_prefix #=> String
|
445
491
|
# resp.dash_configuration.mpd_location #=> String
|
492
|
+
# resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
446
493
|
# resp.hls_configuration.manifest_endpoint_prefix #=> String
|
447
494
|
# resp.name #=> String
|
448
495
|
# resp.playback_configuration_arn #=> String
|
@@ -528,7 +575,7 @@ module Aws::MediaTailor
|
|
528
575
|
params: params,
|
529
576
|
config: config)
|
530
577
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
531
|
-
context[:gem_version] = '1.
|
578
|
+
context[:gem_version] = '1.14.0'
|
532
579
|
Seahorse::Client::Request.new(handlers, context)
|
533
580
|
end
|
534
581
|
|
@@ -16,6 +16,7 @@ module Aws::MediaTailor
|
|
16
16
|
DashConfiguration = Shapes::StructureShape.new(name: 'DashConfiguration')
|
17
17
|
DashConfigurationForPut = Shapes::StructureShape.new(name: 'DashConfigurationForPut')
|
18
18
|
DeletePlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'DeletePlaybackConfigurationRequest')
|
19
|
+
DeletePlaybackConfigurationResponse = Shapes::StructureShape.new(name: 'DeletePlaybackConfigurationResponse')
|
19
20
|
GetPlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'GetPlaybackConfigurationRequest')
|
20
21
|
GetPlaybackConfigurationResponse = Shapes::StructureShape.new(name: 'GetPlaybackConfigurationResponse')
|
21
22
|
HlsConfiguration = Shapes::StructureShape.new(name: 'HlsConfiguration')
|
@@ -23,6 +24,7 @@ module Aws::MediaTailor
|
|
23
24
|
ListPlaybackConfigurationsResponse = Shapes::StructureShape.new(name: 'ListPlaybackConfigurationsResponse')
|
24
25
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
25
26
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
27
|
+
OriginManifestType = Shapes::StringShape.new(name: 'OriginManifestType')
|
26
28
|
PlaybackConfiguration = Shapes::StructureShape.new(name: 'PlaybackConfiguration')
|
27
29
|
PutPlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'PutPlaybackConfigurationRequest')
|
28
30
|
PutPlaybackConfigurationResponse = Shapes::StructureShape.new(name: 'PutPlaybackConfigurationResponse')
|
@@ -47,14 +49,18 @@ module Aws::MediaTailor
|
|
47
49
|
|
48
50
|
DashConfiguration.add_member(:manifest_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ManifestEndpointPrefix"))
|
49
51
|
DashConfiguration.add_member(:mpd_location, Shapes::ShapeRef.new(shape: __string, location_name: "MpdLocation"))
|
52
|
+
DashConfiguration.add_member(:origin_manifest_type, Shapes::ShapeRef.new(shape: OriginManifestType, location_name: "OriginManifestType"))
|
50
53
|
DashConfiguration.struct_class = Types::DashConfiguration
|
51
54
|
|
52
55
|
DashConfigurationForPut.add_member(:mpd_location, Shapes::ShapeRef.new(shape: __string, location_name: "MpdLocation"))
|
56
|
+
DashConfigurationForPut.add_member(:origin_manifest_type, Shapes::ShapeRef.new(shape: OriginManifestType, location_name: "OriginManifestType"))
|
53
57
|
DashConfigurationForPut.struct_class = Types::DashConfigurationForPut
|
54
58
|
|
55
59
|
DeletePlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "Name"))
|
56
60
|
DeletePlaybackConfigurationRequest.struct_class = Types::DeletePlaybackConfigurationRequest
|
57
61
|
|
62
|
+
DeletePlaybackConfigurationResponse.struct_class = Types::DeletePlaybackConfigurationResponse
|
63
|
+
|
58
64
|
GetPlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "Name"))
|
59
65
|
GetPlaybackConfigurationRequest.struct_class = Types::GetPlaybackConfigurationRequest
|
60
66
|
|
@@ -169,7 +175,7 @@ module Aws::MediaTailor
|
|
169
175
|
o.http_method = "DELETE"
|
170
176
|
o.http_request_uri = "/playbackConfiguration/{Name}"
|
171
177
|
o.input = Shapes::ShapeRef.new(shape: DeletePlaybackConfigurationRequest)
|
172
|
-
o.output = Shapes::ShapeRef.new(shape:
|
178
|
+
o.output = Shapes::ShapeRef.new(shape: DeletePlaybackConfigurationResponse)
|
173
179
|
end)
|
174
180
|
|
175
181
|
api.add_operation(:get_playback_configuration, Seahorse::Model::Operation.new.tap do |o|
|
@@ -47,20 +47,6 @@ module Aws::MediaTailor
|
|
47
47
|
include Aws::Structure
|
48
48
|
end
|
49
49
|
|
50
|
-
# The configuration for HLS content.
|
51
|
-
#
|
52
|
-
# @!attribute [rw] manifest_endpoint_prefix
|
53
|
-
# The URL that is used to initiate a playback session for devices that
|
54
|
-
# support Apple HLS. The session uses server-side reporting.
|
55
|
-
# @return [String]
|
56
|
-
#
|
57
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsConfiguration AWS API Documentation
|
58
|
-
#
|
59
|
-
class HlsConfiguration < Struct.new(
|
60
|
-
:manifest_endpoint_prefix)
|
61
|
-
include Aws::Structure
|
62
|
-
end
|
63
|
-
|
64
50
|
# The configuration for DASH content.
|
65
51
|
#
|
66
52
|
# @!attribute [rw] manifest_endpoint_prefix
|
@@ -74,18 +60,28 @@ module Aws::MediaTailor
|
|
74
60
|
# tag in DASH manifests. MediaTailor populates the Location tag with
|
75
61
|
# the URL for manifest update requests, to be used by players that
|
76
62
|
# don't support sticky redirects. Disable this if you have CDN
|
77
|
-
# routing rules set up for accessing MediaTailor manifests and you
|
78
|
-
# either using client-side reporting or your players support
|
79
|
-
# HTTP redirects. Valid values are DISABLED and EMT\_DEFAULT.
|
80
|
-
# EMT\_DEFAULT setting enables the inclusion of the tag and is the
|
63
|
+
# routing rules set up for accessing MediaTailor manifests, and you
|
64
|
+
# are either using client-side reporting or your players support
|
65
|
+
# sticky HTTP redirects. Valid values are DISABLED and EMT\_DEFAULT.
|
66
|
+
# The EMT\_DEFAULT setting enables the inclusion of the tag and is the
|
81
67
|
# default value.
|
82
68
|
# @return [String]
|
83
69
|
#
|
70
|
+
# @!attribute [rw] origin_manifest_type
|
71
|
+
# The setting that controls whether MediaTailor handles manifests from
|
72
|
+
# the origin server as multi-period manifests or single-period
|
73
|
+
# manifests. If your origin server produces single-period manifests,
|
74
|
+
# set this to SINGLE\_PERIOD. The default setting is MULTI\_PERIOD.
|
75
|
+
# For multi-period manifests, omit this setting or set it to
|
76
|
+
# MULTI\_PERIOD.
|
77
|
+
# @return [String]
|
78
|
+
#
|
84
79
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfiguration AWS API Documentation
|
85
80
|
#
|
86
81
|
class DashConfiguration < Struct.new(
|
87
82
|
:manifest_endpoint_prefix,
|
88
|
-
:mpd_location
|
83
|
+
:mpd_location,
|
84
|
+
:origin_manifest_type)
|
89
85
|
include Aws::Structure
|
90
86
|
end
|
91
87
|
|
@@ -96,6 +92,7 @@ module Aws::MediaTailor
|
|
96
92
|
#
|
97
93
|
# {
|
98
94
|
# mpd_location: "__string",
|
95
|
+
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
99
96
|
# }
|
100
97
|
#
|
101
98
|
# @!attribute [rw] mpd_location
|
@@ -103,17 +100,27 @@ module Aws::MediaTailor
|
|
103
100
|
# tag in DASH manifests. MediaTailor populates the Location tag with
|
104
101
|
# the URL for manifest update requests, to be used by players that
|
105
102
|
# don't support sticky redirects. Disable this if you have CDN
|
106
|
-
# routing rules set up for accessing MediaTailor manifests and you
|
107
|
-
# either using client-side reporting or your players support
|
108
|
-
# HTTP redirects. Valid values are DISABLED and EMT\_DEFAULT.
|
109
|
-
# EMT\_DEFAULT setting enables the inclusion of the tag and is the
|
103
|
+
# routing rules set up for accessing MediaTailor manifests, and you
|
104
|
+
# are either using client-side reporting or your players support
|
105
|
+
# sticky HTTP redirects. Valid values are DISABLED and EMT\_DEFAULT.
|
106
|
+
# The EMT\_DEFAULT setting enables the inclusion of the tag and is the
|
110
107
|
# default value.
|
111
108
|
# @return [String]
|
112
109
|
#
|
110
|
+
# @!attribute [rw] origin_manifest_type
|
111
|
+
# The setting that controls whether MediaTailor handles manifests from
|
112
|
+
# the origin server as multi-period manifests or single-period
|
113
|
+
# manifests. If your origin server produces single-period manifests,
|
114
|
+
# set this to SINGLE\_PERIOD. The default setting is MULTI\_PERIOD.
|
115
|
+
# For multi-period manifests, omit this setting or set it to
|
116
|
+
# MULTI\_PERIOD.
|
117
|
+
# @return [String]
|
118
|
+
#
|
113
119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfigurationForPut AWS API Documentation
|
114
120
|
#
|
115
121
|
class DashConfigurationForPut < Struct.new(
|
116
|
-
:mpd_location
|
122
|
+
:mpd_location,
|
123
|
+
:origin_manifest_type)
|
117
124
|
include Aws::Structure
|
118
125
|
end
|
119
126
|
|
@@ -134,6 +141,10 @@ module Aws::MediaTailor
|
|
134
141
|
include Aws::Structure
|
135
142
|
end
|
136
143
|
|
144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DeletePlaybackConfigurationResponse AWS API Documentation
|
145
|
+
#
|
146
|
+
class DeletePlaybackConfigurationResponse < Aws::EmptyStructure; end
|
147
|
+
|
137
148
|
# @note When making an API call, you may pass GetPlaybackConfigurationRequest
|
138
149
|
# data as a hash:
|
139
150
|
#
|
@@ -235,61 +246,17 @@ module Aws::MediaTailor
|
|
235
246
|
include Aws::Structure
|
236
247
|
end
|
237
248
|
|
238
|
-
#
|
239
|
-
# @return [String]
|
240
|
-
#
|
241
|
-
# @!attribute [rw] cdn_configuration
|
242
|
-
# The configuration for using a content delivery network (CDN), like
|
243
|
-
# Amazon CloudFront, for content and ad segment management.
|
244
|
-
# @return [Types::CdnConfiguration]
|
245
|
-
#
|
246
|
-
# @!attribute [rw] dash_configuration
|
247
|
-
# The configuration for DASH content.
|
248
|
-
# @return [Types::DashConfiguration]
|
249
|
-
#
|
250
|
-
# @!attribute [rw] hls_configuration
|
251
|
-
# The configuration for HLS content.
|
252
|
-
# @return [Types::HlsConfiguration]
|
253
|
-
#
|
254
|
-
# @!attribute [rw] name
|
255
|
-
# @return [String]
|
256
|
-
#
|
257
|
-
# @!attribute [rw] playback_configuration_arn
|
258
|
-
# @return [String]
|
259
|
-
#
|
260
|
-
# @!attribute [rw] playback_endpoint_prefix
|
261
|
-
# @return [String]
|
262
|
-
#
|
263
|
-
# @!attribute [rw] session_initialization_endpoint_prefix
|
264
|
-
# @return [String]
|
265
|
-
#
|
266
|
-
# @!attribute [rw] slate_ad_url
|
267
|
-
# @return [String]
|
268
|
-
#
|
269
|
-
# @!attribute [rw] tags
|
270
|
-
# @return [Hash<String,String>]
|
271
|
-
#
|
272
|
-
# @!attribute [rw] transcode_profile_name
|
273
|
-
# @return [String]
|
249
|
+
# The configuration for HLS content.
|
274
250
|
#
|
275
|
-
# @!attribute [rw]
|
251
|
+
# @!attribute [rw] manifest_endpoint_prefix
|
252
|
+
# The URL that is used to initiate a playback session for devices that
|
253
|
+
# support Apple HLS. The session uses server-side reporting.
|
276
254
|
# @return [String]
|
277
255
|
#
|
278
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/
|
256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsConfiguration AWS API Documentation
|
279
257
|
#
|
280
|
-
class
|
281
|
-
:
|
282
|
-
:cdn_configuration,
|
283
|
-
:dash_configuration,
|
284
|
-
:hls_configuration,
|
285
|
-
:name,
|
286
|
-
:playback_configuration_arn,
|
287
|
-
:playback_endpoint_prefix,
|
288
|
-
:session_initialization_endpoint_prefix,
|
289
|
-
:slate_ad_url,
|
290
|
-
:tags,
|
291
|
-
:transcode_profile_name,
|
292
|
-
:video_content_source_url)
|
258
|
+
class HlsConfiguration < Struct.new(
|
259
|
+
:manifest_endpoint_prefix)
|
293
260
|
include Aws::Structure
|
294
261
|
end
|
295
262
|
|
@@ -316,9 +283,9 @@ module Aws::MediaTailor
|
|
316
283
|
end
|
317
284
|
|
318
285
|
# @!attribute [rw] items
|
319
|
-
# Array of playback configurations. This
|
320
|
-
# configurations or a subset, depending on the settings you
|
321
|
-
# and
|
286
|
+
# Array of playback configurations. This might be all the available
|
287
|
+
# configurations or a subset, depending on the settings that you
|
288
|
+
# provide and the total number of configurations stored.
|
322
289
|
# @return [Array<Types::PlaybackConfiguration>]
|
323
290
|
#
|
324
291
|
# @!attribute [rw] next_token
|
@@ -362,6 +329,64 @@ module Aws::MediaTailor
|
|
362
329
|
include Aws::Structure
|
363
330
|
end
|
364
331
|
|
332
|
+
# @!attribute [rw] ad_decision_server_url
|
333
|
+
# @return [String]
|
334
|
+
#
|
335
|
+
# @!attribute [rw] cdn_configuration
|
336
|
+
# The configuration for using a content delivery network (CDN), like
|
337
|
+
# Amazon CloudFront, for content and ad segment management.
|
338
|
+
# @return [Types::CdnConfiguration]
|
339
|
+
#
|
340
|
+
# @!attribute [rw] dash_configuration
|
341
|
+
# The configuration for DASH content.
|
342
|
+
# @return [Types::DashConfiguration]
|
343
|
+
#
|
344
|
+
# @!attribute [rw] hls_configuration
|
345
|
+
# The configuration for HLS content.
|
346
|
+
# @return [Types::HlsConfiguration]
|
347
|
+
#
|
348
|
+
# @!attribute [rw] name
|
349
|
+
# @return [String]
|
350
|
+
#
|
351
|
+
# @!attribute [rw] playback_configuration_arn
|
352
|
+
# @return [String]
|
353
|
+
#
|
354
|
+
# @!attribute [rw] playback_endpoint_prefix
|
355
|
+
# @return [String]
|
356
|
+
#
|
357
|
+
# @!attribute [rw] session_initialization_endpoint_prefix
|
358
|
+
# @return [String]
|
359
|
+
#
|
360
|
+
# @!attribute [rw] slate_ad_url
|
361
|
+
# @return [String]
|
362
|
+
#
|
363
|
+
# @!attribute [rw] tags
|
364
|
+
# @return [Hash<String,String>]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] transcode_profile_name
|
367
|
+
# @return [String]
|
368
|
+
#
|
369
|
+
# @!attribute [rw] video_content_source_url
|
370
|
+
# @return [String]
|
371
|
+
#
|
372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PlaybackConfiguration AWS API Documentation
|
373
|
+
#
|
374
|
+
class PlaybackConfiguration < Struct.new(
|
375
|
+
:ad_decision_server_url,
|
376
|
+
:cdn_configuration,
|
377
|
+
:dash_configuration,
|
378
|
+
:hls_configuration,
|
379
|
+
:name,
|
380
|
+
:playback_configuration_arn,
|
381
|
+
:playback_endpoint_prefix,
|
382
|
+
:session_initialization_endpoint_prefix,
|
383
|
+
:slate_ad_url,
|
384
|
+
:tags,
|
385
|
+
:transcode_profile_name,
|
386
|
+
:video_content_source_url)
|
387
|
+
include Aws::Structure
|
388
|
+
end
|
389
|
+
|
365
390
|
# @note When making an API call, you may pass PutPlaybackConfigurationRequest
|
366
391
|
# data as a hash:
|
367
392
|
#
|
@@ -373,6 +398,7 @@ module Aws::MediaTailor
|
|
373
398
|
# },
|
374
399
|
# dash_configuration: {
|
375
400
|
# mpd_location: "__string",
|
401
|
+
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
376
402
|
# },
|
377
403
|
# name: "__string",
|
378
404
|
# slate_ad_url: "__string",
|
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.14.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: 2019-
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -59,7 +59,7 @@ files:
|
|
59
59
|
- lib/aws-sdk-mediatailor/errors.rb
|
60
60
|
- lib/aws-sdk-mediatailor/resource.rb
|
61
61
|
- lib/aws-sdk-mediatailor/types.rb
|
62
|
-
homepage:
|
62
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
63
63
|
licenses:
|
64
64
|
- Apache-2.0
|
65
65
|
metadata:
|