aws-sdk-mediapackagevod 1.22.0 → 1.26.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: 67f2b121806383c541719f40014c55fabee7645a52395e239d4c187aaac585bd
4
- data.tar.gz: e3a9abbc09f5f507046b9e9a392ff9909c88a7e612f687743dc946bf337d5c2c
3
+ metadata.gz: 7d41d3c4936079bb4fa00bba8754b72ec84ac88e37531fb0692d08e373354dcd
4
+ data.tar.gz: a9727b89cea205125f8d32a02dce6c33fd586fa7cc3f6ac134743faad34d6da7
5
5
  SHA512:
6
- metadata.gz: 5deadb9ccd2ac2d6e36c1158fe86dfb0a883f16d35a1f33d8e438e64dba5fe7b587da054f8be9e429f18fa5c68db54016ee5daffdbd66de85aac44d4c5c0eb8b
7
- data.tar.gz: c910676cfb7dc0d79d60cfd94b5f5f88f7a2a89ccaf5b459221da8bd3770a5fca5202cbaba86bdaf7e3c84c82eb44cb6d57bcd71c40fd48a64c761cd45b6c8f2
6
+ metadata.gz: a84c15f6e48bb25bd801eca3786327bf9540a0ccc2e06f94e4e7a24006d24cd76f3921b3651aefae4d25cb49bef0db336a02337f39e9b533cc7b18e90ece6e7c
7
+ data.tar.gz: 49be6d1ed3f53c40005d5729a75ed26abb354851a9ea86823c573eddc696dcbfa2bb2a9960c1009755fc225cdf079a595df8a9fe9dc9dec1e29e396148cde366
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.24.0 (2021-06-30)
15
+ ------------------
16
+
17
+ * Feature - Add support for Widevine DRM on CMAF packaging configurations. Both Widevine and FairPlay DRMs can now be used simultaneously, with CBCS encryption.
18
+
19
+ 1.23.0 (2021-04-28)
20
+ ------------------
21
+
22
+ * Feature - MediaPackage now offers the option to place your Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) encoder metadata in every video segment instead of in the init fragment for DASH and CMAF endpoints.
23
+
4
24
  1.22.0 (2021-03-10)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.26.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.22.0'
51
+ GEM_VERSION = '1.26.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
@@ -494,6 +495,7 @@ module Aws::MediaPackageVod
494
495
  # },
495
496
  # },
496
497
  # ],
498
+ # include_encoder_configuration_in_segments: false,
497
499
  # segment_duration_seconds: 1,
498
500
  # },
499
501
  # dash_package: {
@@ -517,6 +519,7 @@ module Aws::MediaPackageVod
517
519
  # url: "__string", # required
518
520
  # },
519
521
  # },
522
+ # include_encoder_configuration_in_segments: false,
520
523
  # period_triggers: ["ADS"], # accepts ADS
521
524
  # segment_duration_seconds: 1,
522
525
  # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
@@ -578,6 +581,7 @@ module Aws::MediaPackageVod
578
581
  # @example Response structure
579
582
  #
580
583
  # resp.arn #=> String
584
+ # resp.cmaf_package.encryption.constant_initialization_vector #=> String
581
585
  # resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
582
586
  # resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
583
587
  # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
@@ -591,6 +595,7 @@ module Aws::MediaPackageVod
591
595
  # resp.cmaf_package.hls_manifests[0].stream_selection.max_video_bits_per_second #=> Integer
592
596
  # resp.cmaf_package.hls_manifests[0].stream_selection.min_video_bits_per_second #=> Integer
593
597
  # resp.cmaf_package.hls_manifests[0].stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
598
+ # resp.cmaf_package.include_encoder_configuration_in_segments #=> Boolean
594
599
  # resp.cmaf_package.segment_duration_seconds #=> Integer
595
600
  # resp.dash_package.dash_manifests #=> Array
596
601
  # resp.dash_package.dash_manifests[0].manifest_layout #=> String, one of "FULL", "COMPACT"
@@ -604,6 +609,7 @@ module Aws::MediaPackageVod
604
609
  # resp.dash_package.encryption.speke_key_provider.system_ids #=> Array
605
610
  # resp.dash_package.encryption.speke_key_provider.system_ids[0] #=> String
606
611
  # resp.dash_package.encryption.speke_key_provider.url #=> String
612
+ # resp.dash_package.include_encoder_configuration_in_segments #=> Boolean
607
613
  # resp.dash_package.period_triggers #=> Array
608
614
  # resp.dash_package.period_triggers[0] #=> String, one of "ADS"
609
615
  # resp.dash_package.segment_duration_seconds #=> Integer
@@ -841,6 +847,7 @@ module Aws::MediaPackageVod
841
847
  # @example Response structure
842
848
  #
843
849
  # resp.arn #=> String
850
+ # resp.cmaf_package.encryption.constant_initialization_vector #=> String
844
851
  # resp.cmaf_package.encryption.speke_key_provider.role_arn #=> String
845
852
  # resp.cmaf_package.encryption.speke_key_provider.system_ids #=> Array
846
853
  # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
@@ -854,6 +861,7 @@ module Aws::MediaPackageVod
854
861
  # resp.cmaf_package.hls_manifests[0].stream_selection.max_video_bits_per_second #=> Integer
855
862
  # resp.cmaf_package.hls_manifests[0].stream_selection.min_video_bits_per_second #=> Integer
856
863
  # resp.cmaf_package.hls_manifests[0].stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
864
+ # resp.cmaf_package.include_encoder_configuration_in_segments #=> Boolean
857
865
  # resp.cmaf_package.segment_duration_seconds #=> Integer
858
866
  # resp.dash_package.dash_manifests #=> Array
859
867
  # resp.dash_package.dash_manifests[0].manifest_layout #=> String, one of "FULL", "COMPACT"
@@ -867,6 +875,7 @@ module Aws::MediaPackageVod
867
875
  # resp.dash_package.encryption.speke_key_provider.system_ids #=> Array
868
876
  # resp.dash_package.encryption.speke_key_provider.system_ids[0] #=> String
869
877
  # resp.dash_package.encryption.speke_key_provider.url #=> String
878
+ # resp.dash_package.include_encoder_configuration_in_segments #=> Boolean
870
879
  # resp.dash_package.period_triggers #=> Array
871
880
  # resp.dash_package.period_triggers[0] #=> String, one of "ADS"
872
881
  # resp.dash_package.segment_duration_seconds #=> Integer
@@ -1026,6 +1035,7 @@ module Aws::MediaPackageVod
1026
1035
  # resp.next_token #=> String
1027
1036
  # resp.packaging_configurations #=> Array
1028
1037
  # resp.packaging_configurations[0].arn #=> String
1038
+ # resp.packaging_configurations[0].cmaf_package.encryption.constant_initialization_vector #=> String
1029
1039
  # resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.role_arn #=> String
1030
1040
  # resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.system_ids #=> Array
1031
1041
  # resp.packaging_configurations[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
@@ -1039,6 +1049,7 @@ module Aws::MediaPackageVod
1039
1049
  # resp.packaging_configurations[0].cmaf_package.hls_manifests[0].stream_selection.max_video_bits_per_second #=> Integer
1040
1050
  # resp.packaging_configurations[0].cmaf_package.hls_manifests[0].stream_selection.min_video_bits_per_second #=> Integer
1041
1051
  # resp.packaging_configurations[0].cmaf_package.hls_manifests[0].stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
1052
+ # resp.packaging_configurations[0].cmaf_package.include_encoder_configuration_in_segments #=> Boolean
1042
1053
  # resp.packaging_configurations[0].cmaf_package.segment_duration_seconds #=> Integer
1043
1054
  # resp.packaging_configurations[0].dash_package.dash_manifests #=> Array
1044
1055
  # resp.packaging_configurations[0].dash_package.dash_manifests[0].manifest_layout #=> String, one of "FULL", "COMPACT"
@@ -1052,6 +1063,7 @@ module Aws::MediaPackageVod
1052
1063
  # resp.packaging_configurations[0].dash_package.encryption.speke_key_provider.system_ids #=> Array
1053
1064
  # resp.packaging_configurations[0].dash_package.encryption.speke_key_provider.system_ids[0] #=> String
1054
1065
  # resp.packaging_configurations[0].dash_package.encryption.speke_key_provider.url #=> String
1066
+ # resp.packaging_configurations[0].dash_package.include_encoder_configuration_in_segments #=> Boolean
1055
1067
  # resp.packaging_configurations[0].dash_package.period_triggers #=> Array
1056
1068
  # resp.packaging_configurations[0].dash_package.period_triggers[0] #=> String, one of "ADS"
1057
1069
  # resp.packaging_configurations[0].dash_package.segment_duration_seconds #=> Integer
@@ -1279,7 +1291,7 @@ module Aws::MediaPackageVod
1279
1291
  params: params,
1280
1292
  config: config)
1281
1293
  context[:gem_name] = 'aws-sdk-mediapackagevod'
1282
- context[:gem_version] = '1.22.0'
1294
+ context[:gem_version] = '1.26.0'
1283
1295
  Seahorse::Client::Request.new(handlers, context)
1284
1296
  end
1285
1297
 
@@ -142,11 +142,13 @@ 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
 
148
149
  CmafPackage.add_member(:encryption, Shapes::ShapeRef.new(shape: CmafEncryption, location_name: "encryption"))
149
150
  CmafPackage.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: __listOfHlsManifest, required: true, location_name: "hlsManifests"))
151
+ CmafPackage.add_member(:include_encoder_configuration_in_segments, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeEncoderConfigurationInSegments"))
150
152
  CmafPackage.add_member(:segment_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "segmentDurationSeconds"))
151
153
  CmafPackage.struct_class = Types::CmafPackage
152
154
 
@@ -229,6 +231,7 @@ module Aws::MediaPackageVod
229
231
 
230
232
  DashPackage.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: __listOfDashManifest, required: true, location_name: "dashManifests"))
231
233
  DashPackage.add_member(:encryption, Shapes::ShapeRef.new(shape: DashEncryption, location_name: "encryption"))
234
+ DashPackage.add_member(:include_encoder_configuration_in_segments, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeEncoderConfigurationInSegments"))
232
235
  DashPackage.add_member(:period_triggers, Shapes::ShapeRef.new(shape: __listOf__PeriodTriggersElement, location_name: "periodTriggers"))
233
236
  DashPackage.add_member(:segment_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "segmentDurationSeconds"))
234
237
  DashPackage.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: SegmentTemplateFormat, location_name: "segmentTemplateFormat"))
@@ -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
@@ -255,6 +265,7 @@ module Aws::MediaPackageVod
255
265
  # },
256
266
  # },
257
267
  # ],
268
+ # include_encoder_configuration_in_segments: false,
258
269
  # segment_duration_seconds: 1,
259
270
  # }
260
271
  #
@@ -266,6 +277,15 @@ module Aws::MediaPackageVod
266
277
  # A list of HLS manifest configurations.
267
278
  # @return [Array<Types::HlsManifest>]
268
279
  #
280
+ # @!attribute [rw] include_encoder_configuration_in_segments
281
+ # When includeEncoderConfigurationInSegments is set to true,
282
+ # MediaPackage places your encoder's Sequence Parameter Set (SPS),
283
+ # Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata
284
+ # in every video segment instead of in the init fragment. This lets
285
+ # you use different SPS/PPS/VPS settings for your assets during
286
+ # content playback.
287
+ # @return [Boolean]
288
+ #
269
289
  # @!attribute [rw] segment_duration_seconds
270
290
  # Duration (in seconds) of each fragment. Actual fragments will be
271
291
  # rounded to the nearest multiple of the source fragment duration.
@@ -276,6 +296,7 @@ module Aws::MediaPackageVod
276
296
  class CmafPackage < Struct.new(
277
297
  :encryption,
278
298
  :hls_manifests,
299
+ :include_encoder_configuration_in_segments,
279
300
  :segment_duration_seconds)
280
301
  SENSITIVE = []
281
302
  include Aws::Structure
@@ -451,6 +472,7 @@ module Aws::MediaPackageVod
451
472
  # {
452
473
  # cmaf_package: {
453
474
  # encryption: {
475
+ # constant_initialization_vector: "__string",
454
476
  # speke_key_provider: { # required
455
477
  # role_arn: "__string", # required
456
478
  # system_ids: ["__string"], # required
@@ -471,6 +493,7 @@ module Aws::MediaPackageVod
471
493
  # },
472
494
  # },
473
495
  # ],
496
+ # include_encoder_configuration_in_segments: false,
474
497
  # segment_duration_seconds: 1,
475
498
  # },
476
499
  # dash_package: {
@@ -494,6 +517,7 @@ module Aws::MediaPackageVod
494
517
  # url: "__string", # required
495
518
  # },
496
519
  # },
520
+ # include_encoder_configuration_in_segments: false,
497
521
  # period_triggers: ["ADS"], # accepts ADS
498
522
  # segment_duration_seconds: 1,
499
523
  # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
@@ -824,6 +848,7 @@ module Aws::MediaPackageVod
824
848
  # url: "__string", # required
825
849
  # },
826
850
  # },
851
+ # include_encoder_configuration_in_segments: false,
827
852
  # period_triggers: ["ADS"], # accepts ADS
828
853
  # segment_duration_seconds: 1,
829
854
  # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE, TIME_WITH_TIMELINE, NUMBER_WITH_DURATION
@@ -838,6 +863,15 @@ module Aws::MediaPackageVod
838
863
  # configuration.
839
864
  # @return [Types::DashEncryption]
840
865
  #
866
+ # @!attribute [rw] include_encoder_configuration_in_segments
867
+ # When includeEncoderConfigurationInSegments is set to true,
868
+ # MediaPackage places your encoder's Sequence Parameter Set (SPS),
869
+ # Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata
870
+ # in every video segment instead of in the init fragment. This lets
871
+ # you use different SPS/PPS/VPS settings for your assets during
872
+ # content playback.
873
+ # @return [Boolean]
874
+ #
841
875
  # @!attribute [rw] period_triggers
842
876
  # A list of triggers that controls when the outgoing Dynamic Adaptive
843
877
  # Streaming over HTTP (DASH) Media Presentation Description (MPD) will
@@ -867,6 +901,7 @@ module Aws::MediaPackageVod
867
901
  class DashPackage < Struct.new(
868
902
  :dash_manifests,
869
903
  :encryption,
904
+ :include_encoder_configuration_in_segments,
870
905
  :period_triggers,
871
906
  :segment_duration_seconds,
872
907
  :segment_template_format)
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.22.0
4
+ version: 1.26.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.119.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.119.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-mediapackagevod
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-mediapackagevod/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediapackagevod
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediapackagevod/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - MediaPackage Vod