aws-sdk-mediatailor 1.69.0 → 1.71.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: a02d9095c49f5913c20ca66ac5b988754d88803200f6261e387811971e12167d
4
- data.tar.gz: 6b9a34e9363068aace6759e0858a69c53f037c132618cc9c3211a970be7ef6f6
3
+ metadata.gz: 6d3306e25a997d1cb11197c948f4aaf0a40f6945f88732cd8fbbfb94f0e7e8cf
4
+ data.tar.gz: 9f9bedae357f4b2a2555f47d5206205eb8226fdf482174f996f7f230d4d21668
5
5
  SHA512:
6
- metadata.gz: 41b363c7d08972323f65bac6781ba071507f453a1d10be6f69ff13a2eaeeb138c936b94bfba95e2962a08caca0f91c8aa651013cc68cf9c7c4fcf670e6b9eba0
7
- data.tar.gz: 54d90420ebfb23a58b807c738a759a1f55a76c572d745c1d7ee24b5c131387db9914499969ad2dade032667c813e8a2b018c160363d697d0e472b6026abb29a4
6
+ metadata.gz: e31dc77711fe139d07595c9edbb4fc5c185fd16151343ada01556bf18848e68164b3e2901bc7dc8a5cda0a74de71a78fb17c77014c86b7f9ad7bf62947891b22
7
+ data.tar.gz: 772b662bd17c4aaef4a60fdc99a99a36dd986e4d0bfb97a4c79804904f13c7a258b8ed93e9082daff47842cf4434ef9e5beab92cb8f267406a68694128735db0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2023-10-04)
5
+ ------------------
6
+
7
+ * Feature - Updates DescribeVodSource to include a list of ad break opportunities in the response
8
+
9
+ 1.70.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.69.0 (2023-08-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.71.0
@@ -1553,6 +1553,7 @@ module Aws::MediaTailor
1553
1553
  #
1554
1554
  # @return [Types::DescribeVodSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1555
1555
  #
1556
+ # * {Types::DescribeVodSourceResponse#ad_break_opportunities #ad_break_opportunities} => Array<Types::AdBreakOpportunity>
1556
1557
  # * {Types::DescribeVodSourceResponse#arn #arn} => String
1557
1558
  # * {Types::DescribeVodSourceResponse#creation_time #creation_time} => Time
1558
1559
  # * {Types::DescribeVodSourceResponse#http_package_configurations #http_package_configurations} => Array<Types::HttpPackageConfiguration>
@@ -1570,6 +1571,8 @@ module Aws::MediaTailor
1570
1571
  #
1571
1572
  # @example Response structure
1572
1573
  #
1574
+ # resp.ad_break_opportunities #=> Array
1575
+ # resp.ad_break_opportunities[0].offset_millis #=> Integer
1573
1576
  # resp.arn #=> String
1574
1577
  # resp.creation_time #=> Time
1575
1578
  # resp.http_package_configurations #=> Array
@@ -3100,7 +3103,7 @@ module Aws::MediaTailor
3100
3103
  params: params,
3101
3104
  config: config)
3102
3105
  context[:gem_name] = 'aws-sdk-mediatailor'
3103
- context[:gem_version] = '1.69.0'
3106
+ context[:gem_version] = '1.71.0'
3104
3107
  Seahorse::Client::Request.new(handlers, context)
3105
3108
  end
3106
3109
 
@@ -17,6 +17,8 @@ module Aws::MediaTailor
17
17
  AccessType = Shapes::StringShape.new(name: 'AccessType')
18
18
  AdBreak = Shapes::StructureShape.new(name: 'AdBreak')
19
19
  AdBreakMetadataList = Shapes::ListShape.new(name: 'AdBreakMetadataList')
20
+ AdBreakOpportunities = Shapes::ListShape.new(name: 'AdBreakOpportunities')
21
+ AdBreakOpportunity = Shapes::StructureShape.new(name: 'AdBreakOpportunity')
20
22
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
21
23
  AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
22
24
  Alert = Shapes::StructureShape.new(name: 'Alert')
@@ -208,6 +210,11 @@ module Aws::MediaTailor
208
210
 
209
211
  AdBreakMetadataList.member = Shapes::ShapeRef.new(shape: KeyValuePair)
210
212
 
213
+ AdBreakOpportunities.member = Shapes::ShapeRef.new(shape: AdBreakOpportunity)
214
+
215
+ AdBreakOpportunity.add_member(:offset_millis, Shapes::ShapeRef.new(shape: __long, required: true, location_name: "OffsetMillis"))
216
+ AdBreakOpportunity.struct_class = Types::AdBreakOpportunity
217
+
211
218
  AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
212
219
  AdMarkerPassthrough.struct_class = Types::AdMarkerPassthrough
213
220
 
@@ -509,6 +516,7 @@ module Aws::MediaTailor
509
516
  DescribeVodSourceRequest.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "VodSourceName"))
510
517
  DescribeVodSourceRequest.struct_class = Types::DescribeVodSourceRequest
511
518
 
519
+ DescribeVodSourceResponse.add_member(:ad_break_opportunities, Shapes::ShapeRef.new(shape: AdBreakOpportunities, location_name: "AdBreakOpportunities"))
512
520
  DescribeVodSourceResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
513
521
  DescribeVodSourceResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
514
522
  DescribeVodSourceResponse.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, location_name: "HttpPackageConfigurations"))
@@ -146,6 +146,22 @@ module Aws::MediaTailor
146
146
  include Aws::Structure
147
147
  end
148
148
 
149
+ # A location at which a zero-duration ad marker was detected in a VOD
150
+ # source manifest.
151
+ #
152
+ # @!attribute [rw] offset_millis
153
+ # The offset in milliseconds from the start of the VOD source at which
154
+ # an ad marker was detected.
155
+ # @return [Integer]
156
+ #
157
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreakOpportunity AWS API Documentation
158
+ #
159
+ class AdBreakOpportunity < Struct.new(
160
+ :offset_millis)
161
+ SENSITIVE = []
162
+ include Aws::Structure
163
+ end
164
+
149
165
  # For HLS, when set to `true`, MediaTailor passes through
150
166
  # `EXT-X-CUE-IN`, `EXT-X-CUE-OUT`, and `EXT-X-SPLICEPOINT-SCTE35` ad
151
167
  # markers from the origin manifest to the MediaTailor personalized
@@ -1748,6 +1764,10 @@ module Aws::MediaTailor
1748
1764
  include Aws::Structure
1749
1765
  end
1750
1766
 
1767
+ # @!attribute [rw] ad_break_opportunities
1768
+ # The ad break opportunities within the VOD source.
1769
+ # @return [Array<Types::AdBreakOpportunity>]
1770
+ #
1751
1771
  # @!attribute [rw] arn
1752
1772
  # The ARN of the VOD source.
1753
1773
  # @return [String]
@@ -1786,6 +1806,7 @@ module Aws::MediaTailor
1786
1806
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeVodSourceResponse AWS API Documentation
1787
1807
  #
1788
1808
  class DescribeVodSourceResponse < Struct.new(
1809
+ :ad_break_opportunities,
1789
1810
  :arn,
1790
1811
  :creation_time,
1791
1812
  :http_package_configurations,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.69.0'
55
+ GEM_VERSION = '1.71.0'
56
56
 
57
57
  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.69.0
4
+ version: 1.71.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: 2023-08-24 00:00:00.000000000 Z
11
+ date: 2023-10-04 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.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement