aws-sdk-mediatailor 1.70.0 → 1.71.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e31292cddaa64c3b687eeef2ceb6d152bb90dbe052f5613d7133588178f7355c
4
- data.tar.gz: c74d38d67189e6dd35ccac24f006d0f8a561ed6844993ce8a4a3329c59b3c1e7
3
+ metadata.gz: 6d3306e25a997d1cb11197c948f4aaf0a40f6945f88732cd8fbbfb94f0e7e8cf
4
+ data.tar.gz: 9f9bedae357f4b2a2555f47d5206205eb8226fdf482174f996f7f230d4d21668
5
5
  SHA512:
6
- metadata.gz: 8e3df0a0b8c9a67194efe004c66ead8641a3e864b7a5751e811a2e54c1ed6dc972386d0919ba0de78c587cb261645882ce7357dc2ee69924c2627615ed715ccf
7
- data.tar.gz: f03312b7152476e34da9296208501037164c2b4025e4ae084a4b3260f8346581d58d219cdbc149e0c585ac136f8bfca04cc0cfab9e61f4b0faf8abb47782ee0e
6
+ metadata.gz: e31dc77711fe139d07595c9edbb4fc5c185fd16151343ada01556bf18848e68164b3e2901bc7dc8a5cda0a74de71a78fb17c77014c86b7f9ad7bf62947891b22
7
+ data.tar.gz: 772b662bd17c4aaef4a60fdc99a99a36dd986e4d0bfb97a4c79804904f13c7a258b8ed93e9082daff47842cf4434ef9e5beab92cb8f267406a68694128735db0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.70.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.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.70.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.70.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.70.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-09-27 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