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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf66b7a7440ff036a05bd87520eedb6feb287a5e670c93b6b065647075453d7a
4
- data.tar.gz: bbb1c2564b0a3f3636ee32bee39efe86d972ca5f8f466adaaa955d031e4d0981
3
+ metadata.gz: 9e2a0e2252b8216b51b3b00f29f4ddaa6c47730294bb9a588fcbdd8e4866d5af
4
+ data.tar.gz: 439806ce68be4dac78880fcf6c78681f0bb9695f40f3d6a05086a1e07a20b3a7
5
5
  SHA512:
6
- metadata.gz: 0f245154545d083c42d54a3990d2bdc33dd1d83fed00ba66393dcf7d92d936dd267a256324bdd11a280ef217ed6e79aa284231fac2ae0089bb7b4d6d216331c6
7
- data.tar.gz: 8e4e7e8a21e77469652253663d372f82bf96452211eb030e775c23d9a1eb53e8e227016203a0c479a6cc5255eb851dbab68b23795e6a3f71ddb65da3dedc5a16
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.23.0
1
+ 1.24.0
@@ -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.23.0'
51
+ GEM_VERSION = '1.24.0'
52
52
 
53
53
  end
@@ -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.23.0'
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.23.0
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-04-28 00:00:00.000000000 Z
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