aws-sdk-mediatailor 1.70.0 → 1.72.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: e31292cddaa64c3b687eeef2ceb6d152bb90dbe052f5613d7133588178f7355c
4
- data.tar.gz: c74d38d67189e6dd35ccac24f006d0f8a561ed6844993ce8a4a3329c59b3c1e7
3
+ metadata.gz: 16fdcda8b694d481949e3713e43108964dae5ac4edb0480ae9eadfce568954c2
4
+ data.tar.gz: ee3e651ecdb1d4a181ba4e6cec98edd2f4e4958ab15f420c7a3993a762b5c815
5
5
  SHA512:
6
- metadata.gz: 8e3df0a0b8c9a67194efe004c66ead8641a3e864b7a5751e811a2e54c1ed6dc972386d0919ba0de78c587cb261645882ce7357dc2ee69924c2627615ed715ccf
7
- data.tar.gz: f03312b7152476e34da9296208501037164c2b4025e4ae084a4b3260f8346581d58d219cdbc149e0c585ac136f8bfca04cc0cfab9e61f4b0faf8abb47782ee0e
6
+ metadata.gz: 7e9180ff989a1603e749515640bb622585d728f5201e131ed9a379f27652ada12a07c359b9550deee89e8913cf287302413a904761120d843bdb83069ec38c4c
7
+ data.tar.gz: 7719cbd4649c5628c6a066dabf024e4b907c39258baa61170040451a06e506eb9a7bf2b806285e93e1158672fece20508aa3c38980c092ca9678c14b2dd44402
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2023-11-14)
5
+ ------------------
6
+
7
+ * Feature - Removed unnecessary default values.
8
+
9
+ 1.71.0 (2023-10-04)
10
+ ------------------
11
+
12
+ * Feature - Updates DescribeVodSource to include a list of ad break opportunities in the response
13
+
4
14
  1.70.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.72.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.72.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"))
@@ -32,7 +32,7 @@ module Aws::MediaTailor
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://api.mediatailor-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -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.72.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.72.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-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core