aws-sdk-mediapackagevod 1.13.0 → 1.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b1fc133e6ac52a5f6f0d90d0179dba8f97d7e7d7727b3d314cc4c13840c564c
|
4
|
+
data.tar.gz: a528eadeb3ab61faa5a645dab4dba662e6db16655b05ea53a2d7a3ff273d4737
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f02fbf817bd75ae042828be63b7fe5109a531d6d2550414d83726a71f449d28947d4aed8ebaf7d14fc54e0d765ba997519c8c8f8ad6bb8422e2e1fdd9aaa7c86
|
7
|
+
data.tar.gz: eee466dd877a450a9e067fe2b41c23f48b62fb893a351c7d502fd5b7dc77d36a5369d92c8a488c74abc0f5104077c3ebd52d41699778e67883c644c0bede4f48
|
@@ -586,6 +586,9 @@ module Aws::MediaPackageVod
|
|
586
586
|
|
587
587
|
# Creates a new MediaPackage VOD PackagingGroup resource.
|
588
588
|
#
|
589
|
+
# @option params [Types::Authorization] :authorization
|
590
|
+
# CDN Authorization credentials
|
591
|
+
#
|
589
592
|
# @option params [required, String] :id
|
590
593
|
#
|
591
594
|
# @option params [Hash<String,String>] :tags
|
@@ -594,6 +597,7 @@ module Aws::MediaPackageVod
|
|
594
597
|
# @return [Types::CreatePackagingGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
595
598
|
#
|
596
599
|
# * {Types::CreatePackagingGroupResponse#arn #arn} => String
|
600
|
+
# * {Types::CreatePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
597
601
|
# * {Types::CreatePackagingGroupResponse#domain_name #domain_name} => String
|
598
602
|
# * {Types::CreatePackagingGroupResponse#id #id} => String
|
599
603
|
# * {Types::CreatePackagingGroupResponse#tags #tags} => Hash<String,String>
|
@@ -601,6 +605,10 @@ module Aws::MediaPackageVod
|
|
601
605
|
# @example Request syntax with placeholder values
|
602
606
|
#
|
603
607
|
# resp = client.create_packaging_group({
|
608
|
+
# authorization: {
|
609
|
+
# cdn_identifier_secret: "__string", # required
|
610
|
+
# secrets_role_arn: "__string", # required
|
611
|
+
# },
|
604
612
|
# id: "__string", # required
|
605
613
|
# tags: {
|
606
614
|
# "__string" => "__string",
|
@@ -610,6 +618,8 @@ module Aws::MediaPackageVod
|
|
610
618
|
# @example Response structure
|
611
619
|
#
|
612
620
|
# resp.arn #=> String
|
621
|
+
# resp.authorization.cdn_identifier_secret #=> String
|
622
|
+
# resp.authorization.secrets_role_arn #=> String
|
613
623
|
# resp.domain_name #=> String
|
614
624
|
# resp.id #=> String
|
615
625
|
# resp.tags #=> Hash
|
@@ -836,6 +846,7 @@ module Aws::MediaPackageVod
|
|
836
846
|
# @return [Types::DescribePackagingGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
837
847
|
#
|
838
848
|
# * {Types::DescribePackagingGroupResponse#arn #arn} => String
|
849
|
+
# * {Types::DescribePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
839
850
|
# * {Types::DescribePackagingGroupResponse#domain_name #domain_name} => String
|
840
851
|
# * {Types::DescribePackagingGroupResponse#id #id} => String
|
841
852
|
# * {Types::DescribePackagingGroupResponse#tags #tags} => Hash<String,String>
|
@@ -849,6 +860,8 @@ module Aws::MediaPackageVod
|
|
849
860
|
# @example Response structure
|
850
861
|
#
|
851
862
|
# resp.arn #=> String
|
863
|
+
# resp.authorization.cdn_identifier_secret #=> String
|
864
|
+
# resp.authorization.secrets_role_arn #=> String
|
852
865
|
# resp.domain_name #=> String
|
853
866
|
# resp.id #=> String
|
854
867
|
# resp.tags #=> Hash
|
@@ -1034,6 +1047,8 @@ module Aws::MediaPackageVod
|
|
1034
1047
|
# resp.next_token #=> String
|
1035
1048
|
# resp.packaging_groups #=> Array
|
1036
1049
|
# resp.packaging_groups[0].arn #=> String
|
1050
|
+
# resp.packaging_groups[0].authorization.cdn_identifier_secret #=> String
|
1051
|
+
# resp.packaging_groups[0].authorization.secrets_role_arn #=> String
|
1037
1052
|
# resp.packaging_groups[0].domain_name #=> String
|
1038
1053
|
# resp.packaging_groups[0].id #=> String
|
1039
1054
|
# resp.packaging_groups[0].tags #=> Hash
|
@@ -1048,6 +1063,8 @@ module Aws::MediaPackageVod
|
|
1048
1063
|
req.send_request(options)
|
1049
1064
|
end
|
1050
1065
|
|
1066
|
+
# Returns a list of the tags assigned to the specified resource.
|
1067
|
+
#
|
1051
1068
|
# @option params [required, String] :resource_arn
|
1052
1069
|
#
|
1053
1070
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1074,6 +1091,9 @@ module Aws::MediaPackageVod
|
|
1074
1091
|
req.send_request(options)
|
1075
1092
|
end
|
1076
1093
|
|
1094
|
+
# Adds tags to the specified resource. You can specify one or more tags
|
1095
|
+
# to add.
|
1096
|
+
#
|
1077
1097
|
# @option params [required, String] :resource_arn
|
1078
1098
|
#
|
1079
1099
|
# @option params [required, Hash<String,String>] :tags
|
@@ -1098,6 +1118,9 @@ module Aws::MediaPackageVod
|
|
1098
1118
|
req.send_request(options)
|
1099
1119
|
end
|
1100
1120
|
|
1121
|
+
# Removes tags from the specified resource. You can specify one or more
|
1122
|
+
# tags to remove.
|
1123
|
+
#
|
1101
1124
|
# @option params [required, String] :resource_arn
|
1102
1125
|
#
|
1103
1126
|
# @option params [required, Array<String>] :tag_keys
|
@@ -1120,6 +1143,51 @@ module Aws::MediaPackageVod
|
|
1120
1143
|
req.send_request(options)
|
1121
1144
|
end
|
1122
1145
|
|
1146
|
+
# Updates a specific packaging group. You can't change the id attribute
|
1147
|
+
# or any other system-generated attributes.
|
1148
|
+
#
|
1149
|
+
# @option params [Types::Authorization] :authorization
|
1150
|
+
# CDN Authorization credentials
|
1151
|
+
#
|
1152
|
+
# @option params [required, String] :id
|
1153
|
+
#
|
1154
|
+
# @return [Types::UpdatePackagingGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1155
|
+
#
|
1156
|
+
# * {Types::UpdatePackagingGroupResponse#arn #arn} => String
|
1157
|
+
# * {Types::UpdatePackagingGroupResponse#authorization #authorization} => Types::Authorization
|
1158
|
+
# * {Types::UpdatePackagingGroupResponse#domain_name #domain_name} => String
|
1159
|
+
# * {Types::UpdatePackagingGroupResponse#id #id} => String
|
1160
|
+
# * {Types::UpdatePackagingGroupResponse#tags #tags} => Hash<String,String>
|
1161
|
+
#
|
1162
|
+
# @example Request syntax with placeholder values
|
1163
|
+
#
|
1164
|
+
# resp = client.update_packaging_group({
|
1165
|
+
# authorization: {
|
1166
|
+
# cdn_identifier_secret: "__string", # required
|
1167
|
+
# secrets_role_arn: "__string", # required
|
1168
|
+
# },
|
1169
|
+
# id: "__string", # required
|
1170
|
+
# })
|
1171
|
+
#
|
1172
|
+
# @example Response structure
|
1173
|
+
#
|
1174
|
+
# resp.arn #=> String
|
1175
|
+
# resp.authorization.cdn_identifier_secret #=> String
|
1176
|
+
# resp.authorization.secrets_role_arn #=> String
|
1177
|
+
# resp.domain_name #=> String
|
1178
|
+
# resp.id #=> String
|
1179
|
+
# resp.tags #=> Hash
|
1180
|
+
# resp.tags["__string"] #=> String
|
1181
|
+
#
|
1182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/UpdatePackagingGroup AWS API Documentation
|
1183
|
+
#
|
1184
|
+
# @overload update_packaging_group(params = {})
|
1185
|
+
# @param [Hash] params ({})
|
1186
|
+
def update_packaging_group(params = {}, options = {})
|
1187
|
+
req = build_request(:update_packaging_group, params)
|
1188
|
+
req.send_request(options)
|
1189
|
+
end
|
1190
|
+
|
1123
1191
|
# @!endgroup
|
1124
1192
|
|
1125
1193
|
# @param params ({})
|
@@ -1133,7 +1201,7 @@ module Aws::MediaPackageVod
|
|
1133
1201
|
params: params,
|
1134
1202
|
config: config)
|
1135
1203
|
context[:gem_name] = 'aws-sdk-mediapackagevod'
|
1136
|
-
context[:gem_version] = '1.
|
1204
|
+
context[:gem_version] = '1.14.0'
|
1137
1205
|
Seahorse::Client::Request.new(handlers, context)
|
1138
1206
|
end
|
1139
1207
|
|
@@ -16,6 +16,7 @@ module Aws::MediaPackageVod
|
|
16
16
|
AssetCreateParameters = Shapes::StructureShape.new(name: 'AssetCreateParameters')
|
17
17
|
AssetList = Shapes::StructureShape.new(name: 'AssetList')
|
18
18
|
AssetShallow = Shapes::StructureShape.new(name: 'AssetShallow')
|
19
|
+
Authorization = Shapes::StructureShape.new(name: 'Authorization')
|
19
20
|
CmafEncryption = Shapes::StructureShape.new(name: 'CmafEncryption')
|
20
21
|
CmafPackage = Shapes::StructureShape.new(name: 'CmafPackage')
|
21
22
|
CreateAssetRequest = Shapes::StructureShape.new(name: 'CreateAssetRequest')
|
@@ -66,6 +67,7 @@ module Aws::MediaPackageVod
|
|
66
67
|
PackagingGroup = Shapes::StructureShape.new(name: 'PackagingGroup')
|
67
68
|
PackagingGroupCreateParameters = Shapes::StructureShape.new(name: 'PackagingGroupCreateParameters')
|
68
69
|
PackagingGroupList = Shapes::StructureShape.new(name: 'PackagingGroupList')
|
70
|
+
PackagingGroupUpdateParameters = Shapes::StructureShape.new(name: 'PackagingGroupUpdateParameters')
|
69
71
|
Profile = Shapes::StringShape.new(name: 'Profile')
|
70
72
|
SegmentTemplateFormat = Shapes::StringShape.new(name: 'SegmentTemplateFormat')
|
71
73
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
@@ -78,6 +80,8 @@ module Aws::MediaPackageVod
|
|
78
80
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
79
81
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
80
82
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
83
|
+
UpdatePackagingGroupRequest = Shapes::StructureShape.new(name: 'UpdatePackagingGroupRequest')
|
84
|
+
UpdatePackagingGroupResponse = Shapes::StructureShape.new(name: 'UpdatePackagingGroupResponse')
|
81
85
|
__PeriodTriggersElement = Shapes::StringShape.new(name: '__PeriodTriggersElement')
|
82
86
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
83
87
|
__double = Shapes::FloatShape.new(name: '__double')
|
@@ -128,6 +132,10 @@ module Aws::MediaPackageVod
|
|
128
132
|
AssetShallow.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
129
133
|
AssetShallow.struct_class = Types::AssetShallow
|
130
134
|
|
135
|
+
Authorization.add_member(:cdn_identifier_secret, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "cdnIdentifierSecret"))
|
136
|
+
Authorization.add_member(:secrets_role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretsRoleArn"))
|
137
|
+
Authorization.struct_class = Types::Authorization
|
138
|
+
|
131
139
|
CmafEncryption.add_member(:speke_key_provider, Shapes::ShapeRef.new(shape: SpekeKeyProvider, required: true, location_name: "spekeKeyProvider"))
|
132
140
|
CmafEncryption.struct_class = Types::CmafEncryption
|
133
141
|
|
@@ -174,11 +182,13 @@ module Aws::MediaPackageVod
|
|
174
182
|
CreatePackagingConfigurationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
175
183
|
CreatePackagingConfigurationResponse.struct_class = Types::CreatePackagingConfigurationResponse
|
176
184
|
|
185
|
+
CreatePackagingGroupRequest.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
177
186
|
CreatePackagingGroupRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
178
187
|
CreatePackagingGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
179
188
|
CreatePackagingGroupRequest.struct_class = Types::CreatePackagingGroupRequest
|
180
189
|
|
181
190
|
CreatePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
191
|
+
CreatePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
182
192
|
CreatePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
183
193
|
CreatePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
184
194
|
CreatePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
@@ -247,6 +257,7 @@ module Aws::MediaPackageVod
|
|
247
257
|
DescribePackagingGroupRequest.struct_class = Types::DescribePackagingGroupRequest
|
248
258
|
|
249
259
|
DescribePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
260
|
+
DescribePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
250
261
|
DescribePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
251
262
|
DescribePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
252
263
|
DescribePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
@@ -352,11 +363,13 @@ module Aws::MediaPackageVod
|
|
352
363
|
PackagingConfigurationList.struct_class = Types::PackagingConfigurationList
|
353
364
|
|
354
365
|
PackagingGroup.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
366
|
+
PackagingGroup.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
355
367
|
PackagingGroup.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
356
368
|
PackagingGroup.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
357
369
|
PackagingGroup.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
358
370
|
PackagingGroup.struct_class = Types::PackagingGroup
|
359
371
|
|
372
|
+
PackagingGroupCreateParameters.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
360
373
|
PackagingGroupCreateParameters.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
361
374
|
PackagingGroupCreateParameters.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
362
375
|
PackagingGroupCreateParameters.struct_class = Types::PackagingGroupCreateParameters
|
@@ -365,6 +378,9 @@ module Aws::MediaPackageVod
|
|
365
378
|
PackagingGroupList.add_member(:packaging_groups, Shapes::ShapeRef.new(shape: __listOfPackagingGroup, location_name: "packagingGroups"))
|
366
379
|
PackagingGroupList.struct_class = Types::PackagingGroupList
|
367
380
|
|
381
|
+
PackagingGroupUpdateParameters.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
382
|
+
PackagingGroupUpdateParameters.struct_class = Types::PackagingGroupUpdateParameters
|
383
|
+
|
368
384
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
369
385
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
370
386
|
|
@@ -398,6 +414,17 @@ module Aws::MediaPackageVod
|
|
398
414
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location: "querystring", location_name: "tagKeys"))
|
399
415
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
400
416
|
|
417
|
+
UpdatePackagingGroupRequest.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
418
|
+
UpdatePackagingGroupRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
|
419
|
+
UpdatePackagingGroupRequest.struct_class = Types::UpdatePackagingGroupRequest
|
420
|
+
|
421
|
+
UpdatePackagingGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
422
|
+
UpdatePackagingGroupResponse.add_member(:authorization, Shapes::ShapeRef.new(shape: Authorization, location_name: "authorization"))
|
423
|
+
UpdatePackagingGroupResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, location_name: "domainName"))
|
424
|
+
UpdatePackagingGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
425
|
+
UpdatePackagingGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
426
|
+
UpdatePackagingGroupResponse.struct_class = Types::UpdatePackagingGroupResponse
|
427
|
+
|
401
428
|
__listOfAssetShallow.member = Shapes::ShapeRef.new(shape: AssetShallow)
|
402
429
|
|
403
430
|
__listOfDashManifest.member = Shapes::ShapeRef.new(shape: DashManifest)
|
@@ -647,6 +674,20 @@ module Aws::MediaPackageVod
|
|
647
674
|
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
648
675
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
649
676
|
end)
|
677
|
+
|
678
|
+
api.add_operation(:update_packaging_group, Seahorse::Model::Operation.new.tap do |o|
|
679
|
+
o.name = "UpdatePackagingGroup"
|
680
|
+
o.http_method = "PUT"
|
681
|
+
o.http_request_uri = "/packaging_groups/{id}"
|
682
|
+
o.input = Shapes::ShapeRef.new(shape: UpdatePackagingGroupRequest)
|
683
|
+
o.output = Shapes::ShapeRef.new(shape: UpdatePackagingGroupResponse)
|
684
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
685
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
686
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
687
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
688
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
689
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
690
|
+
end)
|
650
691
|
end
|
651
692
|
|
652
693
|
end
|
@@ -166,6 +166,34 @@ module Aws::MediaPackageVod
|
|
166
166
|
include Aws::Structure
|
167
167
|
end
|
168
168
|
|
169
|
+
# CDN Authorization credentials
|
170
|
+
#
|
171
|
+
# @note When making an API call, you may pass Authorization
|
172
|
+
# data as a hash:
|
173
|
+
#
|
174
|
+
# {
|
175
|
+
# cdn_identifier_secret: "__string", # required
|
176
|
+
# secrets_role_arn: "__string", # required
|
177
|
+
# }
|
178
|
+
#
|
179
|
+
# @!attribute [rw] cdn_identifier_secret
|
180
|
+
# The Amazon Resource Name (ARN) for the secret in AWS Secrets Manager
|
181
|
+
# that is used for CDN authorization.
|
182
|
+
# @return [String]
|
183
|
+
#
|
184
|
+
# @!attribute [rw] secrets_role_arn
|
185
|
+
# The Amazon Resource Name (ARN) for the IAM role that allows
|
186
|
+
# MediaPackage to communicate with AWS Secrets Manager.
|
187
|
+
# @return [String]
|
188
|
+
#
|
189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/Authorization AWS API Documentation
|
190
|
+
#
|
191
|
+
class Authorization < Struct.new(
|
192
|
+
:cdn_identifier_secret,
|
193
|
+
:secrets_role_arn)
|
194
|
+
include Aws::Structure
|
195
|
+
end
|
196
|
+
|
169
197
|
# A CMAF encryption configuration.
|
170
198
|
#
|
171
199
|
# @note When making an API call, you may pass CmafEncryption
|
@@ -527,12 +555,20 @@ module Aws::MediaPackageVod
|
|
527
555
|
# data as a hash:
|
528
556
|
#
|
529
557
|
# {
|
558
|
+
# authorization: {
|
559
|
+
# cdn_identifier_secret: "__string", # required
|
560
|
+
# secrets_role_arn: "__string", # required
|
561
|
+
# },
|
530
562
|
# id: "__string", # required
|
531
563
|
# tags: {
|
532
564
|
# "__string" => "__string",
|
533
565
|
# },
|
534
566
|
# }
|
535
567
|
#
|
568
|
+
# @!attribute [rw] authorization
|
569
|
+
# CDN Authorization credentials
|
570
|
+
# @return [Types::Authorization]
|
571
|
+
#
|
536
572
|
# @!attribute [rw] id
|
537
573
|
# @return [String]
|
538
574
|
#
|
@@ -543,6 +579,7 @@ module Aws::MediaPackageVod
|
|
543
579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/CreatePackagingGroupRequest AWS API Documentation
|
544
580
|
#
|
545
581
|
class CreatePackagingGroupRequest < Struct.new(
|
582
|
+
:authorization,
|
546
583
|
:id,
|
547
584
|
:tags)
|
548
585
|
include Aws::Structure
|
@@ -551,6 +588,10 @@ module Aws::MediaPackageVod
|
|
551
588
|
# @!attribute [rw] arn
|
552
589
|
# @return [String]
|
553
590
|
#
|
591
|
+
# @!attribute [rw] authorization
|
592
|
+
# CDN Authorization credentials
|
593
|
+
# @return [Types::Authorization]
|
594
|
+
#
|
554
595
|
# @!attribute [rw] domain_name
|
555
596
|
# @return [String]
|
556
597
|
#
|
@@ -565,6 +606,7 @@ module Aws::MediaPackageVod
|
|
565
606
|
#
|
566
607
|
class CreatePackagingGroupResponse < Struct.new(
|
567
608
|
:arn,
|
609
|
+
:authorization,
|
568
610
|
:domain_name,
|
569
611
|
:id,
|
570
612
|
:tags)
|
@@ -931,6 +973,10 @@ module Aws::MediaPackageVod
|
|
931
973
|
# @!attribute [rw] arn
|
932
974
|
# @return [String]
|
933
975
|
#
|
976
|
+
# @!attribute [rw] authorization
|
977
|
+
# CDN Authorization credentials
|
978
|
+
# @return [Types::Authorization]
|
979
|
+
#
|
934
980
|
# @!attribute [rw] domain_name
|
935
981
|
# @return [String]
|
936
982
|
#
|
@@ -945,6 +991,7 @@ module Aws::MediaPackageVod
|
|
945
991
|
#
|
946
992
|
class DescribePackagingGroupResponse < Struct.new(
|
947
993
|
:arn,
|
994
|
+
:authorization,
|
948
995
|
:domain_name,
|
949
996
|
:id,
|
950
997
|
:tags)
|
@@ -1536,6 +1583,10 @@ module Aws::MediaPackageVod
|
|
1536
1583
|
# The ARN of the PackagingGroup.
|
1537
1584
|
# @return [String]
|
1538
1585
|
#
|
1586
|
+
# @!attribute [rw] authorization
|
1587
|
+
# CDN Authorization credentials
|
1588
|
+
# @return [Types::Authorization]
|
1589
|
+
#
|
1539
1590
|
# @!attribute [rw] domain_name
|
1540
1591
|
# The fully qualified domain name for Assets in the PackagingGroup.
|
1541
1592
|
# @return [String]
|
@@ -1552,6 +1603,7 @@ module Aws::MediaPackageVod
|
|
1552
1603
|
#
|
1553
1604
|
class PackagingGroup < Struct.new(
|
1554
1605
|
:arn,
|
1606
|
+
:authorization,
|
1555
1607
|
:domain_name,
|
1556
1608
|
:id,
|
1557
1609
|
:tags)
|
@@ -1561,6 +1613,10 @@ module Aws::MediaPackageVod
|
|
1561
1613
|
# Parameters used to create a new MediaPackage VOD PackagingGroup
|
1562
1614
|
# resource.
|
1563
1615
|
#
|
1616
|
+
# @!attribute [rw] authorization
|
1617
|
+
# CDN Authorization credentials
|
1618
|
+
# @return [Types::Authorization]
|
1619
|
+
#
|
1564
1620
|
# @!attribute [rw] id
|
1565
1621
|
# The ID of the PackagingGroup.
|
1566
1622
|
# @return [String]
|
@@ -1572,6 +1628,7 @@ module Aws::MediaPackageVod
|
|
1572
1628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/PackagingGroupCreateParameters AWS API Documentation
|
1573
1629
|
#
|
1574
1630
|
class PackagingGroupCreateParameters < Struct.new(
|
1631
|
+
:authorization,
|
1575
1632
|
:id,
|
1576
1633
|
:tags)
|
1577
1634
|
include Aws::Structure
|
@@ -1596,6 +1653,19 @@ module Aws::MediaPackageVod
|
|
1596
1653
|
include Aws::Structure
|
1597
1654
|
end
|
1598
1655
|
|
1656
|
+
# Parameters used to update a MediaPackage packaging group.
|
1657
|
+
#
|
1658
|
+
# @!attribute [rw] authorization
|
1659
|
+
# CDN Authorization credentials
|
1660
|
+
# @return [Types::Authorization]
|
1661
|
+
#
|
1662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/PackagingGroupUpdateParameters AWS API Documentation
|
1663
|
+
#
|
1664
|
+
class PackagingGroupUpdateParameters < Struct.new(
|
1665
|
+
:authorization)
|
1666
|
+
include Aws::Structure
|
1667
|
+
end
|
1668
|
+
|
1599
1669
|
# @!attribute [rw] message
|
1600
1670
|
# @return [String]
|
1601
1671
|
#
|
@@ -1697,6 +1767,7 @@ module Aws::MediaPackageVod
|
|
1697
1767
|
end
|
1698
1768
|
|
1699
1769
|
# @!attribute [rw] tags
|
1770
|
+
# A collection of tags associated with a resource
|
1700
1771
|
# @return [Hash<String,String>]
|
1701
1772
|
#
|
1702
1773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/TagsModel AWS API Documentation
|
@@ -1748,5 +1819,59 @@ module Aws::MediaPackageVod
|
|
1748
1819
|
include Aws::Structure
|
1749
1820
|
end
|
1750
1821
|
|
1822
|
+
# @note When making an API call, you may pass UpdatePackagingGroupRequest
|
1823
|
+
# data as a hash:
|
1824
|
+
#
|
1825
|
+
# {
|
1826
|
+
# authorization: {
|
1827
|
+
# cdn_identifier_secret: "__string", # required
|
1828
|
+
# secrets_role_arn: "__string", # required
|
1829
|
+
# },
|
1830
|
+
# id: "__string", # required
|
1831
|
+
# }
|
1832
|
+
#
|
1833
|
+
# @!attribute [rw] authorization
|
1834
|
+
# CDN Authorization credentials
|
1835
|
+
# @return [Types::Authorization]
|
1836
|
+
#
|
1837
|
+
# @!attribute [rw] id
|
1838
|
+
# @return [String]
|
1839
|
+
#
|
1840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/UpdatePackagingGroupRequest AWS API Documentation
|
1841
|
+
#
|
1842
|
+
class UpdatePackagingGroupRequest < Struct.new(
|
1843
|
+
:authorization,
|
1844
|
+
:id)
|
1845
|
+
include Aws::Structure
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
# @!attribute [rw] arn
|
1849
|
+
# @return [String]
|
1850
|
+
#
|
1851
|
+
# @!attribute [rw] authorization
|
1852
|
+
# CDN Authorization credentials
|
1853
|
+
# @return [Types::Authorization]
|
1854
|
+
#
|
1855
|
+
# @!attribute [rw] domain_name
|
1856
|
+
# @return [String]
|
1857
|
+
#
|
1858
|
+
# @!attribute [rw] id
|
1859
|
+
# @return [String]
|
1860
|
+
#
|
1861
|
+
# @!attribute [rw] tags
|
1862
|
+
# A collection of tags associated with a resource
|
1863
|
+
# @return [Hash<String,String>]
|
1864
|
+
#
|
1865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/UpdatePackagingGroupResponse AWS API Documentation
|
1866
|
+
#
|
1867
|
+
class UpdatePackagingGroupResponse < Struct.new(
|
1868
|
+
:arn,
|
1869
|
+
:authorization,
|
1870
|
+
:domain_name,
|
1871
|
+
:id,
|
1872
|
+
:tags)
|
1873
|
+
include Aws::Structure
|
1874
|
+
end
|
1875
|
+
|
1751
1876
|
end
|
1752
1877
|
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.
|
4
|
+
version: 1.14.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: 2020-
|
11
|
+
date: 2020-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|