aws-sdk-mediapackage 1.26.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-mediapackage.rb +3 -1
- data/lib/aws-sdk-mediapackage/client.rb +46 -33
- data/lib/aws-sdk-mediapackage/client_api.rb +2 -0
- data/lib/aws-sdk-mediapackage/errors.rb +2 -0
- data/lib/aws-sdk-mediapackage/resource.rb +3 -7
- data/lib/aws-sdk-mediapackage/types.rb +88 -10
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c2240d0a8aa956db464a712c11c97f4342828aa94437e3ce8eac4e4b69e01a66
|
4
|
+
data.tar.gz: 5e42aca9b2df1a110ce4f596054f7f37fecc7090987c20913f3a74efe3b0aeeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8f1768ff51db4aac63a30f9ee488b0543d236b711291156a87e9c3c2ce9cc762ed2e97c563a994db6edc8bec561d78ea51bfbea92caeb13519e04acbeeaade0
|
7
|
+
data.tar.gz: 92cb6d63732f3542434dab6cd6c459db4b79854d9e3ff45c6679163a590bf2ec73d8f1871be05bd82fa425d8bb5a69af41a01203f2fe9b46c49f53a11f0f418b
|
data/lib/aws-sdk-mediapackage.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-mediapackage/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::MediaPackage
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.31.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:mediapackage)
|
|
32
35
|
module Aws::MediaPackage
|
33
36
|
# An API client for MediaPackage. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::MediaPackage::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::MediaPackage
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::MediaPackage
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::MediaPackage
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::MediaPackage
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::MediaPackage
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::MediaPackage
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::MediaPackage
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -493,7 +500,7 @@ module Aws::MediaPackage
|
|
493
500
|
# },
|
494
501
|
# hls_manifests: [
|
495
502
|
# {
|
496
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
503
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
497
504
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
498
505
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
499
506
|
# id: "__string", # required
|
@@ -542,7 +549,7 @@ module Aws::MediaPackage
|
|
542
549
|
# },
|
543
550
|
# description: "__string",
|
544
551
|
# hls_package: {
|
545
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
552
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
546
553
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
547
554
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
548
555
|
# encryption: {
|
@@ -613,7 +620,7 @@ module Aws::MediaPackage
|
|
613
620
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
614
621
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
615
622
|
# resp.cmaf_package.hls_manifests #=> Array
|
616
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
623
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
617
624
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
618
625
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
619
626
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -650,7 +657,7 @@ module Aws::MediaPackage
|
|
650
657
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
651
658
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
652
659
|
# resp.description #=> String
|
653
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
660
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
654
661
|
# resp.hls_package.ad_triggers #=> Array
|
655
662
|
# resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
|
656
663
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -874,7 +881,7 @@ module Aws::MediaPackage
|
|
874
881
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
875
882
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
876
883
|
# resp.cmaf_package.hls_manifests #=> Array
|
877
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
884
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
878
885
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
879
886
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
880
887
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -911,7 +918,7 @@ module Aws::MediaPackage
|
|
911
918
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
912
919
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
913
920
|
# resp.description #=> String
|
914
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
921
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
915
922
|
# resp.hls_package.ad_triggers #=> Array
|
916
923
|
# resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
|
917
924
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -976,6 +983,8 @@ module Aws::MediaPackage
|
|
976
983
|
# * {Types::ListChannelsResponse#channels #channels} => Array<Types::Channel>
|
977
984
|
# * {Types::ListChannelsResponse#next_token #next_token} => String
|
978
985
|
#
|
986
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
987
|
+
#
|
979
988
|
# @example Request syntax with placeholder values
|
980
989
|
#
|
981
990
|
# resp = client.list_channels({
|
@@ -1022,6 +1031,8 @@ module Aws::MediaPackage
|
|
1022
1031
|
# * {Types::ListHarvestJobsResponse#harvest_jobs #harvest_jobs} => Array<Types::HarvestJob>
|
1023
1032
|
# * {Types::ListHarvestJobsResponse#next_token #next_token} => String
|
1024
1033
|
#
|
1034
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1035
|
+
#
|
1025
1036
|
# @example Request syntax with placeholder values
|
1026
1037
|
#
|
1027
1038
|
# resp = client.list_harvest_jobs({
|
@@ -1069,6 +1080,8 @@ module Aws::MediaPackage
|
|
1069
1080
|
# * {Types::ListOriginEndpointsResponse#next_token #next_token} => String
|
1070
1081
|
# * {Types::ListOriginEndpointsResponse#origin_endpoints #origin_endpoints} => Array<Types::OriginEndpoint>
|
1071
1082
|
#
|
1083
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1084
|
+
#
|
1072
1085
|
# @example Request syntax with placeholder values
|
1073
1086
|
#
|
1074
1087
|
# resp = client.list_origin_endpoints({
|
@@ -1093,7 +1106,7 @@ module Aws::MediaPackage
|
|
1093
1106
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1094
1107
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.url #=> String
|
1095
1108
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests #=> Array
|
1096
|
-
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1109
|
+
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1097
1110
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].id #=> String
|
1098
1111
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
1099
1112
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -1130,7 +1143,7 @@ module Aws::MediaPackage
|
|
1130
1143
|
# resp.origin_endpoints[0].dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
1131
1144
|
# resp.origin_endpoints[0].dash_package.suggested_presentation_delay_seconds #=> Integer
|
1132
1145
|
# resp.origin_endpoints[0].description #=> String
|
1133
|
-
# resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1146
|
+
# resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1134
1147
|
# resp.origin_endpoints[0].hls_package.ad_triggers #=> Array
|
1135
1148
|
# resp.origin_endpoints[0].hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
|
1136
1149
|
# resp.origin_endpoints[0].hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -1455,7 +1468,7 @@ module Aws::MediaPackage
|
|
1455
1468
|
# },
|
1456
1469
|
# hls_manifests: [
|
1457
1470
|
# {
|
1458
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1471
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1459
1472
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
1460
1473
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1461
1474
|
# id: "__string", # required
|
@@ -1504,7 +1517,7 @@ module Aws::MediaPackage
|
|
1504
1517
|
# },
|
1505
1518
|
# description: "__string",
|
1506
1519
|
# hls_package: {
|
1507
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1520
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1508
1521
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
1509
1522
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1510
1523
|
# encryption: {
|
@@ -1572,7 +1585,7 @@ module Aws::MediaPackage
|
|
1572
1585
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1573
1586
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
1574
1587
|
# resp.cmaf_package.hls_manifests #=> Array
|
1575
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1588
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1576
1589
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
1577
1590
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
1578
1591
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -1609,7 +1622,7 @@ module Aws::MediaPackage
|
|
1609
1622
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
1610
1623
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
1611
1624
|
# resp.description #=> String
|
1612
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1625
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1613
1626
|
# resp.hls_package.ad_triggers #=> Array
|
1614
1627
|
# resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
|
1615
1628
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -1676,7 +1689,7 @@ module Aws::MediaPackage
|
|
1676
1689
|
params: params,
|
1677
1690
|
config: config)
|
1678
1691
|
context[:gem_name] = 'aws-sdk-mediapackage'
|
1679
|
-
context[:gem_version] = '1.
|
1692
|
+
context[:gem_version] = '1.31.0'
|
1680
1693
|
Seahorse::Client::Request.new(handlers, context)
|
1681
1694
|
end
|
1682
1695
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MediaPackage
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::MediaPackage::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::MediaPackage::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::MediaPackage::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -34,6 +36,7 @@ module Aws::MediaPackage
|
|
34
36
|
class Authorization < Struct.new(
|
35
37
|
:cdn_identifier_secret,
|
36
38
|
:secrets_role_arn)
|
39
|
+
SENSITIVE = []
|
37
40
|
include Aws::Structure
|
38
41
|
end
|
39
42
|
|
@@ -67,6 +70,7 @@ module Aws::MediaPackage
|
|
67
70
|
:hls_ingest,
|
68
71
|
:id,
|
69
72
|
:tags)
|
73
|
+
SENSITIVE = []
|
70
74
|
include Aws::Structure
|
71
75
|
end
|
72
76
|
|
@@ -91,6 +95,7 @@ module Aws::MediaPackage
|
|
91
95
|
:description,
|
92
96
|
:id,
|
93
97
|
:tags)
|
98
|
+
SENSITIVE = []
|
94
99
|
include Aws::Structure
|
95
100
|
end
|
96
101
|
|
@@ -110,6 +115,7 @@ module Aws::MediaPackage
|
|
110
115
|
class ChannelList < Struct.new(
|
111
116
|
:channels,
|
112
117
|
:next_token)
|
118
|
+
SENSITIVE = []
|
113
119
|
include Aws::Structure
|
114
120
|
end
|
115
121
|
|
@@ -123,6 +129,7 @@ module Aws::MediaPackage
|
|
123
129
|
#
|
124
130
|
class ChannelUpdateParameters < Struct.new(
|
125
131
|
:description)
|
132
|
+
SENSITIVE = []
|
126
133
|
include Aws::Structure
|
127
134
|
end
|
128
135
|
|
@@ -157,6 +164,7 @@ module Aws::MediaPackage
|
|
157
164
|
class CmafEncryption < Struct.new(
|
158
165
|
:key_rotation_interval_seconds,
|
159
166
|
:speke_key_provider)
|
167
|
+
SENSITIVE = []
|
160
168
|
include Aws::Structure
|
161
169
|
end
|
162
170
|
|
@@ -192,6 +200,7 @@ module Aws::MediaPackage
|
|
192
200
|
:segment_duration_seconds,
|
193
201
|
:segment_prefix,
|
194
202
|
:stream_selection)
|
203
|
+
SENSITIVE = []
|
195
204
|
include Aws::Structure
|
196
205
|
end
|
197
206
|
|
@@ -213,7 +222,7 @@ module Aws::MediaPackage
|
|
213
222
|
# },
|
214
223
|
# hls_manifests: [
|
215
224
|
# {
|
216
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
225
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
217
226
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
218
227
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
219
228
|
# id: "__string", # required
|
@@ -263,6 +272,7 @@ module Aws::MediaPackage
|
|
263
272
|
:segment_duration_seconds,
|
264
273
|
:segment_prefix,
|
265
274
|
:stream_selection)
|
275
|
+
SENSITIVE = []
|
266
276
|
include Aws::Structure
|
267
277
|
end
|
268
278
|
|
@@ -293,6 +303,7 @@ module Aws::MediaPackage
|
|
293
303
|
:description,
|
294
304
|
:id,
|
295
305
|
:tags)
|
306
|
+
SENSITIVE = []
|
296
307
|
include Aws::Structure
|
297
308
|
end
|
298
309
|
|
@@ -321,6 +332,7 @@ module Aws::MediaPackage
|
|
321
332
|
:hls_ingest,
|
322
333
|
:id,
|
323
334
|
:tags)
|
335
|
+
SENSITIVE = []
|
324
336
|
include Aws::Structure
|
325
337
|
end
|
326
338
|
|
@@ -364,6 +376,7 @@ module Aws::MediaPackage
|
|
364
376
|
:origin_endpoint_id,
|
365
377
|
:s3_destination,
|
366
378
|
:start_time)
|
379
|
+
SENSITIVE = []
|
367
380
|
include Aws::Structure
|
368
381
|
end
|
369
382
|
|
@@ -408,6 +421,7 @@ module Aws::MediaPackage
|
|
408
421
|
:s3_destination,
|
409
422
|
:start_time,
|
410
423
|
:status)
|
424
|
+
SENSITIVE = []
|
411
425
|
include Aws::Structure
|
412
426
|
end
|
413
427
|
|
@@ -433,7 +447,7 @@ module Aws::MediaPackage
|
|
433
447
|
# },
|
434
448
|
# hls_manifests: [
|
435
449
|
# {
|
436
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
450
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
437
451
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
438
452
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
439
453
|
# id: "__string", # required
|
@@ -482,7 +496,7 @@ module Aws::MediaPackage
|
|
482
496
|
# },
|
483
497
|
# description: "__string",
|
484
498
|
# hls_package: {
|
485
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
499
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
486
500
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
487
501
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
488
502
|
# encryption: {
|
@@ -605,6 +619,7 @@ module Aws::MediaPackage
|
|
605
619
|
:tags,
|
606
620
|
:time_delay_seconds,
|
607
621
|
:whitelist)
|
622
|
+
SENSITIVE = []
|
608
623
|
include Aws::Structure
|
609
624
|
end
|
610
625
|
|
@@ -682,6 +697,7 @@ module Aws::MediaPackage
|
|
682
697
|
:time_delay_seconds,
|
683
698
|
:url,
|
684
699
|
:whitelist)
|
700
|
+
SENSITIVE = []
|
685
701
|
include Aws::Structure
|
686
702
|
end
|
687
703
|
|
@@ -717,6 +733,7 @@ module Aws::MediaPackage
|
|
717
733
|
class DashEncryption < Struct.new(
|
718
734
|
:key_rotation_interval_seconds,
|
719
735
|
:speke_key_provider)
|
736
|
+
SENSITIVE = []
|
720
737
|
include Aws::Structure
|
721
738
|
end
|
722
739
|
|
@@ -855,6 +872,7 @@ module Aws::MediaPackage
|
|
855
872
|
:segment_template_format,
|
856
873
|
:stream_selection,
|
857
874
|
:suggested_presentation_delay_seconds)
|
875
|
+
SENSITIVE = []
|
858
876
|
include Aws::Structure
|
859
877
|
end
|
860
878
|
|
@@ -872,6 +890,7 @@ module Aws::MediaPackage
|
|
872
890
|
#
|
873
891
|
class DeleteChannelRequest < Struct.new(
|
874
892
|
:id)
|
893
|
+
SENSITIVE = []
|
875
894
|
include Aws::Structure
|
876
895
|
end
|
877
896
|
|
@@ -893,6 +912,7 @@ module Aws::MediaPackage
|
|
893
912
|
#
|
894
913
|
class DeleteOriginEndpointRequest < Struct.new(
|
895
914
|
:id)
|
915
|
+
SENSITIVE = []
|
896
916
|
include Aws::Structure
|
897
917
|
end
|
898
918
|
|
@@ -914,6 +934,7 @@ module Aws::MediaPackage
|
|
914
934
|
#
|
915
935
|
class DescribeChannelRequest < Struct.new(
|
916
936
|
:id)
|
937
|
+
SENSITIVE = []
|
917
938
|
include Aws::Structure
|
918
939
|
end
|
919
940
|
|
@@ -942,6 +963,7 @@ module Aws::MediaPackage
|
|
942
963
|
:hls_ingest,
|
943
964
|
:id,
|
944
965
|
:tags)
|
966
|
+
SENSITIVE = []
|
945
967
|
include Aws::Structure
|
946
968
|
end
|
947
969
|
|
@@ -959,6 +981,7 @@ module Aws::MediaPackage
|
|
959
981
|
#
|
960
982
|
class DescribeHarvestJobRequest < Struct.new(
|
961
983
|
:id)
|
984
|
+
SENSITIVE = []
|
962
985
|
include Aws::Structure
|
963
986
|
end
|
964
987
|
|
@@ -1003,6 +1026,7 @@ module Aws::MediaPackage
|
|
1003
1026
|
:s3_destination,
|
1004
1027
|
:start_time,
|
1005
1028
|
:status)
|
1029
|
+
SENSITIVE = []
|
1006
1030
|
include Aws::Structure
|
1007
1031
|
end
|
1008
1032
|
|
@@ -1020,6 +1044,7 @@ module Aws::MediaPackage
|
|
1020
1044
|
#
|
1021
1045
|
class DescribeOriginEndpointRequest < Struct.new(
|
1022
1046
|
:id)
|
1047
|
+
SENSITIVE = []
|
1023
1048
|
include Aws::Structure
|
1024
1049
|
end
|
1025
1050
|
|
@@ -1097,6 +1122,7 @@ module Aws::MediaPackage
|
|
1097
1122
|
:time_delay_seconds,
|
1098
1123
|
:url,
|
1099
1124
|
:whitelist)
|
1125
|
+
SENSITIVE = []
|
1100
1126
|
include Aws::Structure
|
1101
1127
|
end
|
1102
1128
|
|
@@ -1107,6 +1133,7 @@ module Aws::MediaPackage
|
|
1107
1133
|
#
|
1108
1134
|
class ForbiddenException < Struct.new(
|
1109
1135
|
:message)
|
1136
|
+
SENSITIVE = []
|
1110
1137
|
include Aws::Structure
|
1111
1138
|
end
|
1112
1139
|
|
@@ -1166,6 +1193,7 @@ module Aws::MediaPackage
|
|
1166
1193
|
:s3_destination,
|
1167
1194
|
:start_time,
|
1168
1195
|
:status)
|
1196
|
+
SENSITIVE = []
|
1169
1197
|
include Aws::Structure
|
1170
1198
|
end
|
1171
1199
|
|
@@ -1202,6 +1230,7 @@ module Aws::MediaPackage
|
|
1202
1230
|
:origin_endpoint_id,
|
1203
1231
|
:s3_destination,
|
1204
1232
|
:start_time)
|
1233
|
+
SENSITIVE = []
|
1205
1234
|
include Aws::Structure
|
1206
1235
|
end
|
1207
1236
|
|
@@ -1221,6 +1250,7 @@ module Aws::MediaPackage
|
|
1221
1250
|
class HarvestJobList < Struct.new(
|
1222
1251
|
:harvest_jobs,
|
1223
1252
|
:next_token)
|
1253
|
+
SENSITIVE = []
|
1224
1254
|
include Aws::Structure
|
1225
1255
|
end
|
1226
1256
|
|
@@ -1275,6 +1305,7 @@ module Aws::MediaPackage
|
|
1275
1305
|
:key_rotation_interval_seconds,
|
1276
1306
|
:repeat_ext_x_key,
|
1277
1307
|
:speke_key_provider)
|
1308
|
+
SENSITIVE = []
|
1278
1309
|
include Aws::Structure
|
1279
1310
|
end
|
1280
1311
|
|
@@ -1288,6 +1319,7 @@ module Aws::MediaPackage
|
|
1288
1319
|
#
|
1289
1320
|
class HlsIngest < Struct.new(
|
1290
1321
|
:ingest_endpoints)
|
1322
|
+
SENSITIVE = []
|
1291
1323
|
include Aws::Structure
|
1292
1324
|
end
|
1293
1325
|
|
@@ -1300,7 +1332,10 @@ module Aws::MediaPackage
|
|
1300
1332
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1301
1333
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1302
1334
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1303
|
-
# source.
|
1335
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1336
|
+
# program transition events in HLS and CMAF manifests. For this
|
1337
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1338
|
+
# greater than 0.
|
1304
1339
|
# @return [String]
|
1305
1340
|
#
|
1306
1341
|
# @!attribute [rw] id
|
@@ -1355,6 +1390,7 @@ module Aws::MediaPackage
|
|
1355
1390
|
:playlist_window_seconds,
|
1356
1391
|
:program_date_time_interval_seconds,
|
1357
1392
|
:url)
|
1393
|
+
SENSITIVE = []
|
1358
1394
|
include Aws::Structure
|
1359
1395
|
end
|
1360
1396
|
|
@@ -1364,7 +1400,7 @@ module Aws::MediaPackage
|
|
1364
1400
|
# data as a hash:
|
1365
1401
|
#
|
1366
1402
|
# {
|
1367
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1403
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1368
1404
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
1369
1405
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1370
1406
|
# id: "__string", # required
|
@@ -1382,7 +1418,10 @@ module Aws::MediaPackage
|
|
1382
1418
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1383
1419
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1384
1420
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1385
|
-
# source.
|
1421
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1422
|
+
# program transition events in HLS and CMAF manifests. For this
|
1423
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1424
|
+
# greater than 0.
|
1386
1425
|
# @return [String]
|
1387
1426
|
#
|
1388
1427
|
# @!attribute [rw] ad_triggers
|
@@ -1454,6 +1493,7 @@ module Aws::MediaPackage
|
|
1454
1493
|
:playlist_type,
|
1455
1494
|
:playlist_window_seconds,
|
1456
1495
|
:program_date_time_interval_seconds)
|
1496
|
+
SENSITIVE = []
|
1457
1497
|
include Aws::Structure
|
1458
1498
|
end
|
1459
1499
|
|
@@ -1463,7 +1503,7 @@ module Aws::MediaPackage
|
|
1463
1503
|
# data as a hash:
|
1464
1504
|
#
|
1465
1505
|
# {
|
1466
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1506
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1467
1507
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
1468
1508
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1469
1509
|
# encryption: {
|
@@ -1499,7 +1539,10 @@ module Aws::MediaPackage
|
|
1499
1539
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1500
1540
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1501
1541
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1502
|
-
# source.
|
1542
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1543
|
+
# program transition events in HLS and CMAF manifests. For this
|
1544
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1545
|
+
# greater than 0.
|
1503
1546
|
# @return [String]
|
1504
1547
|
#
|
1505
1548
|
# @!attribute [rw] ad_triggers
|
@@ -1580,6 +1623,7 @@ module Aws::MediaPackage
|
|
1580
1623
|
:segment_duration_seconds,
|
1581
1624
|
:stream_selection,
|
1582
1625
|
:use_audio_rendition_group)
|
1626
|
+
SENSITIVE = []
|
1583
1627
|
include Aws::Structure
|
1584
1628
|
end
|
1585
1629
|
|
@@ -1608,6 +1652,7 @@ module Aws::MediaPackage
|
|
1608
1652
|
:password,
|
1609
1653
|
:url,
|
1610
1654
|
:username)
|
1655
|
+
SENSITIVE = []
|
1611
1656
|
include Aws::Structure
|
1612
1657
|
end
|
1613
1658
|
|
@@ -1618,6 +1663,7 @@ module Aws::MediaPackage
|
|
1618
1663
|
#
|
1619
1664
|
class InternalServerErrorException < Struct.new(
|
1620
1665
|
:message)
|
1666
|
+
SENSITIVE = []
|
1621
1667
|
include Aws::Structure
|
1622
1668
|
end
|
1623
1669
|
|
@@ -1640,6 +1686,7 @@ module Aws::MediaPackage
|
|
1640
1686
|
class ListChannelsRequest < Struct.new(
|
1641
1687
|
:max_results,
|
1642
1688
|
:next_token)
|
1689
|
+
SENSITIVE = []
|
1643
1690
|
include Aws::Structure
|
1644
1691
|
end
|
1645
1692
|
|
@@ -1654,6 +1701,7 @@ module Aws::MediaPackage
|
|
1654
1701
|
class ListChannelsResponse < Struct.new(
|
1655
1702
|
:channels,
|
1656
1703
|
:next_token)
|
1704
|
+
SENSITIVE = []
|
1657
1705
|
include Aws::Structure
|
1658
1706
|
end
|
1659
1707
|
|
@@ -1686,6 +1734,7 @@ module Aws::MediaPackage
|
|
1686
1734
|
:include_status,
|
1687
1735
|
:max_results,
|
1688
1736
|
:next_token)
|
1737
|
+
SENSITIVE = []
|
1689
1738
|
include Aws::Structure
|
1690
1739
|
end
|
1691
1740
|
|
@@ -1700,6 +1749,7 @@ module Aws::MediaPackage
|
|
1700
1749
|
class ListHarvestJobsResponse < Struct.new(
|
1701
1750
|
:harvest_jobs,
|
1702
1751
|
:next_token)
|
1752
|
+
SENSITIVE = []
|
1703
1753
|
include Aws::Structure
|
1704
1754
|
end
|
1705
1755
|
|
@@ -1727,6 +1777,7 @@ module Aws::MediaPackage
|
|
1727
1777
|
:channel_id,
|
1728
1778
|
:max_results,
|
1729
1779
|
:next_token)
|
1780
|
+
SENSITIVE = []
|
1730
1781
|
include Aws::Structure
|
1731
1782
|
end
|
1732
1783
|
|
@@ -1741,6 +1792,7 @@ module Aws::MediaPackage
|
|
1741
1792
|
class ListOriginEndpointsResponse < Struct.new(
|
1742
1793
|
:next_token,
|
1743
1794
|
:origin_endpoints)
|
1795
|
+
SENSITIVE = []
|
1744
1796
|
include Aws::Structure
|
1745
1797
|
end
|
1746
1798
|
|
@@ -1758,6 +1810,7 @@ module Aws::MediaPackage
|
|
1758
1810
|
#
|
1759
1811
|
class ListTagsForResourceRequest < Struct.new(
|
1760
1812
|
:resource_arn)
|
1813
|
+
SENSITIVE = []
|
1761
1814
|
include Aws::Structure
|
1762
1815
|
end
|
1763
1816
|
|
@@ -1768,6 +1821,7 @@ module Aws::MediaPackage
|
|
1768
1821
|
#
|
1769
1822
|
class ListTagsForResourceResponse < Struct.new(
|
1770
1823
|
:tags)
|
1824
|
+
SENSITIVE = []
|
1771
1825
|
include Aws::Structure
|
1772
1826
|
end
|
1773
1827
|
|
@@ -1796,6 +1850,7 @@ module Aws::MediaPackage
|
|
1796
1850
|
#
|
1797
1851
|
class MssEncryption < Struct.new(
|
1798
1852
|
:speke_key_provider)
|
1853
|
+
SENSITIVE = []
|
1799
1854
|
include Aws::Structure
|
1800
1855
|
end
|
1801
1856
|
|
@@ -1846,6 +1901,7 @@ module Aws::MediaPackage
|
|
1846
1901
|
:manifest_window_seconds,
|
1847
1902
|
:segment_duration_seconds,
|
1848
1903
|
:stream_selection)
|
1904
|
+
SENSITIVE = []
|
1849
1905
|
include Aws::Structure
|
1850
1906
|
end
|
1851
1907
|
|
@@ -1856,6 +1912,7 @@ module Aws::MediaPackage
|
|
1856
1912
|
#
|
1857
1913
|
class NotFoundException < Struct.new(
|
1858
1914
|
:message)
|
1915
|
+
SENSITIVE = []
|
1859
1916
|
include Aws::Structure
|
1860
1917
|
end
|
1861
1918
|
|
@@ -1954,6 +2011,7 @@ module Aws::MediaPackage
|
|
1954
2011
|
:time_delay_seconds,
|
1955
2012
|
:url,
|
1956
2013
|
:whitelist)
|
2014
|
+
SENSITIVE = []
|
1957
2015
|
include Aws::Structure
|
1958
2016
|
end
|
1959
2017
|
|
@@ -2045,6 +2103,7 @@ module Aws::MediaPackage
|
|
2045
2103
|
:tags,
|
2046
2104
|
:time_delay_seconds,
|
2047
2105
|
:whitelist)
|
2106
|
+
SENSITIVE = []
|
2048
2107
|
include Aws::Structure
|
2049
2108
|
end
|
2050
2109
|
|
@@ -2064,6 +2123,7 @@ module Aws::MediaPackage
|
|
2064
2123
|
class OriginEndpointList < Struct.new(
|
2065
2124
|
:next_token,
|
2066
2125
|
:origin_endpoints)
|
2126
|
+
SENSITIVE = []
|
2067
2127
|
include Aws::Structure
|
2068
2128
|
end
|
2069
2129
|
|
@@ -2137,6 +2197,7 @@ module Aws::MediaPackage
|
|
2137
2197
|
:startover_window_seconds,
|
2138
2198
|
:time_delay_seconds,
|
2139
2199
|
:whitelist)
|
2200
|
+
SENSITIVE = []
|
2140
2201
|
include Aws::Structure
|
2141
2202
|
end
|
2142
2203
|
|
@@ -2154,6 +2215,7 @@ module Aws::MediaPackage
|
|
2154
2215
|
#
|
2155
2216
|
class RotateChannelCredentialsRequest < Struct.new(
|
2156
2217
|
:id)
|
2218
|
+
SENSITIVE = []
|
2157
2219
|
include Aws::Structure
|
2158
2220
|
end
|
2159
2221
|
|
@@ -2182,6 +2244,7 @@ module Aws::MediaPackage
|
|
2182
2244
|
:hls_ingest,
|
2183
2245
|
:id,
|
2184
2246
|
:tags)
|
2247
|
+
SENSITIVE = []
|
2185
2248
|
include Aws::Structure
|
2186
2249
|
end
|
2187
2250
|
|
@@ -2204,6 +2267,7 @@ module Aws::MediaPackage
|
|
2204
2267
|
class RotateIngestEndpointCredentialsRequest < Struct.new(
|
2205
2268
|
:id,
|
2206
2269
|
:ingest_endpoint_id)
|
2270
|
+
SENSITIVE = []
|
2207
2271
|
include Aws::Structure
|
2208
2272
|
end
|
2209
2273
|
|
@@ -2232,6 +2296,7 @@ module Aws::MediaPackage
|
|
2232
2296
|
:hls_ingest,
|
2233
2297
|
:id,
|
2234
2298
|
:tags)
|
2299
|
+
SENSITIVE = []
|
2235
2300
|
include Aws::Structure
|
2236
2301
|
end
|
2237
2302
|
|
@@ -2267,6 +2332,7 @@ module Aws::MediaPackage
|
|
2267
2332
|
:bucket_name,
|
2268
2333
|
:manifest_key,
|
2269
2334
|
:role_arn)
|
2335
|
+
SENSITIVE = []
|
2270
2336
|
include Aws::Structure
|
2271
2337
|
end
|
2272
2338
|
|
@@ -2277,6 +2343,7 @@ module Aws::MediaPackage
|
|
2277
2343
|
#
|
2278
2344
|
class ServiceUnavailableException < Struct.new(
|
2279
2345
|
:message)
|
2346
|
+
SENSITIVE = []
|
2280
2347
|
include Aws::Structure
|
2281
2348
|
end
|
2282
2349
|
|
@@ -2325,6 +2392,7 @@ module Aws::MediaPackage
|
|
2325
2392
|
:role_arn,
|
2326
2393
|
:system_ids,
|
2327
2394
|
:url)
|
2395
|
+
SENSITIVE = []
|
2328
2396
|
include Aws::Structure
|
2329
2397
|
end
|
2330
2398
|
|
@@ -2357,6 +2425,7 @@ module Aws::MediaPackage
|
|
2357
2425
|
:max_video_bits_per_second,
|
2358
2426
|
:min_video_bits_per_second,
|
2359
2427
|
:stream_order)
|
2428
|
+
SENSITIVE = []
|
2360
2429
|
include Aws::Structure
|
2361
2430
|
end
|
2362
2431
|
|
@@ -2381,6 +2450,7 @@ module Aws::MediaPackage
|
|
2381
2450
|
class TagResourceRequest < Struct.new(
|
2382
2451
|
:resource_arn,
|
2383
2452
|
:tags)
|
2453
|
+
SENSITIVE = []
|
2384
2454
|
include Aws::Structure
|
2385
2455
|
end
|
2386
2456
|
|
@@ -2391,6 +2461,7 @@ module Aws::MediaPackage
|
|
2391
2461
|
#
|
2392
2462
|
class TagsModel < Struct.new(
|
2393
2463
|
:tags)
|
2464
|
+
SENSITIVE = []
|
2394
2465
|
include Aws::Structure
|
2395
2466
|
end
|
2396
2467
|
|
@@ -2401,6 +2472,7 @@ module Aws::MediaPackage
|
|
2401
2472
|
#
|
2402
2473
|
class TooManyRequestsException < Struct.new(
|
2403
2474
|
:message)
|
2475
|
+
SENSITIVE = []
|
2404
2476
|
include Aws::Structure
|
2405
2477
|
end
|
2406
2478
|
|
@@ -2411,6 +2483,7 @@ module Aws::MediaPackage
|
|
2411
2483
|
#
|
2412
2484
|
class UnprocessableEntityException < Struct.new(
|
2413
2485
|
:message)
|
2486
|
+
SENSITIVE = []
|
2414
2487
|
include Aws::Structure
|
2415
2488
|
end
|
2416
2489
|
|
@@ -2433,6 +2506,7 @@ module Aws::MediaPackage
|
|
2433
2506
|
class UntagResourceRequest < Struct.new(
|
2434
2507
|
:resource_arn,
|
2435
2508
|
:tag_keys)
|
2509
|
+
SENSITIVE = []
|
2436
2510
|
include Aws::Structure
|
2437
2511
|
end
|
2438
2512
|
|
@@ -2455,6 +2529,7 @@ module Aws::MediaPackage
|
|
2455
2529
|
class UpdateChannelRequest < Struct.new(
|
2456
2530
|
:description,
|
2457
2531
|
:id)
|
2532
|
+
SENSITIVE = []
|
2458
2533
|
include Aws::Structure
|
2459
2534
|
end
|
2460
2535
|
|
@@ -2483,6 +2558,7 @@ module Aws::MediaPackage
|
|
2483
2558
|
:hls_ingest,
|
2484
2559
|
:id,
|
2485
2560
|
:tags)
|
2561
|
+
SENSITIVE = []
|
2486
2562
|
include Aws::Structure
|
2487
2563
|
end
|
2488
2564
|
|
@@ -2507,7 +2583,7 @@ module Aws::MediaPackage
|
|
2507
2583
|
# },
|
2508
2584
|
# hls_manifests: [
|
2509
2585
|
# {
|
2510
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
2586
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
2511
2587
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
2512
2588
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
2513
2589
|
# id: "__string", # required
|
@@ -2556,7 +2632,7 @@ module Aws::MediaPackage
|
|
2556
2632
|
# },
|
2557
2633
|
# description: "__string",
|
2558
2634
|
# hls_package: {
|
2559
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
2635
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
2560
2636
|
# ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
|
2561
2637
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
2562
2638
|
# encryption: {
|
@@ -2667,6 +2743,7 @@ module Aws::MediaPackage
|
|
2667
2743
|
:startover_window_seconds,
|
2668
2744
|
:time_delay_seconds,
|
2669
2745
|
:whitelist)
|
2746
|
+
SENSITIVE = []
|
2670
2747
|
include Aws::Structure
|
2671
2748
|
end
|
2672
2749
|
|
@@ -2744,6 +2821,7 @@ module Aws::MediaPackage
|
|
2744
2821
|
:time_delay_seconds,
|
2745
2822
|
:url,
|
2746
2823
|
:whitelist)
|
2824
|
+
SENSITIVE = []
|
2747
2825
|
include Aws::Structure
|
2748
2826
|
end
|
2749
2827
|
|
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.31.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-07-24 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - MediaPackage
|