aws-sdk-mediapackage 1.28.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-mediapackage.rb +4 -2
- data/lib/aws-sdk-mediapackage/client.rb +52 -21
- data/lib/aws-sdk-mediapackage/client_api.rb +5 -0
- data/lib/aws-sdk-mediapackage/errors.rb +2 -0
- data/lib/aws-sdk-mediapackage/resource.rb +2 -0
- data/lib/aws-sdk-mediapackage/types.rb +107 -11
- 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: 75709b13e11ac57dbeff5ec3e78ed5dd2e41258a0cda3d002837fa61a0970f1b
|
4
|
+
data.tar.gz: 5709a5decc43e086197534572f1e558c82ffe7b7c0e56cbeee2f1c021c5243ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7aeed4eff805da5620c63968d4b181c7c8616a1df720a406208351b7883ee7dab5c076ee3c21ffb0730a8fcd64d8e7d21af3e3ffae64c5f4c1c498db877a34e7
|
7
|
+
data.tar.gz: 671eda2069ea85aff874509cf78388569eba94266d2dd0b715521ef0e84e9a1fb50e5aff823df9188c8c11cc6a822c5f7b1365b196c43e317f60c9879585b470
|
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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-mediapackage/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::MediaPackage
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.33.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
|
|
@@ -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
|
|
@@ -81,13 +85,28 @@ module Aws::MediaPackage
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::MediaPackage
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::MediaPackage
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -496,7 +515,7 @@ module Aws::MediaPackage
|
|
496
515
|
# },
|
497
516
|
# hls_manifests: [
|
498
517
|
# {
|
499
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
518
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
500
519
|
# 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
|
501
520
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
502
521
|
# id: "__string", # required
|
@@ -542,10 +561,12 @@ module Aws::MediaPackage
|
|
542
561
|
# stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
|
543
562
|
# },
|
544
563
|
# suggested_presentation_delay_seconds: 1,
|
564
|
+
# utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
|
565
|
+
# utc_timing_uri: "__string",
|
545
566
|
# },
|
546
567
|
# description: "__string",
|
547
568
|
# hls_package: {
|
548
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
569
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
549
570
|
# 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
|
550
571
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
551
572
|
# encryption: {
|
@@ -616,7 +637,7 @@ module Aws::MediaPackage
|
|
616
637
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
617
638
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
618
639
|
# resp.cmaf_package.hls_manifests #=> Array
|
619
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
640
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
620
641
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
621
642
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
622
643
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -652,8 +673,10 @@ module Aws::MediaPackage
|
|
652
673
|
# resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
|
653
674
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
654
675
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
676
|
+
# resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
|
677
|
+
# resp.dash_package.utc_timing_uri #=> String
|
655
678
|
# resp.description #=> String
|
656
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
679
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
657
680
|
# resp.hls_package.ad_triggers #=> Array
|
658
681
|
# 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"
|
659
682
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -877,7 +900,7 @@ module Aws::MediaPackage
|
|
877
900
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
878
901
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
879
902
|
# resp.cmaf_package.hls_manifests #=> Array
|
880
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
903
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
881
904
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
882
905
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
883
906
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -913,8 +936,10 @@ module Aws::MediaPackage
|
|
913
936
|
# resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
|
914
937
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
915
938
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
939
|
+
# resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
|
940
|
+
# resp.dash_package.utc_timing_uri #=> String
|
916
941
|
# resp.description #=> String
|
917
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
942
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
918
943
|
# resp.hls_package.ad_triggers #=> Array
|
919
944
|
# 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"
|
920
945
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -1102,7 +1127,7 @@ module Aws::MediaPackage
|
|
1102
1127
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1103
1128
|
# resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.url #=> String
|
1104
1129
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests #=> Array
|
1105
|
-
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1130
|
+
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1106
1131
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].id #=> String
|
1107
1132
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
1108
1133
|
# resp.origin_endpoints[0].cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -1138,8 +1163,10 @@ module Aws::MediaPackage
|
|
1138
1163
|
# resp.origin_endpoints[0].dash_package.stream_selection.min_video_bits_per_second #=> Integer
|
1139
1164
|
# resp.origin_endpoints[0].dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
1140
1165
|
# resp.origin_endpoints[0].dash_package.suggested_presentation_delay_seconds #=> Integer
|
1166
|
+
# resp.origin_endpoints[0].dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
|
1167
|
+
# resp.origin_endpoints[0].dash_package.utc_timing_uri #=> String
|
1141
1168
|
# resp.origin_endpoints[0].description #=> String
|
1142
|
-
# resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1169
|
+
# resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1143
1170
|
# resp.origin_endpoints[0].hls_package.ad_triggers #=> Array
|
1144
1171
|
# 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"
|
1145
1172
|
# resp.origin_endpoints[0].hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -1464,7 +1491,7 @@ module Aws::MediaPackage
|
|
1464
1491
|
# },
|
1465
1492
|
# hls_manifests: [
|
1466
1493
|
# {
|
1467
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1494
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1468
1495
|
# 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
|
1469
1496
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1470
1497
|
# id: "__string", # required
|
@@ -1510,10 +1537,12 @@ module Aws::MediaPackage
|
|
1510
1537
|
# stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
|
1511
1538
|
# },
|
1512
1539
|
# suggested_presentation_delay_seconds: 1,
|
1540
|
+
# utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
|
1541
|
+
# utc_timing_uri: "__string",
|
1513
1542
|
# },
|
1514
1543
|
# description: "__string",
|
1515
1544
|
# hls_package: {
|
1516
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1545
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1517
1546
|
# 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
|
1518
1547
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1519
1548
|
# encryption: {
|
@@ -1581,7 +1610,7 @@ module Aws::MediaPackage
|
|
1581
1610
|
# resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
|
1582
1611
|
# resp.cmaf_package.encryption.speke_key_provider.url #=> String
|
1583
1612
|
# resp.cmaf_package.hls_manifests #=> Array
|
1584
|
-
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1613
|
+
# resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1585
1614
|
# resp.cmaf_package.hls_manifests[0].id #=> String
|
1586
1615
|
# resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
|
1587
1616
|
# resp.cmaf_package.hls_manifests[0].manifest_name #=> String
|
@@ -1617,8 +1646,10 @@ module Aws::MediaPackage
|
|
1617
1646
|
# resp.dash_package.stream_selection.min_video_bits_per_second #=> Integer
|
1618
1647
|
# resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
|
1619
1648
|
# resp.dash_package.suggested_presentation_delay_seconds #=> Integer
|
1649
|
+
# resp.dash_package.utc_timing #=> String, one of "NONE", "HTTP-HEAD", "HTTP-ISO"
|
1650
|
+
# resp.dash_package.utc_timing_uri #=> String
|
1620
1651
|
# resp.description #=> String
|
1621
|
-
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
|
1652
|
+
# resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
|
1622
1653
|
# resp.hls_package.ad_triggers #=> Array
|
1623
1654
|
# 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"
|
1624
1655
|
# resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
|
@@ -1685,7 +1716,7 @@ module Aws::MediaPackage
|
|
1685
1716
|
params: params,
|
1686
1717
|
config: config)
|
1687
1718
|
context[:gem_name] = 'aws-sdk-mediapackage'
|
1688
|
-
context[:gem_version] = '1.
|
1719
|
+
context[:gem_version] = '1.33.0'
|
1689
1720
|
Seahorse::Client::Request.new(handlers, context)
|
1690
1721
|
end
|
1691
1722
|
|
@@ -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:
|
@@ -93,6 +95,7 @@ module Aws::MediaPackage
|
|
93
95
|
UpdateChannelResponse = Shapes::StructureShape.new(name: 'UpdateChannelResponse')
|
94
96
|
UpdateOriginEndpointRequest = Shapes::StructureShape.new(name: 'UpdateOriginEndpointRequest')
|
95
97
|
UpdateOriginEndpointResponse = Shapes::StructureShape.new(name: 'UpdateOriginEndpointResponse')
|
98
|
+
UtcTiming = Shapes::StringShape.new(name: 'UtcTiming')
|
96
99
|
__AdTriggersElement = Shapes::StringShape.new(name: '__AdTriggersElement')
|
97
100
|
__PeriodTriggersElement = Shapes::StringShape.new(name: '__PeriodTriggersElement')
|
98
101
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
@@ -234,6 +237,8 @@ module Aws::MediaPackage
|
|
234
237
|
DashPackage.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: SegmentTemplateFormat, location_name: "segmentTemplateFormat"))
|
235
238
|
DashPackage.add_member(:stream_selection, Shapes::ShapeRef.new(shape: StreamSelection, location_name: "streamSelection"))
|
236
239
|
DashPackage.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "suggestedPresentationDelaySeconds"))
|
240
|
+
DashPackage.add_member(:utc_timing, Shapes::ShapeRef.new(shape: UtcTiming, location_name: "utcTiming"))
|
241
|
+
DashPackage.add_member(:utc_timing_uri, Shapes::ShapeRef.new(shape: __string, location_name: "utcTimingUri"))
|
237
242
|
DashPackage.struct_class = Types::DashPackage
|
238
243
|
|
239
244
|
DeleteChannelRequest.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "id"))
|
@@ -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
|
@@ -479,10 +493,12 @@ module Aws::MediaPackage
|
|
479
493
|
# stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
|
480
494
|
# },
|
481
495
|
# suggested_presentation_delay_seconds: 1,
|
496
|
+
# utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
|
497
|
+
# utc_timing_uri: "__string",
|
482
498
|
# },
|
483
499
|
# description: "__string",
|
484
500
|
# hls_package: {
|
485
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
501
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
486
502
|
# 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
503
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
488
504
|
# encryption: {
|
@@ -605,6 +621,7 @@ module Aws::MediaPackage
|
|
605
621
|
:tags,
|
606
622
|
:time_delay_seconds,
|
607
623
|
:whitelist)
|
624
|
+
SENSITIVE = []
|
608
625
|
include Aws::Structure
|
609
626
|
end
|
610
627
|
|
@@ -682,6 +699,7 @@ module Aws::MediaPackage
|
|
682
699
|
:time_delay_seconds,
|
683
700
|
:url,
|
684
701
|
:whitelist)
|
702
|
+
SENSITIVE = []
|
685
703
|
include Aws::Structure
|
686
704
|
end
|
687
705
|
|
@@ -717,6 +735,7 @@ module Aws::MediaPackage
|
|
717
735
|
class DashEncryption < Struct.new(
|
718
736
|
:key_rotation_interval_seconds,
|
719
737
|
:speke_key_provider)
|
738
|
+
SENSITIVE = []
|
720
739
|
include Aws::Structure
|
721
740
|
end
|
722
741
|
|
@@ -752,6 +771,8 @@ module Aws::MediaPackage
|
|
752
771
|
# stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
|
753
772
|
# },
|
754
773
|
# suggested_presentation_delay_seconds: 1,
|
774
|
+
# utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
|
775
|
+
# utc_timing_uri: "__string",
|
755
776
|
# }
|
756
777
|
#
|
757
778
|
# @!attribute [rw] ad_triggers
|
@@ -839,6 +860,16 @@ module Aws::MediaPackage
|
|
839
860
|
# Duration (in seconds) to delay live content before presentation.
|
840
861
|
# @return [Integer]
|
841
862
|
#
|
863
|
+
# @!attribute [rw] utc_timing
|
864
|
+
# Determines the type of UTCTiming included in the Media Presentation
|
865
|
+
# Description (MPD)
|
866
|
+
# @return [String]
|
867
|
+
#
|
868
|
+
# @!attribute [rw] utc_timing_uri
|
869
|
+
# Specifies the value attribute of the UTCTiming field when utcTiming
|
870
|
+
# is set to HTTP-ISO or HTTP-HEAD
|
871
|
+
# @return [String]
|
872
|
+
#
|
842
873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackage-2017-10-12/DashPackage AWS API Documentation
|
843
874
|
#
|
844
875
|
class DashPackage < Struct.new(
|
@@ -854,7 +885,10 @@ module Aws::MediaPackage
|
|
854
885
|
:segment_duration_seconds,
|
855
886
|
:segment_template_format,
|
856
887
|
:stream_selection,
|
857
|
-
:suggested_presentation_delay_seconds
|
888
|
+
:suggested_presentation_delay_seconds,
|
889
|
+
:utc_timing,
|
890
|
+
:utc_timing_uri)
|
891
|
+
SENSITIVE = []
|
858
892
|
include Aws::Structure
|
859
893
|
end
|
860
894
|
|
@@ -872,6 +906,7 @@ module Aws::MediaPackage
|
|
872
906
|
#
|
873
907
|
class DeleteChannelRequest < Struct.new(
|
874
908
|
:id)
|
909
|
+
SENSITIVE = []
|
875
910
|
include Aws::Structure
|
876
911
|
end
|
877
912
|
|
@@ -893,6 +928,7 @@ module Aws::MediaPackage
|
|
893
928
|
#
|
894
929
|
class DeleteOriginEndpointRequest < Struct.new(
|
895
930
|
:id)
|
931
|
+
SENSITIVE = []
|
896
932
|
include Aws::Structure
|
897
933
|
end
|
898
934
|
|
@@ -914,6 +950,7 @@ module Aws::MediaPackage
|
|
914
950
|
#
|
915
951
|
class DescribeChannelRequest < Struct.new(
|
916
952
|
:id)
|
953
|
+
SENSITIVE = []
|
917
954
|
include Aws::Structure
|
918
955
|
end
|
919
956
|
|
@@ -942,6 +979,7 @@ module Aws::MediaPackage
|
|
942
979
|
:hls_ingest,
|
943
980
|
:id,
|
944
981
|
:tags)
|
982
|
+
SENSITIVE = []
|
945
983
|
include Aws::Structure
|
946
984
|
end
|
947
985
|
|
@@ -959,6 +997,7 @@ module Aws::MediaPackage
|
|
959
997
|
#
|
960
998
|
class DescribeHarvestJobRequest < Struct.new(
|
961
999
|
:id)
|
1000
|
+
SENSITIVE = []
|
962
1001
|
include Aws::Structure
|
963
1002
|
end
|
964
1003
|
|
@@ -1003,6 +1042,7 @@ module Aws::MediaPackage
|
|
1003
1042
|
:s3_destination,
|
1004
1043
|
:start_time,
|
1005
1044
|
:status)
|
1045
|
+
SENSITIVE = []
|
1006
1046
|
include Aws::Structure
|
1007
1047
|
end
|
1008
1048
|
|
@@ -1020,6 +1060,7 @@ module Aws::MediaPackage
|
|
1020
1060
|
#
|
1021
1061
|
class DescribeOriginEndpointRequest < Struct.new(
|
1022
1062
|
:id)
|
1063
|
+
SENSITIVE = []
|
1023
1064
|
include Aws::Structure
|
1024
1065
|
end
|
1025
1066
|
|
@@ -1097,6 +1138,7 @@ module Aws::MediaPackage
|
|
1097
1138
|
:time_delay_seconds,
|
1098
1139
|
:url,
|
1099
1140
|
:whitelist)
|
1141
|
+
SENSITIVE = []
|
1100
1142
|
include Aws::Structure
|
1101
1143
|
end
|
1102
1144
|
|
@@ -1107,6 +1149,7 @@ module Aws::MediaPackage
|
|
1107
1149
|
#
|
1108
1150
|
class ForbiddenException < Struct.new(
|
1109
1151
|
:message)
|
1152
|
+
SENSITIVE = []
|
1110
1153
|
include Aws::Structure
|
1111
1154
|
end
|
1112
1155
|
|
@@ -1166,6 +1209,7 @@ module Aws::MediaPackage
|
|
1166
1209
|
:s3_destination,
|
1167
1210
|
:start_time,
|
1168
1211
|
:status)
|
1212
|
+
SENSITIVE = []
|
1169
1213
|
include Aws::Structure
|
1170
1214
|
end
|
1171
1215
|
|
@@ -1202,6 +1246,7 @@ module Aws::MediaPackage
|
|
1202
1246
|
:origin_endpoint_id,
|
1203
1247
|
:s3_destination,
|
1204
1248
|
:start_time)
|
1249
|
+
SENSITIVE = []
|
1205
1250
|
include Aws::Structure
|
1206
1251
|
end
|
1207
1252
|
|
@@ -1221,6 +1266,7 @@ module Aws::MediaPackage
|
|
1221
1266
|
class HarvestJobList < Struct.new(
|
1222
1267
|
:harvest_jobs,
|
1223
1268
|
:next_token)
|
1269
|
+
SENSITIVE = []
|
1224
1270
|
include Aws::Structure
|
1225
1271
|
end
|
1226
1272
|
|
@@ -1275,6 +1321,7 @@ module Aws::MediaPackage
|
|
1275
1321
|
:key_rotation_interval_seconds,
|
1276
1322
|
:repeat_ext_x_key,
|
1277
1323
|
:speke_key_provider)
|
1324
|
+
SENSITIVE = []
|
1278
1325
|
include Aws::Structure
|
1279
1326
|
end
|
1280
1327
|
|
@@ -1288,6 +1335,7 @@ module Aws::MediaPackage
|
|
1288
1335
|
#
|
1289
1336
|
class HlsIngest < Struct.new(
|
1290
1337
|
:ingest_endpoints)
|
1338
|
+
SENSITIVE = []
|
1291
1339
|
include Aws::Structure
|
1292
1340
|
end
|
1293
1341
|
|
@@ -1300,7 +1348,10 @@ module Aws::MediaPackage
|
|
1300
1348
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1301
1349
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1302
1350
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1303
|
-
# source.
|
1351
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1352
|
+
# program transition events in HLS and CMAF manifests. For this
|
1353
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1354
|
+
# greater than 0.
|
1304
1355
|
# @return [String]
|
1305
1356
|
#
|
1306
1357
|
# @!attribute [rw] id
|
@@ -1355,6 +1406,7 @@ module Aws::MediaPackage
|
|
1355
1406
|
:playlist_window_seconds,
|
1356
1407
|
:program_date_time_interval_seconds,
|
1357
1408
|
:url)
|
1409
|
+
SENSITIVE = []
|
1358
1410
|
include Aws::Structure
|
1359
1411
|
end
|
1360
1412
|
|
@@ -1364,7 +1416,7 @@ module Aws::MediaPackage
|
|
1364
1416
|
# data as a hash:
|
1365
1417
|
#
|
1366
1418
|
# {
|
1367
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1419
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1368
1420
|
# 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
1421
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1370
1422
|
# id: "__string", # required
|
@@ -1382,7 +1434,10 @@ module Aws::MediaPackage
|
|
1382
1434
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1383
1435
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1384
1436
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1385
|
-
# source.
|
1437
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1438
|
+
# program transition events in HLS and CMAF manifests. For this
|
1439
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1440
|
+
# greater than 0.
|
1386
1441
|
# @return [String]
|
1387
1442
|
#
|
1388
1443
|
# @!attribute [rw] ad_triggers
|
@@ -1454,6 +1509,7 @@ module Aws::MediaPackage
|
|
1454
1509
|
:playlist_type,
|
1455
1510
|
:playlist_window_seconds,
|
1456
1511
|
:program_date_time_interval_seconds)
|
1512
|
+
SENSITIVE = []
|
1457
1513
|
include Aws::Structure
|
1458
1514
|
end
|
1459
1515
|
|
@@ -1463,7 +1519,7 @@ module Aws::MediaPackage
|
|
1463
1519
|
# data as a hash:
|
1464
1520
|
#
|
1465
1521
|
# {
|
1466
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
1522
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
1467
1523
|
# 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
1524
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
1469
1525
|
# encryption: {
|
@@ -1499,7 +1555,10 @@ module Aws::MediaPackage
|
|
1499
1555
|
# SCTE-35 ad markers (comments) taken directly from the input HTTP
|
1500
1556
|
# Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
|
1501
1557
|
# markers and blackout tags based on SCTE-35 messages in the input
|
1502
|
-
# source.
|
1558
|
+
# source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
|
1559
|
+
# program transition events in HLS and CMAF manifests. For this
|
1560
|
+
# option, you must set a programDateTimeIntervalSeconds value that is
|
1561
|
+
# greater than 0.
|
1503
1562
|
# @return [String]
|
1504
1563
|
#
|
1505
1564
|
# @!attribute [rw] ad_triggers
|
@@ -1580,6 +1639,7 @@ module Aws::MediaPackage
|
|
1580
1639
|
:segment_duration_seconds,
|
1581
1640
|
:stream_selection,
|
1582
1641
|
:use_audio_rendition_group)
|
1642
|
+
SENSITIVE = []
|
1583
1643
|
include Aws::Structure
|
1584
1644
|
end
|
1585
1645
|
|
@@ -1608,6 +1668,7 @@ module Aws::MediaPackage
|
|
1608
1668
|
:password,
|
1609
1669
|
:url,
|
1610
1670
|
:username)
|
1671
|
+
SENSITIVE = []
|
1611
1672
|
include Aws::Structure
|
1612
1673
|
end
|
1613
1674
|
|
@@ -1618,6 +1679,7 @@ module Aws::MediaPackage
|
|
1618
1679
|
#
|
1619
1680
|
class InternalServerErrorException < Struct.new(
|
1620
1681
|
:message)
|
1682
|
+
SENSITIVE = []
|
1621
1683
|
include Aws::Structure
|
1622
1684
|
end
|
1623
1685
|
|
@@ -1640,6 +1702,7 @@ module Aws::MediaPackage
|
|
1640
1702
|
class ListChannelsRequest < Struct.new(
|
1641
1703
|
:max_results,
|
1642
1704
|
:next_token)
|
1705
|
+
SENSITIVE = []
|
1643
1706
|
include Aws::Structure
|
1644
1707
|
end
|
1645
1708
|
|
@@ -1654,6 +1717,7 @@ module Aws::MediaPackage
|
|
1654
1717
|
class ListChannelsResponse < Struct.new(
|
1655
1718
|
:channels,
|
1656
1719
|
:next_token)
|
1720
|
+
SENSITIVE = []
|
1657
1721
|
include Aws::Structure
|
1658
1722
|
end
|
1659
1723
|
|
@@ -1686,6 +1750,7 @@ module Aws::MediaPackage
|
|
1686
1750
|
:include_status,
|
1687
1751
|
:max_results,
|
1688
1752
|
:next_token)
|
1753
|
+
SENSITIVE = []
|
1689
1754
|
include Aws::Structure
|
1690
1755
|
end
|
1691
1756
|
|
@@ -1700,6 +1765,7 @@ module Aws::MediaPackage
|
|
1700
1765
|
class ListHarvestJobsResponse < Struct.new(
|
1701
1766
|
:harvest_jobs,
|
1702
1767
|
:next_token)
|
1768
|
+
SENSITIVE = []
|
1703
1769
|
include Aws::Structure
|
1704
1770
|
end
|
1705
1771
|
|
@@ -1727,6 +1793,7 @@ module Aws::MediaPackage
|
|
1727
1793
|
:channel_id,
|
1728
1794
|
:max_results,
|
1729
1795
|
:next_token)
|
1796
|
+
SENSITIVE = []
|
1730
1797
|
include Aws::Structure
|
1731
1798
|
end
|
1732
1799
|
|
@@ -1741,6 +1808,7 @@ module Aws::MediaPackage
|
|
1741
1808
|
class ListOriginEndpointsResponse < Struct.new(
|
1742
1809
|
:next_token,
|
1743
1810
|
:origin_endpoints)
|
1811
|
+
SENSITIVE = []
|
1744
1812
|
include Aws::Structure
|
1745
1813
|
end
|
1746
1814
|
|
@@ -1758,6 +1826,7 @@ module Aws::MediaPackage
|
|
1758
1826
|
#
|
1759
1827
|
class ListTagsForResourceRequest < Struct.new(
|
1760
1828
|
:resource_arn)
|
1829
|
+
SENSITIVE = []
|
1761
1830
|
include Aws::Structure
|
1762
1831
|
end
|
1763
1832
|
|
@@ -1768,6 +1837,7 @@ module Aws::MediaPackage
|
|
1768
1837
|
#
|
1769
1838
|
class ListTagsForResourceResponse < Struct.new(
|
1770
1839
|
:tags)
|
1840
|
+
SENSITIVE = []
|
1771
1841
|
include Aws::Structure
|
1772
1842
|
end
|
1773
1843
|
|
@@ -1796,6 +1866,7 @@ module Aws::MediaPackage
|
|
1796
1866
|
#
|
1797
1867
|
class MssEncryption < Struct.new(
|
1798
1868
|
:speke_key_provider)
|
1869
|
+
SENSITIVE = []
|
1799
1870
|
include Aws::Structure
|
1800
1871
|
end
|
1801
1872
|
|
@@ -1846,6 +1917,7 @@ module Aws::MediaPackage
|
|
1846
1917
|
:manifest_window_seconds,
|
1847
1918
|
:segment_duration_seconds,
|
1848
1919
|
:stream_selection)
|
1920
|
+
SENSITIVE = []
|
1849
1921
|
include Aws::Structure
|
1850
1922
|
end
|
1851
1923
|
|
@@ -1856,6 +1928,7 @@ module Aws::MediaPackage
|
|
1856
1928
|
#
|
1857
1929
|
class NotFoundException < Struct.new(
|
1858
1930
|
:message)
|
1931
|
+
SENSITIVE = []
|
1859
1932
|
include Aws::Structure
|
1860
1933
|
end
|
1861
1934
|
|
@@ -1954,6 +2027,7 @@ module Aws::MediaPackage
|
|
1954
2027
|
:time_delay_seconds,
|
1955
2028
|
:url,
|
1956
2029
|
:whitelist)
|
2030
|
+
SENSITIVE = []
|
1957
2031
|
include Aws::Structure
|
1958
2032
|
end
|
1959
2033
|
|
@@ -2045,6 +2119,7 @@ module Aws::MediaPackage
|
|
2045
2119
|
:tags,
|
2046
2120
|
:time_delay_seconds,
|
2047
2121
|
:whitelist)
|
2122
|
+
SENSITIVE = []
|
2048
2123
|
include Aws::Structure
|
2049
2124
|
end
|
2050
2125
|
|
@@ -2064,6 +2139,7 @@ module Aws::MediaPackage
|
|
2064
2139
|
class OriginEndpointList < Struct.new(
|
2065
2140
|
:next_token,
|
2066
2141
|
:origin_endpoints)
|
2142
|
+
SENSITIVE = []
|
2067
2143
|
include Aws::Structure
|
2068
2144
|
end
|
2069
2145
|
|
@@ -2137,6 +2213,7 @@ module Aws::MediaPackage
|
|
2137
2213
|
:startover_window_seconds,
|
2138
2214
|
:time_delay_seconds,
|
2139
2215
|
:whitelist)
|
2216
|
+
SENSITIVE = []
|
2140
2217
|
include Aws::Structure
|
2141
2218
|
end
|
2142
2219
|
|
@@ -2154,6 +2231,7 @@ module Aws::MediaPackage
|
|
2154
2231
|
#
|
2155
2232
|
class RotateChannelCredentialsRequest < Struct.new(
|
2156
2233
|
:id)
|
2234
|
+
SENSITIVE = []
|
2157
2235
|
include Aws::Structure
|
2158
2236
|
end
|
2159
2237
|
|
@@ -2182,6 +2260,7 @@ module Aws::MediaPackage
|
|
2182
2260
|
:hls_ingest,
|
2183
2261
|
:id,
|
2184
2262
|
:tags)
|
2263
|
+
SENSITIVE = []
|
2185
2264
|
include Aws::Structure
|
2186
2265
|
end
|
2187
2266
|
|
@@ -2204,6 +2283,7 @@ module Aws::MediaPackage
|
|
2204
2283
|
class RotateIngestEndpointCredentialsRequest < Struct.new(
|
2205
2284
|
:id,
|
2206
2285
|
:ingest_endpoint_id)
|
2286
|
+
SENSITIVE = []
|
2207
2287
|
include Aws::Structure
|
2208
2288
|
end
|
2209
2289
|
|
@@ -2232,6 +2312,7 @@ module Aws::MediaPackage
|
|
2232
2312
|
:hls_ingest,
|
2233
2313
|
:id,
|
2234
2314
|
:tags)
|
2315
|
+
SENSITIVE = []
|
2235
2316
|
include Aws::Structure
|
2236
2317
|
end
|
2237
2318
|
|
@@ -2267,6 +2348,7 @@ module Aws::MediaPackage
|
|
2267
2348
|
:bucket_name,
|
2268
2349
|
:manifest_key,
|
2269
2350
|
:role_arn)
|
2351
|
+
SENSITIVE = []
|
2270
2352
|
include Aws::Structure
|
2271
2353
|
end
|
2272
2354
|
|
@@ -2277,6 +2359,7 @@ module Aws::MediaPackage
|
|
2277
2359
|
#
|
2278
2360
|
class ServiceUnavailableException < Struct.new(
|
2279
2361
|
:message)
|
2362
|
+
SENSITIVE = []
|
2280
2363
|
include Aws::Structure
|
2281
2364
|
end
|
2282
2365
|
|
@@ -2325,6 +2408,7 @@ module Aws::MediaPackage
|
|
2325
2408
|
:role_arn,
|
2326
2409
|
:system_ids,
|
2327
2410
|
:url)
|
2411
|
+
SENSITIVE = []
|
2328
2412
|
include Aws::Structure
|
2329
2413
|
end
|
2330
2414
|
|
@@ -2357,6 +2441,7 @@ module Aws::MediaPackage
|
|
2357
2441
|
:max_video_bits_per_second,
|
2358
2442
|
:min_video_bits_per_second,
|
2359
2443
|
:stream_order)
|
2444
|
+
SENSITIVE = []
|
2360
2445
|
include Aws::Structure
|
2361
2446
|
end
|
2362
2447
|
|
@@ -2381,6 +2466,7 @@ module Aws::MediaPackage
|
|
2381
2466
|
class TagResourceRequest < Struct.new(
|
2382
2467
|
:resource_arn,
|
2383
2468
|
:tags)
|
2469
|
+
SENSITIVE = []
|
2384
2470
|
include Aws::Structure
|
2385
2471
|
end
|
2386
2472
|
|
@@ -2391,6 +2477,7 @@ module Aws::MediaPackage
|
|
2391
2477
|
#
|
2392
2478
|
class TagsModel < Struct.new(
|
2393
2479
|
:tags)
|
2480
|
+
SENSITIVE = []
|
2394
2481
|
include Aws::Structure
|
2395
2482
|
end
|
2396
2483
|
|
@@ -2401,6 +2488,7 @@ module Aws::MediaPackage
|
|
2401
2488
|
#
|
2402
2489
|
class TooManyRequestsException < Struct.new(
|
2403
2490
|
:message)
|
2491
|
+
SENSITIVE = []
|
2404
2492
|
include Aws::Structure
|
2405
2493
|
end
|
2406
2494
|
|
@@ -2411,6 +2499,7 @@ module Aws::MediaPackage
|
|
2411
2499
|
#
|
2412
2500
|
class UnprocessableEntityException < Struct.new(
|
2413
2501
|
:message)
|
2502
|
+
SENSITIVE = []
|
2414
2503
|
include Aws::Structure
|
2415
2504
|
end
|
2416
2505
|
|
@@ -2433,6 +2522,7 @@ module Aws::MediaPackage
|
|
2433
2522
|
class UntagResourceRequest < Struct.new(
|
2434
2523
|
:resource_arn,
|
2435
2524
|
:tag_keys)
|
2525
|
+
SENSITIVE = []
|
2436
2526
|
include Aws::Structure
|
2437
2527
|
end
|
2438
2528
|
|
@@ -2455,6 +2545,7 @@ module Aws::MediaPackage
|
|
2455
2545
|
class UpdateChannelRequest < Struct.new(
|
2456
2546
|
:description,
|
2457
2547
|
:id)
|
2548
|
+
SENSITIVE = []
|
2458
2549
|
include Aws::Structure
|
2459
2550
|
end
|
2460
2551
|
|
@@ -2483,6 +2574,7 @@ module Aws::MediaPackage
|
|
2483
2574
|
:hls_ingest,
|
2484
2575
|
:id,
|
2485
2576
|
:tags)
|
2577
|
+
SENSITIVE = []
|
2486
2578
|
include Aws::Structure
|
2487
2579
|
end
|
2488
2580
|
|
@@ -2507,7 +2599,7 @@ module Aws::MediaPackage
|
|
2507
2599
|
# },
|
2508
2600
|
# hls_manifests: [
|
2509
2601
|
# {
|
2510
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
2602
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
2511
2603
|
# 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
2604
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
2513
2605
|
# id: "__string", # required
|
@@ -2553,10 +2645,12 @@ module Aws::MediaPackage
|
|
2553
2645
|
# stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
|
2554
2646
|
# },
|
2555
2647
|
# suggested_presentation_delay_seconds: 1,
|
2648
|
+
# utc_timing: "NONE", # accepts NONE, HTTP-HEAD, HTTP-ISO
|
2649
|
+
# utc_timing_uri: "__string",
|
2556
2650
|
# },
|
2557
2651
|
# description: "__string",
|
2558
2652
|
# hls_package: {
|
2559
|
-
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
|
2653
|
+
# ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
|
2560
2654
|
# 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
2655
|
# ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
|
2562
2656
|
# encryption: {
|
@@ -2667,6 +2761,7 @@ module Aws::MediaPackage
|
|
2667
2761
|
:startover_window_seconds,
|
2668
2762
|
:time_delay_seconds,
|
2669
2763
|
:whitelist)
|
2764
|
+
SENSITIVE = []
|
2670
2765
|
include Aws::Structure
|
2671
2766
|
end
|
2672
2767
|
|
@@ -2744,6 +2839,7 @@ module Aws::MediaPackage
|
|
2744
2839
|
:time_delay_seconds,
|
2745
2840
|
:url,
|
2746
2841
|
:whitelist)
|
2842
|
+
SENSITIVE = []
|
2747
2843
|
include Aws::Structure
|
2748
2844
|
end
|
2749
2845
|
|
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.33.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-09-03 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
|