aws-sdk-mediapackagevod 1.27.0 → 1.28.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: e0a34e7f5650b8c9124d9859ca55bec2aa9660501dd9dabaa59b30bdc8f5f9a8
4
- data.tar.gz: 0f7498a88311e0f0a158f1268211b9670834179e49c7f3fb8e9f50275d3695f2
3
+ metadata.gz: 2ba8c7248918022892b2664a49c81f22860bcf4bc411be99fef72f4e7bc1b7b9
4
+ data.tar.gz: cd98abf52bb1c90990b44b1f2b1f64beafc499173cc5b75ed17c9ddb95f50010
5
5
  SHA512:
6
- metadata.gz: a181e5d7198459babc7de87a605410cedbd0cd03c1e73ab2bfcb3b57fd806a378419d2e1141dcea361b0cd3b57c7c8535414b06a54954ea004450689ef37c6a3
7
- data.tar.gz: 4bfea24a3c7b2f8753ceb57ab35eca10755094f2222479c3bd8a773a9d31309258481623bfd9bf94a202d45e8b7e9b0ffd0f2d896ad270dccc02f38ddd8e7624
6
+ metadata.gz: edf53a3a6c2c6fe0dabc9a80786523e296597794751b01efb18de1347c140332d03edf38072ffa4948d9dddb70bfce84e7d503e66020c9956c29b42ca232d31b
7
+ data.tar.gz: 25e94ab691d968f2e88aa56e249c9151e2bc12fa6aaa3205c6e1e3a9437f4d468319db475064ebad9fa5bbd659234faab77af349e867fc2c93062d6d0775a0a8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2021-09-22)
5
+ ------------------
6
+
7
+ * Feature - MediaPackage VOD will now return the current processing statuses of an asset's endpoints. The status can be QUEUED, PROCESSING, PLAYABLE, or FAILED.
8
+
4
9
  1.27.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -419,6 +419,7 @@ module Aws::MediaPackageVod
419
419
  # resp.created_at #=> String
420
420
  # resp.egress_endpoints #=> Array
421
421
  # resp.egress_endpoints[0].packaging_configuration_id #=> String
422
+ # resp.egress_endpoints[0].status #=> String
422
423
  # resp.egress_endpoints[0].url #=> String
423
424
  # resp.id #=> String
424
425
  # resp.packaging_group_id #=> String
@@ -804,6 +805,7 @@ module Aws::MediaPackageVod
804
805
  # resp.created_at #=> String
805
806
  # resp.egress_endpoints #=> Array
806
807
  # resp.egress_endpoints[0].packaging_configuration_id #=> String
808
+ # resp.egress_endpoints[0].status #=> String
807
809
  # resp.egress_endpoints[0].url #=> String
808
810
  # resp.id #=> String
809
811
  # resp.packaging_group_id #=> String
@@ -1291,7 +1293,7 @@ module Aws::MediaPackageVod
1291
1293
  params: params,
1292
1294
  config: config)
1293
1295
  context[:gem_name] = 'aws-sdk-mediapackagevod'
1294
- context[:gem_version] = '1.27.0'
1296
+ context[:gem_version] = '1.28.0'
1295
1297
  Seahorse::Client::Request.new(handlers, context)
1296
1298
  end
1297
1299
 
@@ -294,6 +294,7 @@ module Aws::MediaPackageVod
294
294
  EgressAccessLogs.struct_class = Types::EgressAccessLogs
295
295
 
296
296
  EgressEndpoint.add_member(:packaging_configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingConfigurationId"))
297
+ EgressEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: __string, location_name: "status"))
297
298
  EgressEndpoint.add_member(:url, Shapes::ShapeRef.new(shape: __string, location_name: "url"))
298
299
  EgressEndpoint.struct_class = Types::EgressEndpoint
299
300
 
@@ -1180,6 +1180,13 @@ module Aws::MediaPackageVod
1180
1180
  # The ID of the PackagingConfiguration being applied to the Asset.
1181
1181
  # @return [String]
1182
1182
  #
1183
+ # @!attribute [rw] status
1184
+ # The current processing status of the asset used for the packaging
1185
+ # configuration. The status can be either QUEUED, PROCESSING,
1186
+ # PLAYABLE, or FAILED. Status information won't be available for most
1187
+ # assets ingested before 2021-09-30.
1188
+ # @return [String]
1189
+ #
1183
1190
  # @!attribute [rw] url
1184
1191
  # The URL of the parent manifest for the repackaged Asset.
1185
1192
  # @return [String]
@@ -1188,6 +1195,7 @@ module Aws::MediaPackageVod
1188
1195
  #
1189
1196
  class EgressEndpoint < Struct.new(
1190
1197
  :packaging_configuration_id,
1198
+ :status,
1191
1199
  :url)
1192
1200
  SENSITIVE = []
1193
1201
  include Aws::Structure
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediapackagevod/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaPackageVod
50
50
 
51
- GEM_VERSION = '1.27.0'
51
+ GEM_VERSION = '1.28.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackagevod
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.28.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core