aws-sdk-mediapackage 1.43.0 → 1.47.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackage/client.rb +16 -1
- data/lib/aws-sdk-mediapackage/client_api.rb +1 -0
- data/lib/aws-sdk-mediapackage/types.rb +15 -6
- data/lib/aws-sdk-mediapackage.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0f2c7181a3c494ceed957cb9cbc972e2d2c0b71557890d8e2f045719d98a8a4
|
4
|
+
data.tar.gz: 618b8d88ab04c2d6b7b0b7d83f4c96879864ed066b93a6ba019ae49df3438672
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fab4f8cd26b1b40da827469b1722fb26c2216d944b3282091fe5388c6533382088b979709e42b5cac5ef5a6b7edea17b687d90503cf96b60e411975e1d7f7af3
|
7
|
+
data.tar.gz: a9b7fde6b7ed797eb461662d1445e7a765b9b2739409301b72e8b17af28182306475891cc6dfd64f981b0ce8147ba625de3742d7d1a54d597341ecc2de2e1091
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.46.0 (2021-10-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
|
13
|
+
|
14
|
+
1.45.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.44.0 (2021-09-07)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - SPEKE v2 support for live CMAF packaging type. SPEKE v2 is an upgrade to the existing SPEKE API to support multiple encryption keys, it supports live DASH currently.
|
23
|
+
|
4
24
|
1.43.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -275,6 +275,15 @@ module Aws::MediaPackage
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -655,6 +664,7 @@ module Aws::MediaPackage
|
|
655
664
|
# url: "__string", # required
|
656
665
|
# },
|
657
666
|
# },
|
667
|
+
# include_dvb_subtitles: false,
|
658
668
|
# include_iframe_only_stream: false,
|
659
669
|
# playlist_type: "NONE", # accepts NONE, EVENT, VOD
|
660
670
|
# playlist_window_seconds: 1,
|
@@ -774,6 +784,7 @@ module Aws::MediaPackage
|
|
774
784
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
775
785
|
# resp.hls_package.encryption.speke_key_provider.system_ids[0] #=> String
|
776
786
|
# resp.hls_package.encryption.speke_key_provider.url #=> String
|
787
|
+
# resp.hls_package.include_dvb_subtitles #=> Boolean
|
777
788
|
# resp.hls_package.include_iframe_only_stream #=> Boolean
|
778
789
|
# resp.hls_package.playlist_type #=> String, one of "NONE", "EVENT", "VOD"
|
779
790
|
# resp.hls_package.playlist_window_seconds #=> Integer
|
@@ -1050,6 +1061,7 @@ module Aws::MediaPackage
|
|
1050
1061
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
1051
1062
|
# resp.hls_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1052
1063
|
# resp.hls_package.encryption.speke_key_provider.url #=> String
|
1064
|
+
# resp.hls_package.include_dvb_subtitles #=> Boolean
|
1053
1065
|
# resp.hls_package.include_iframe_only_stream #=> Boolean
|
1054
1066
|
# resp.hls_package.playlist_type #=> String, one of "NONE", "EVENT", "VOD"
|
1055
1067
|
# resp.hls_package.playlist_window_seconds #=> Integer
|
@@ -1288,6 +1300,7 @@ module Aws::MediaPackage
|
|
1288
1300
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.system_ids #=> Array
|
1289
1301
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1290
1302
|
# resp.origin_endpoints[0].hls_package.encryption.speke_key_provider.url #=> String
|
1303
|
+
# resp.origin_endpoints[0].hls_package.include_dvb_subtitles #=> Boolean
|
1291
1304
|
# resp.origin_endpoints[0].hls_package.include_iframe_only_stream #=> Boolean
|
1292
1305
|
# resp.origin_endpoints[0].hls_package.playlist_type #=> String, one of "NONE", "EVENT", "VOD"
|
1293
1306
|
# resp.origin_endpoints[0].hls_package.playlist_window_seconds #=> Integer
|
@@ -1693,6 +1706,7 @@ module Aws::MediaPackage
|
|
1693
1706
|
# url: "__string", # required
|
1694
1707
|
# },
|
1695
1708
|
# },
|
1709
|
+
# include_dvb_subtitles: false,
|
1696
1710
|
# include_iframe_only_stream: false,
|
1697
1711
|
# playlist_type: "NONE", # accepts NONE, EVENT, VOD
|
1698
1712
|
# playlist_window_seconds: 1,
|
@@ -1809,6 +1823,7 @@ module Aws::MediaPackage
|
|
1809
1823
|
# resp.hls_package.encryption.speke_key_provider.system_ids #=> Array
|
1810
1824
|
# resp.hls_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1811
1825
|
# resp.hls_package.encryption.speke_key_provider.url #=> String
|
1826
|
+
# resp.hls_package.include_dvb_subtitles #=> Boolean
|
1812
1827
|
# resp.hls_package.include_iframe_only_stream #=> Boolean
|
1813
1828
|
# resp.hls_package.playlist_type #=> String, one of "NONE", "EVENT", "VOD"
|
1814
1829
|
# resp.hls_package.playlist_window_seconds #=> Integer
|
@@ -1864,7 +1879,7 @@ module Aws::MediaPackage
|
|
1864
1879
|
params: params,
|
1865
1880
|
config: config)
|
1866
1881
|
context[:gem_name] = 'aws-sdk-mediapackage'
|
1867
|
-
context[:gem_version] = '1.
|
1882
|
+
context[:gem_version] = '1.47.0'
|
1868
1883
|
Seahorse::Client::Request.new(handlers, context)
|
1869
1884
|
end
|
1870
1885
|
|
@@ -396,6 +396,7 @@ module Aws::MediaPackage
|
|
396
396
|
HlsPackage.add_member(:ad_triggers, Shapes::ShapeRef.new(shape: AdTriggers, location_name: "adTriggers"))
|
397
397
|
HlsPackage.add_member(:ads_on_delivery_restrictions, Shapes::ShapeRef.new(shape: AdsOnDeliveryRestrictions, location_name: "adsOnDeliveryRestrictions"))
|
398
398
|
HlsPackage.add_member(:encryption, Shapes::ShapeRef.new(shape: HlsEncryption, location_name: "encryption"))
|
399
|
+
HlsPackage.add_member(:include_dvb_subtitles, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeDvbSubtitles"))
|
399
400
|
HlsPackage.add_member(:include_iframe_only_stream, Shapes::ShapeRef.new(shape: __boolean, location_name: "includeIframeOnlyStream"))
|
400
401
|
HlsPackage.add_member(:playlist_type, Shapes::ShapeRef.new(shape: PlaylistType, location_name: "playlistType"))
|
401
402
|
HlsPackage.add_member(:playlist_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "playlistWindowSeconds"))
|
@@ -657,6 +657,7 @@ module Aws::MediaPackage
|
|
657
657
|
# url: "__string", # required
|
658
658
|
# },
|
659
659
|
# },
|
660
|
+
# include_dvb_subtitles: false,
|
660
661
|
# include_iframe_only_stream: false,
|
661
662
|
# playlist_type: "NONE", # accepts NONE, EVENT, VOD
|
662
663
|
# playlist_window_seconds: 1,
|
@@ -1334,9 +1335,9 @@ module Aws::MediaPackage
|
|
1334
1335
|
# video tracks in your stream. To configure the encryption contract,
|
1335
1336
|
# specify which audio and video encryption presets to use. Note the
|
1336
1337
|
# following considerations when using encryptionContractConfiguration:
|
1337
|
-
# encryptionContractConfiguration can be used for DASH endpoints
|
1338
|
-
# use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3 specification.
|
1339
|
-
# must disable key rotation for this endpoint by setting
|
1338
|
+
# encryptionContractConfiguration can be used for DASH or CMAF endpoints
|
1339
|
+
# that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3 specification.
|
1340
|
+
# You must disable key rotation for this endpoint by setting
|
1340
1341
|
# keyRotationIntervalSeconds to 0.
|
1341
1342
|
#
|
1342
1343
|
# @note When making an API call, you may pass EncryptionContractConfiguration
|
@@ -1765,6 +1766,7 @@ module Aws::MediaPackage
|
|
1765
1766
|
# url: "__string", # required
|
1766
1767
|
# },
|
1767
1768
|
# },
|
1769
|
+
# include_dvb_subtitles: false,
|
1768
1770
|
# include_iframe_only_stream: false,
|
1769
1771
|
# playlist_type: "NONE", # accepts NONE, EVENT, VOD
|
1770
1772
|
# playlist_window_seconds: 1,
|
@@ -1815,6 +1817,11 @@ module Aws::MediaPackage
|
|
1815
1817
|
# An HTTP Live Streaming (HLS) encryption configuration.
|
1816
1818
|
# @return [Types::HlsEncryption]
|
1817
1819
|
#
|
1820
|
+
# @!attribute [rw] include_dvb_subtitles
|
1821
|
+
# When enabled, MediaPackage passes through digital video broadcasting
|
1822
|
+
# (DVB) subtitles into the output.
|
1823
|
+
# @return [Boolean]
|
1824
|
+
#
|
1818
1825
|
# @!attribute [rw] include_iframe_only_stream
|
1819
1826
|
# When enabled, an I-Frame only stream will be included in the output.
|
1820
1827
|
# @return [Boolean]
|
@@ -1862,6 +1869,7 @@ module Aws::MediaPackage
|
|
1862
1869
|
:ad_triggers,
|
1863
1870
|
:ads_on_delivery_restrictions,
|
1864
1871
|
:encryption,
|
1872
|
+
:include_dvb_subtitles,
|
1865
1873
|
:include_iframe_only_stream,
|
1866
1874
|
:playlist_type,
|
1867
1875
|
:playlist_window_seconds,
|
@@ -2674,9 +2682,9 @@ module Aws::MediaPackage
|
|
2674
2682
|
# encryption contract, specify which audio and video encryption
|
2675
2683
|
# presets to use. Note the following considerations when using
|
2676
2684
|
# encryptionContractConfiguration: encryptionContractConfiguration can
|
2677
|
-
# be used for DASH endpoints that use SPEKE 2.0. SPEKE 2.0
|
2678
|
-
# the CPIX 2.3 specification. You must disable key rotation
|
2679
|
-
# endpoint by setting keyRotationIntervalSeconds to 0.
|
2685
|
+
# be used for DASH or CMAF endpoints that use SPEKE 2.0. SPEKE 2.0
|
2686
|
+
# relies on the CPIX 2.3 specification. You must disable key rotation
|
2687
|
+
# for this endpoint by setting keyRotationIntervalSeconds to 0.
|
2680
2688
|
# @return [Types::EncryptionContractConfiguration]
|
2681
2689
|
#
|
2682
2690
|
# @!attribute [rw] resource_id
|
@@ -2986,6 +2994,7 @@ module Aws::MediaPackage
|
|
2986
2994
|
# url: "__string", # required
|
2987
2995
|
# },
|
2988
2996
|
# },
|
2997
|
+
# include_dvb_subtitles: false,
|
2989
2998
|
# include_iframe_only_stream: false,
|
2990
2999
|
# playlist_type: "NONE", # accepts NONE, EVENT, VOD
|
2991
3000
|
# playlist_window_seconds: 1,
|
data/lib/aws-sdk-mediapackage.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediapackage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.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-11-04 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.
|
22
|
+
version: 3.122.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.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|