aws-sdk-mediatailor 1.66.0 → 1.68.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: b7961c05d57a99569df4aec937ab0c228760fccad2d02e66e7fd2f504a7a6ca0
4
- data.tar.gz: a129390e1ac205752a6c35251e34d539ace9827036a529684773182bc13216d2
3
+ metadata.gz: 94a56522077e7b22e91e4f34b4b3d1dd6791e428baf53f5ee20d05214e047e32
4
+ data.tar.gz: 4a6b45e8e203376299c71cbffbe9fb7b9f96e507e590763312ef733fd22680c6
5
5
  SHA512:
6
- metadata.gz: 6fd9967a53f797f4af287b16c4d3ba50898ceae87fafd74a51a8e79e040b77d236e0734fca6c90d168eb41cedd918d373871cdd01b36b6bb60617099480dfea3
7
- data.tar.gz: 778b96ad2c6e003d4d7da411d088a3f36aae6c01c2f07b027ef35bbb6335acaa6b78296600cf269cec386e16f65f0af318f641bf57d3747c437b8becb56ff46e
6
+ metadata.gz: '08ac248e039a804898135082dabd3f42ca185d8aed4b8797c532dc398cf7803eeb602bb547455731fdc2c33e03b1ed55b048f075a736ca43840186a62a52e095'
7
+ data.tar.gz: c71b61cc362036aef51e50a4816e214e3b30b7b0b31fb0f7d239b6e0848c2158b3ee2b26a01d521c8a3acb34f431dfa287c1ce8dfec435f6396d6e69069ef257
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2023-07-13)
5
+ ------------------
6
+
7
+ * Feature - Adds categories to MediaTailor channel assembly alerts
8
+
9
+ 1.67.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.66.0 (2023-07-07)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -216,6 +216,10 @@ module Aws::MediaTailor
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -1866,6 +1870,7 @@ module Aws::MediaTailor
1866
1870
  # resp.items #=> Array
1867
1871
  # resp.items[0].alert_code #=> String
1868
1872
  # resp.items[0].alert_message #=> String
1873
+ # resp.items[0].category #=> String, one of "SCHEDULING_ERROR", "PLAYBACK_WARNING", "INFO"
1869
1874
  # resp.items[0].last_modified_time #=> Time
1870
1875
  # resp.items[0].related_resource_arns #=> Array
1871
1876
  # resp.items[0].related_resource_arns[0] #=> String
@@ -3095,7 +3100,7 @@ module Aws::MediaTailor
3095
3100
  params: params,
3096
3101
  config: config)
3097
3102
  context[:gem_name] = 'aws-sdk-mediatailor'
3098
- context[:gem_version] = '1.66.0'
3103
+ context[:gem_version] = '1.68.0'
3099
3104
  Seahorse::Client::Request.new(handlers, context)
3100
3105
  end
3101
3106
 
@@ -20,6 +20,7 @@ module Aws::MediaTailor
20
20
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
21
21
  AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
22
22
  Alert = Shapes::StructureShape.new(name: 'Alert')
23
+ AlertCategory = Shapes::StringShape.new(name: 'AlertCategory')
23
24
  AvailMatchingCriteria = Shapes::StructureShape.new(name: 'AvailMatchingCriteria')
24
25
  AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
25
26
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
@@ -212,6 +213,7 @@ module Aws::MediaTailor
212
213
 
213
214
  Alert.add_member(:alert_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertCode"))
214
215
  Alert.add_member(:alert_message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertMessage"))
216
+ Alert.add_member(:category, Shapes::ShapeRef.new(shape: AlertCategory, location_name: "Category"))
215
217
  Alert.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, required: true, location_name: "LastModifiedTime"))
216
218
  Alert.add_member(:related_resource_arns, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "RelatedResourceArns"))
217
219
  Alert.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ResourceArn"))
@@ -138,6 +138,10 @@ module Aws::MediaTailor
138
138
  # reason for the alert.
139
139
  # @return [String]
140
140
  #
141
+ # @!attribute [rw] category
142
+ # The category that MediaTailor assigns to the alert.
143
+ # @return [String]
144
+ #
141
145
  # @!attribute [rw] last_modified_time
142
146
  # The timestamp when the alert was last modified.
143
147
  # @return [Time]
@@ -155,6 +159,7 @@ module Aws::MediaTailor
155
159
  class Alert < Struct.new(
156
160
  :alert_code,
157
161
  :alert_message,
162
+ :category,
158
163
  :last_modified_time,
159
164
  :related_resource_arns,
160
165
  :resource_arn)
@@ -2170,7 +2175,7 @@ module Aws::MediaTailor
2170
2175
  # @return [String]
2171
2176
  #
2172
2177
  # @!attribute [rw] value
2173
- # For `SCTE35_ENHANCED` output, defines a vaue. MediaTailor; takes
2178
+ # For `SCTE35_ENHANCED` output, defines a value. MediaTailor; takes
2174
2179
  # this value, and its associated key, and generates the key/value pair
2175
2180
  # within the `EXT-X-ASSET`tag. If you specify a value, you must also
2176
2181
  # specify a corresponding key.
@@ -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.66.0'
55
+ GEM_VERSION = '1.68.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.66.0
4
+ version: 1.68.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-07-07 00:00:00.000000000 Z
11
+ date: 2023-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core