aws-sdk-mediapackagevod 1.6.0 → 1.7.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a373c64d52a69d6c0d90ca586ac27501425ef784
|
|
4
|
+
data.tar.gz: d11e2fd9486cea60ef3a171c9dbd26e443558c88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 932626e1f3ffca26cc3ab18bab340634f79290f87f601ca3ffc484f6f49c5dd54e2f4658dfbddd115e4e4d30435cbb713fbc1da32b3f456061eafe0198f12043
|
|
7
|
+
data.tar.gz: 5d433fed18e55449ab76f6f5047af13e65382f90020e549ed2d39a2ba06e6ff0f263d2859d212514fb403a261118a3c8e92d58f19cd0d285bc1794e39b07d165
|
|
@@ -269,6 +269,7 @@ module Aws::MediaPackageVod
|
|
|
269
269
|
# @return [Types::CreateAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
270
270
|
#
|
|
271
271
|
# * {Types::CreateAssetResponse#arn #arn} => String
|
|
272
|
+
# * {Types::CreateAssetResponse#created_at #created_at} => String
|
|
272
273
|
# * {Types::CreateAssetResponse#egress_endpoints #egress_endpoints} => Array<Types::EgressEndpoint>
|
|
273
274
|
# * {Types::CreateAssetResponse#id #id} => String
|
|
274
275
|
# * {Types::CreateAssetResponse#packaging_group_id #packaging_group_id} => String
|
|
@@ -289,6 +290,7 @@ module Aws::MediaPackageVod
|
|
|
289
290
|
# @example Response structure
|
|
290
291
|
#
|
|
291
292
|
# resp.arn #=> String
|
|
293
|
+
# resp.created_at #=> String
|
|
292
294
|
# resp.egress_endpoints #=> Array
|
|
293
295
|
# resp.egress_endpoints[0].packaging_configuration_id #=> String
|
|
294
296
|
# resp.egress_endpoints[0].url #=> String
|
|
@@ -602,6 +604,7 @@ module Aws::MediaPackageVod
|
|
|
602
604
|
# @return [Types::DescribeAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
603
605
|
#
|
|
604
606
|
# * {Types::DescribeAssetResponse#arn #arn} => String
|
|
607
|
+
# * {Types::DescribeAssetResponse#created_at #created_at} => String
|
|
605
608
|
# * {Types::DescribeAssetResponse#egress_endpoints #egress_endpoints} => Array<Types::EgressEndpoint>
|
|
606
609
|
# * {Types::DescribeAssetResponse#id #id} => String
|
|
607
610
|
# * {Types::DescribeAssetResponse#packaging_group_id #packaging_group_id} => String
|
|
@@ -618,6 +621,7 @@ module Aws::MediaPackageVod
|
|
|
618
621
|
# @example Response structure
|
|
619
622
|
#
|
|
620
623
|
# resp.arn #=> String
|
|
624
|
+
# resp.created_at #=> String
|
|
621
625
|
# resp.egress_endpoints #=> Array
|
|
622
626
|
# resp.egress_endpoints[0].packaging_configuration_id #=> String
|
|
623
627
|
# resp.egress_endpoints[0].url #=> String
|
|
@@ -779,6 +783,7 @@ module Aws::MediaPackageVod
|
|
|
779
783
|
#
|
|
780
784
|
# resp.assets #=> Array
|
|
781
785
|
# resp.assets[0].arn #=> String
|
|
786
|
+
# resp.assets[0].created_at #=> String
|
|
782
787
|
# resp.assets[0].id #=> String
|
|
783
788
|
# resp.assets[0].packaging_group_id #=> String
|
|
784
789
|
# resp.assets[0].resource_id #=> String
|
|
@@ -934,7 +939,7 @@ module Aws::MediaPackageVod
|
|
|
934
939
|
params: params,
|
|
935
940
|
config: config)
|
|
936
941
|
context[:gem_name] = 'aws-sdk-mediapackagevod'
|
|
937
|
-
context[:gem_version] = '1.
|
|
942
|
+
context[:gem_version] = '1.7.0'
|
|
938
943
|
Seahorse::Client::Request.new(handlers, context)
|
|
939
944
|
end
|
|
940
945
|
|
|
@@ -85,6 +85,7 @@ module Aws::MediaPackageVod
|
|
|
85
85
|
__string = Shapes::StringShape.new(name: '__string')
|
|
86
86
|
|
|
87
87
|
Asset.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
88
|
+
Asset.add_member(:created_at, Shapes::ShapeRef.new(shape: __string, location_name: "createdAt"))
|
|
88
89
|
Asset.add_member(:egress_endpoints, Shapes::ShapeRef.new(shape: __listOfEgressEndpoint, location_name: "egressEndpoints"))
|
|
89
90
|
Asset.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
|
90
91
|
Asset.add_member(:packaging_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingGroupId"))
|
|
@@ -105,6 +106,7 @@ module Aws::MediaPackageVod
|
|
|
105
106
|
AssetList.struct_class = Types::AssetList
|
|
106
107
|
|
|
107
108
|
AssetShallow.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
109
|
+
AssetShallow.add_member(:created_at, Shapes::ShapeRef.new(shape: __string, location_name: "createdAt"))
|
|
108
110
|
AssetShallow.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
|
109
111
|
AssetShallow.add_member(:packaging_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingGroupId"))
|
|
110
112
|
AssetShallow.add_member(:resource_id, Shapes::ShapeRef.new(shape: __string, location_name: "resourceId"))
|
|
@@ -128,6 +130,7 @@ module Aws::MediaPackageVod
|
|
|
128
130
|
CreateAssetRequest.struct_class = Types::CreateAssetRequest
|
|
129
131
|
|
|
130
132
|
CreateAssetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
133
|
+
CreateAssetResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: __string, location_name: "createdAt"))
|
|
131
134
|
CreateAssetResponse.add_member(:egress_endpoints, Shapes::ShapeRef.new(shape: __listOfEgressEndpoint, location_name: "egressEndpoints"))
|
|
132
135
|
CreateAssetResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
|
133
136
|
CreateAssetResponse.add_member(:packaging_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingGroupId"))
|
|
@@ -193,6 +196,7 @@ module Aws::MediaPackageVod
|
|
|
193
196
|
DescribeAssetRequest.struct_class = Types::DescribeAssetRequest
|
|
194
197
|
|
|
195
198
|
DescribeAssetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
199
|
+
DescribeAssetResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: __string, location_name: "createdAt"))
|
|
196
200
|
DescribeAssetResponse.add_member(:egress_endpoints, Shapes::ShapeRef.new(shape: __listOfEgressEndpoint, location_name: "egressEndpoints"))
|
|
197
201
|
DescribeAssetResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
|
198
202
|
DescribeAssetResponse.add_member(:packaging_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "packagingGroupId"))
|
|
@@ -14,6 +14,10 @@ module Aws::MediaPackageVod
|
|
|
14
14
|
# The ARN of the Asset.
|
|
15
15
|
# @return [String]
|
|
16
16
|
#
|
|
17
|
+
# @!attribute [rw] created_at
|
|
18
|
+
# The time the Asset was initially submitted for Ingest.
|
|
19
|
+
# @return [String]
|
|
20
|
+
#
|
|
17
21
|
# @!attribute [rw] egress_endpoints
|
|
18
22
|
# The list of egress endpoints available for the Asset.
|
|
19
23
|
# @return [Array<Types::EgressEndpoint>]
|
|
@@ -42,6 +46,7 @@ module Aws::MediaPackageVod
|
|
|
42
46
|
#
|
|
43
47
|
class Asset < Struct.new(
|
|
44
48
|
:arn,
|
|
49
|
+
:created_at,
|
|
45
50
|
:egress_endpoints,
|
|
46
51
|
:id,
|
|
47
52
|
:packaging_group_id,
|
|
@@ -109,6 +114,10 @@ module Aws::MediaPackageVod
|
|
|
109
114
|
# The ARN of the Asset.
|
|
110
115
|
# @return [String]
|
|
111
116
|
#
|
|
117
|
+
# @!attribute [rw] created_at
|
|
118
|
+
# The time the Asset was initially submitted for Ingest.
|
|
119
|
+
# @return [String]
|
|
120
|
+
#
|
|
112
121
|
# @!attribute [rw] id
|
|
113
122
|
# The unique identifier for the Asset.
|
|
114
123
|
# @return [String]
|
|
@@ -133,6 +142,7 @@ module Aws::MediaPackageVod
|
|
|
133
142
|
#
|
|
134
143
|
class AssetShallow < Struct.new(
|
|
135
144
|
:arn,
|
|
145
|
+
:created_at,
|
|
136
146
|
:id,
|
|
137
147
|
:packaging_group_id,
|
|
138
148
|
:resource_id,
|
|
@@ -259,6 +269,9 @@ module Aws::MediaPackageVod
|
|
|
259
269
|
# @!attribute [rw] arn
|
|
260
270
|
# @return [String]
|
|
261
271
|
#
|
|
272
|
+
# @!attribute [rw] created_at
|
|
273
|
+
# @return [String]
|
|
274
|
+
#
|
|
262
275
|
# @!attribute [rw] egress_endpoints
|
|
263
276
|
# @return [Array<Types::EgressEndpoint>]
|
|
264
277
|
#
|
|
@@ -281,6 +294,7 @@ module Aws::MediaPackageVod
|
|
|
281
294
|
#
|
|
282
295
|
class CreateAssetResponse < Struct.new(
|
|
283
296
|
:arn,
|
|
297
|
+
:created_at,
|
|
284
298
|
:egress_endpoints,
|
|
285
299
|
:id,
|
|
286
300
|
:packaging_group_id,
|
|
@@ -701,6 +715,9 @@ module Aws::MediaPackageVod
|
|
|
701
715
|
# @!attribute [rw] arn
|
|
702
716
|
# @return [String]
|
|
703
717
|
#
|
|
718
|
+
# @!attribute [rw] created_at
|
|
719
|
+
# @return [String]
|
|
720
|
+
#
|
|
704
721
|
# @!attribute [rw] egress_endpoints
|
|
705
722
|
# @return [Array<Types::EgressEndpoint>]
|
|
706
723
|
#
|
|
@@ -723,6 +740,7 @@ module Aws::MediaPackageVod
|
|
|
723
740
|
#
|
|
724
741
|
class DescribeAssetResponse < Struct.new(
|
|
725
742
|
:arn,
|
|
743
|
+
:created_at,
|
|
726
744
|
:egress_endpoints,
|
|
727
745
|
:id,
|
|
728
746
|
:packaging_group_id,
|
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.
|
|
4
|
+
version: 1.7.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: 2019-
|
|
11
|
+
date: 2019-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|