aws-sdk-mediatailor 1.8.0 → 1.9.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
  SHA1:
3
- metadata.gz: 8c6a186a55174277bd57084cf6c71afb7dbb0f25
4
- data.tar.gz: 9414ea94c030e76a64c9d53f4a9104df15b84227
3
+ metadata.gz: 635a6509829c60ea04be9d283fa505e28851bb0c
4
+ data.tar.gz: fe5a53bd8de29583eaa9222f9107d76720d9249a
5
5
  SHA512:
6
- metadata.gz: 11a4830ebba69fe8efe382ef7b06d4a34275d10eb99952cb4fd23150f4baf6340fa9bc1c9a0abf5496e0ce6952f40e994cee7e0d856499d53707ff1364c37efd
7
- data.tar.gz: ce494c06ae352dc9a9852721a36779ae26c89edc4356a572255deef8ffabb9787cec1a06b2a14677498c18626f91df8684e344b3b81057afab4462e172069781
6
+ metadata.gz: 4013850f1ba1b51d172723bb7141d0ab92a796a2982ce749dee1a8542d25bba4d4fc82117c539bd81ea774e7bdfe81131a323f00a82c18e9f251b8bed505a5e0
7
+ data.tar.gz: f0eb9c48916d13b5bed90ad376268d8d487261bfea9128b5b240ca889eea403e6563a2e368e7d2866f14c960bb02193ca01b75b34af5e0ac949fb9db1776e0a3
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
42
42
  # @service
43
43
  module Aws::MediaTailor
44
44
 
45
- GEM_VERSION = '1.8.0'
45
+ GEM_VERSION = '1.9.0'
46
46
 
47
47
  end
@@ -255,6 +255,7 @@ module Aws::MediaTailor
255
255
  # resp.cdn_configuration.ad_segment_url_prefix #=> String
256
256
  # resp.cdn_configuration.content_segment_url_prefix #=> String
257
257
  # resp.dash_configuration.manifest_endpoint_prefix #=> String
258
+ # resp.dash_configuration.mpd_location #=> String
258
259
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
259
260
  # resp.name #=> String
260
261
  # resp.playback_endpoint_prefix #=> String
@@ -329,6 +330,8 @@ module Aws::MediaTailor
329
330
  # The configuration for using a content delivery network (CDN), like
330
331
  # Amazon CloudFront, for content and ad segment management.
331
332
  #
333
+ # @option params [Types::DashConfigurationForPut] :dash_configuration
334
+ #
332
335
  # @option params [String] :name
333
336
  # The identifier for the configuration.
334
337
  #
@@ -372,6 +375,9 @@ module Aws::MediaTailor
372
375
  # ad_segment_url_prefix: "__string",
373
376
  # content_segment_url_prefix: "__string",
374
377
  # },
378
+ # dash_configuration: {
379
+ # mpd_location: "__string",
380
+ # },
375
381
  # name: "__string",
376
382
  # slate_ad_url: "__string",
377
383
  # transcode_profile_name: "__string",
@@ -384,6 +390,7 @@ module Aws::MediaTailor
384
390
  # resp.cdn_configuration.ad_segment_url_prefix #=> String
385
391
  # resp.cdn_configuration.content_segment_url_prefix #=> String
386
392
  # resp.dash_configuration.manifest_endpoint_prefix #=> String
393
+ # resp.dash_configuration.mpd_location #=> String
387
394
  # resp.hls_configuration.manifest_endpoint_prefix #=> String
388
395
  # resp.name #=> String
389
396
  # resp.playback_endpoint_prefix #=> String
@@ -414,7 +421,7 @@ module Aws::MediaTailor
414
421
  params: params,
415
422
  config: config)
416
423
  context[:gem_name] = 'aws-sdk-mediatailor'
417
- context[:gem_version] = '1.8.0'
424
+ context[:gem_version] = '1.9.0'
418
425
  Seahorse::Client::Request.new(handlers, context)
419
426
  end
420
427
 
@@ -13,6 +13,7 @@ module Aws::MediaTailor
13
13
 
14
14
  CdnConfiguration = Shapes::StructureShape.new(name: 'CdnConfiguration')
15
15
  DashConfiguration = Shapes::StructureShape.new(name: 'DashConfiguration')
16
+ DashConfigurationForPut = Shapes::StructureShape.new(name: 'DashConfigurationForPut')
16
17
  DeletePlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'DeletePlaybackConfigurationRequest')
17
18
  GetPlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'GetPlaybackConfigurationRequest')
18
19
  GetPlaybackConfigurationResponse = Shapes::StructureShape.new(name: 'GetPlaybackConfigurationResponse')
@@ -37,8 +38,12 @@ module Aws::MediaTailor
37
38
  CdnConfiguration.struct_class = Types::CdnConfiguration
38
39
 
39
40
  DashConfiguration.add_member(:manifest_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ManifestEndpointPrefix"))
41
+ DashConfiguration.add_member(:mpd_location, Shapes::ShapeRef.new(shape: __string, location_name: "MpdLocation"))
40
42
  DashConfiguration.struct_class = Types::DashConfiguration
41
43
 
44
+ DashConfigurationForPut.add_member(:mpd_location, Shapes::ShapeRef.new(shape: __string, location_name: "MpdLocation"))
45
+ DashConfigurationForPut.struct_class = Types::DashConfigurationForPut
46
+
42
47
  DeletePlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "Name"))
43
48
  DeletePlaybackConfigurationRequest.struct_class = Types::DeletePlaybackConfigurationRequest
44
49
 
@@ -77,6 +82,7 @@ module Aws::MediaTailor
77
82
 
78
83
  PutPlaybackConfigurationRequest.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
79
84
  PutPlaybackConfigurationRequest.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
85
+ PutPlaybackConfigurationRequest.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfigurationForPut, location_name: "DashConfiguration"))
80
86
  PutPlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
81
87
  PutPlaybackConfigurationRequest.add_member(:slate_ad_url, Shapes::ShapeRef.new(shape: __string, location_name: "SlateAdUrl"))
82
88
  PutPlaybackConfigurationRequest.add_member(:transcode_profile_name, Shapes::ShapeRef.new(shape: __string, location_name: "TranscodeProfileName"))
@@ -68,10 +68,40 @@ module Aws::MediaTailor
68
68
  # support DASH.
69
69
  # @return [String]
70
70
  #
71
+ # @!attribute [rw] mpd_location
72
+ # The setting that controls whether MediaTailor includes the Location
73
+ # tag in DASH Manifests. MediaTailor populates the Location tag with
74
+ # the URL for manifest update requests, to be used by players that
75
+ # don't support sticky redirects. Disable this if you have CDN
76
+ # routing rules set up for accessing MediaTailor manifests and you are
77
+ # either using client-side reporting or your players support sticky
78
+ # HTTP redirects. Valid values are DISABLED and EMT\_DEFAULT. The
79
+ # EMT\_DEFAULT setting enables the inclusion of the tag and is the
80
+ # default value.
81
+ # @return [String]
82
+ #
71
83
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfiguration AWS API Documentation
72
84
  #
73
85
  class DashConfiguration < Struct.new(
74
- :manifest_endpoint_prefix)
86
+ :manifest_endpoint_prefix,
87
+ :mpd_location)
88
+ include Aws::Structure
89
+ end
90
+
91
+ # @note When making an API call, you may pass DashConfigurationForPut
92
+ # data as a hash:
93
+ #
94
+ # {
95
+ # mpd_location: "__string",
96
+ # }
97
+ #
98
+ # @!attribute [rw] mpd_location
99
+ # @return [String]
100
+ #
101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DashConfigurationForPut AWS API Documentation
102
+ #
103
+ class DashConfigurationForPut < Struct.new(
104
+ :mpd_location)
75
105
  include Aws::Structure
76
106
  end
77
107
 
@@ -262,6 +292,9 @@ module Aws::MediaTailor
262
292
  # ad_segment_url_prefix: "__string",
263
293
  # content_segment_url_prefix: "__string",
264
294
  # },
295
+ # dash_configuration: {
296
+ # mpd_location: "__string",
297
+ # },
265
298
  # name: "__string",
266
299
  # slate_ad_url: "__string",
267
300
  # transcode_profile_name: "__string",
@@ -282,6 +315,9 @@ module Aws::MediaTailor
282
315
  # Amazon CloudFront, for content and ad segment management.
283
316
  # @return [Types::CdnConfiguration]
284
317
  #
318
+ # @!attribute [rw] dash_configuration
319
+ # @return [Types::DashConfigurationForPut]
320
+ #
285
321
  # @!attribute [rw] name
286
322
  # The identifier for the configuration.
287
323
  # @return [String]
@@ -313,6 +349,7 @@ module Aws::MediaTailor
313
349
  class PutPlaybackConfigurationRequest < Struct.new(
314
350
  :ad_decision_server_url,
315
351
  :cdn_configuration,
352
+ :dash_configuration,
316
353
  :name,
317
354
  :slate_ad_url,
318
355
  :transcode_profile_name,
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.8.0
4
+ version: 1.9.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2018-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core