aws-sdk-mediapackagevod 1.23.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagevod.rb +1 -1
- data/lib/aws-sdk-mediapackagevod/client.rb +5 -1
- data/lib/aws-sdk-mediapackagevod/client_api.rb +1 -0
- data/lib/aws-sdk-mediapackagevod/types.rb +11 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e2a0e2252b8216b51b3b00f29f4ddaa6c47730294bb9a588fcbdd8e4866d5af
|
4
|
+
data.tar.gz: 439806ce68be4dac78880fcf6c78681f0bb9695f40f3d6a05086a1e07a20b3a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7fb809467326c66180c32ee30c9dc8c42e00303a1dbd6a33f70a25c978762261502d9df2cde933c0f7baf77aeb4796666a11e2fc8b97bcb6bc2c43cf6e92080
|
7
|
+
data.tar.gz: d6dd667ad4003d38d38c107a3bf6622004c94816aa64a41a38f1025382786e2202173848757224c5673ba8de401df75c7723766a455683c953c321d1714b3f68
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.24.0 (2021-06-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for Widevine DRM on CMAF packaging configurations. Both Widevine and FairPlay DRMs can now be used simultaneously, with CBCS encryption.
|
8
|
+
|
4
9
|
1.23.0 (2021-04-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.24.0
|
@@ -474,6 +474,7 @@ module Aws::MediaPackageVod
|
|
474
474
|
# resp = client.create_packaging_configuration({
|
475
475
|
# cmaf_package: {
|
476
476
|
# encryption: {
|
477
|
+
# constant_initialization_vector: "__string",
|
477
478
|
# speke_key_provider: { # required
|
478
479
|
# role_arn: "__string", # required
|
479
480
|
# system_ids: ["__string"], # required
|
@@ -580,6 +581,7 @@ module Aws::MediaPackageVod
|
|
580
581
|
# @example Response structure
|
581
582
|
#
|
582
583
|
# resp.arn #=> String
|
584
|
+
# resp.cmaf_package.encryption.constant_initialization_vector #=> String
|
583
585
|
# resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
584
586
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
585
587
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
@@ -845,6 +847,7 @@ module Aws::MediaPackageVod
|
|
845
847
|
# @example Response structure
|
846
848
|
#
|
847
849
|
# resp.arn #=> String
|
850
|
+
# resp.cmaf_package.encryption.constant_initialization_vector #=> String
|
848
851
|
# resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
849
852
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
850
853
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
@@ -1032,6 +1035,7 @@ module Aws::MediaPackageVod
|
|
1032
1035
|
# resp.next_token #=> String
|
1033
1036
|
# resp.packaging_configurations #=> Array
|
1034
1037
|
# resp.packaging_configurations[0].arn #=> String
|
1038
|
+
# resp.packaging_configurations[0].cmaf_package.encryption.constant_initialization_vector #=> String
|
1035
1039
|
# resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.role_arn #=> String
|
1036
1040
|
# resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.system_ids #=> Array
|
1037
1041
|
# resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
@@ -1287,7 +1291,7 @@ module Aws::MediaPackageVod
|
|
1287
1291
|
params: params,
|
1288
1292
|
config: config)
|
1289
1293
|
context[:gem_name] = 'aws-sdk-mediapackagevod'
|
1290
|
-
context[:gem_version] = '1.
|
1294
|
+
context[:gem_version] = '1.24.0'
|
1291
1295
|
Seahorse::Client::Request.new(handlers, context)
|
1292
1296
|
end
|
1293
1297
|
|
@@ -142,6 +142,7 @@ module Aws::MediaPackageVod
|
|
142
142
|
Authorization.add_member(:secrets_role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretsRoleArn"))
|
143
143
|
Authorization.struct_class = Types::Authorization
|
144
144
|
|
145
|
+
CmafEncryption.add_member(:constant_initialization_vector, Shapes::ShapeRef.new(shape: __string, location_name: "constantInitializationVector"))
|
145
146
|
CmafEncryption.add_member(:speke_key_provider, Shapes::ShapeRef.new(shape: SpekeKeyProvider, required: true, location_name: "spekeKeyProvider"))
|
146
147
|
CmafEncryption.struct_class = Types::CmafEncryption
|
147
148
|
|
@@ -207,6 +207,7 @@ module Aws::MediaPackageVod
|
|
207
207
|
# data as a hash:
|
208
208
|
#
|
209
209
|
# {
|
210
|
+
# constant_initialization_vector: "__string",
|
210
211
|
# speke_key_provider: { # required
|
211
212
|
# role_arn: "__string", # required
|
212
213
|
# system_ids: ["__string"], # required
|
@@ -214,6 +215,13 @@ module Aws::MediaPackageVod
|
|
214
215
|
# },
|
215
216
|
# }
|
216
217
|
#
|
218
|
+
# @!attribute [rw] constant_initialization_vector
|
219
|
+
# An optional 128-bit, 16-byte hex value represented by a 32-character
|
220
|
+
# string, used in conjunction with the key for encrypting blocks. If
|
221
|
+
# you don't specify a value, then MediaPackage creates the constant
|
222
|
+
# initialization vector (IV).
|
223
|
+
# @return [String]
|
224
|
+
#
|
217
225
|
# @!attribute [rw] speke_key_provider
|
218
226
|
# A configuration for accessing an external Secure Packager and
|
219
227
|
# Encoder Key Exchange (SPEKE) service that will provide encryption
|
@@ -223,6 +231,7 @@ module Aws::MediaPackageVod
|
|
223
231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-vod-2018-11-07/CmafEncryption AWS API Documentation
|
224
232
|
#
|
225
233
|
class CmafEncryption < Struct.new(
|
234
|
+
:constant_initialization_vector,
|
226
235
|
:speke_key_provider)
|
227
236
|
SENSITIVE = []
|
228
237
|
include Aws::Structure
|
@@ -235,6 +244,7 @@ module Aws::MediaPackageVod
|
|
235
244
|
#
|
236
245
|
# {
|
237
246
|
# encryption: {
|
247
|
+
# constant_initialization_vector: "__string",
|
238
248
|
# speke_key_provider: { # required
|
239
249
|
# role_arn: "__string", # required
|
240
250
|
# system_ids: ["__string"], # required
|
@@ -462,6 +472,7 @@ module Aws::MediaPackageVod
|
|
462
472
|
# {
|
463
473
|
# cmaf_package: {
|
464
474
|
# encryption: {
|
475
|
+
# constant_initialization_vector: "__string",
|
465
476
|
# speke_key_provider: { # required
|
466
477
|
# role_arn: "__string", # required
|
467
478
|
# system_ids: ["__string"], # required
|
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.24.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-
|
11
|
+
date: 2021-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|