aws-sdk-mediapackage 1.25.0 → 1.30.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 +9 -4
- data/lib/aws-sdk-mediapackage/client.rb +78 -14
- data/lib/aws-sdk-mediapackage/client_api.rb +2 -0
- data/lib/aws-sdk-mediapackage/errors.rb +30 -6
- data/lib/aws-sdk-mediapackage/resource.rb +3 -0
- data/lib/aws-sdk-mediapackage/types.rb +69 -0
- 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: 0b25db9f5ddf2dd763e3fc603d190fed40358e3985b1d4875c2004f81f3e3ac5
|
4
|
+
data.tar.gz: bc82b6a5ed8bbc73ff2a9dc6295e0a130ef3c4a41f2c18ee264f1f0cf847635b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baba65238b9ee5b305bcfc11c15d0c46acbcd993ffcf183a859ef05dca96c76dd0b72bdf9489e8d839b490f426a02e14a888db30b0d8e3593a75a4c0c1fd04da
|
7
|
+
data.tar.gz: 18d180acdf1e5c1500b74cc8119595510c94e4340d2e394a493ad07a69089146e3f5aec35e2a2c59ee96971f931fa3db3723cf839457ad2064b704c52908a944
|
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:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-mediapackage/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# media_package = Aws::MediaPackage::Client.new
|
30
|
+
# resp = media_package.create_channel(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Elemental MediaPackage
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Elemental MediaPackage are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::MediaPackage::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Elemental MediaPackage API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-mediapackage/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::MediaPackage
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.30.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:mediapackage)
|
31
34
|
|
32
35
|
module Aws::MediaPackage
|
36
|
+
# An API client for MediaPackage. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::MediaPackage::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::MediaPackage
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::MediaPackage
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::MediaPackage
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::MediaPackage
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::MediaPackage
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::MediaPackage
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# 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.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::MediaPackage
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::MediaPackage
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
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
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::MediaPackage
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::MediaPackage
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -925,6 +983,8 @@ module Aws::MediaPackage
|
|
925
983
|
# * {Types::ListChannelsResponse#channels #channels} => Array<Types::Channel>
|
926
984
|
# * {Types::ListChannelsResponse#next_token #next_token} => String
|
927
985
|
#
|
986
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
987
|
+
#
|
928
988
|
# @example Request syntax with placeholder values
|
929
989
|
#
|
930
990
|
# resp = client.list_channels({
|
@@ -971,6 +1031,8 @@ module Aws::MediaPackage
|
|
971
1031
|
# * {Types::ListHarvestJobsResponse#harvest_jobs #harvest_jobs} => Array<Types::HarvestJob>
|
972
1032
|
# * {Types::ListHarvestJobsResponse#next_token #next_token} => String
|
973
1033
|
#
|
1034
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1035
|
+
#
|
974
1036
|
# @example Request syntax with placeholder values
|
975
1037
|
#
|
976
1038
|
# resp = client.list_harvest_jobs({
|
@@ -1018,6 +1080,8 @@ module Aws::MediaPackage
|
|
1018
1080
|
# * {Types::ListOriginEndpointsResponse#next_token #next_token} => String
|
1019
1081
|
# * {Types::ListOriginEndpointsResponse#origin_endpoints #origin_endpoints} => Array<Types::OriginEndpoint>
|
1020
1082
|
#
|
1083
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1084
|
+
#
|
1021
1085
|
# @example Request syntax with placeholder values
|
1022
1086
|
#
|
1023
1087
|
# resp = client.list_origin_endpoints({
|
@@ -1625,7 +1689,7 @@ module Aws::MediaPackage
|
|
1625
1689
|
params: params,
|
1626
1690
|
config: config)
|
1627
1691
|
context[:gem_name] = 'aws-sdk-mediapackage'
|
1628
|
-
context[:gem_version] = '1.
|
1692
|
+
context[:gem_version] = '1.30.0'
|
1629
1693
|
Seahorse::Client::Request.new(handlers, context)
|
1630
1694
|
end
|
1631
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,6 +8,34 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MediaPackage
|
11
|
+
|
12
|
+
# When MediaPackage returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::MediaPackage::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all MediaPackage errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::MediaPackage::Errors::ServiceError
|
20
|
+
# # rescues all MediaPackage API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {ForbiddenException}
|
31
|
+
# * {InternalServerErrorException}
|
32
|
+
# * {NotFoundException}
|
33
|
+
# * {ServiceUnavailableException}
|
34
|
+
# * {TooManyRequestsException}
|
35
|
+
# * {UnprocessableEntityException}
|
36
|
+
#
|
37
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
38
|
+
# if they are not defined above.
|
9
39
|
module Errors
|
10
40
|
|
11
41
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +53,6 @@ module Aws::MediaPackage
|
|
23
53
|
def message
|
24
54
|
@message || @data[:message]
|
25
55
|
end
|
26
|
-
|
27
56
|
end
|
28
57
|
|
29
58
|
class InternalServerErrorException < ServiceError
|
@@ -39,7 +68,6 @@ module Aws::MediaPackage
|
|
39
68
|
def message
|
40
69
|
@message || @data[:message]
|
41
70
|
end
|
42
|
-
|
43
71
|
end
|
44
72
|
|
45
73
|
class NotFoundException < ServiceError
|
@@ -55,7 +83,6 @@ module Aws::MediaPackage
|
|
55
83
|
def message
|
56
84
|
@message || @data[:message]
|
57
85
|
end
|
58
|
-
|
59
86
|
end
|
60
87
|
|
61
88
|
class ServiceUnavailableException < ServiceError
|
@@ -71,7 +98,6 @@ module Aws::MediaPackage
|
|
71
98
|
def message
|
72
99
|
@message || @data[:message]
|
73
100
|
end
|
74
|
-
|
75
101
|
end
|
76
102
|
|
77
103
|
class TooManyRequestsException < ServiceError
|
@@ -87,7 +113,6 @@ module Aws::MediaPackage
|
|
87
113
|
def message
|
88
114
|
@message || @data[:message]
|
89
115
|
end
|
90
|
-
|
91
116
|
end
|
92
117
|
|
93
118
|
class UnprocessableEntityException < ServiceError
|
@@ -103,7 +128,6 @@ module Aws::MediaPackage
|
|
103
128
|
def message
|
104
129
|
@message || @data[:message]
|
105
130
|
end
|
106
|
-
|
107
131
|
end
|
108
132
|
|
109
133
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::MediaPackage
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -1355,6 +1387,7 @@ module Aws::MediaPackage
|
|
1355
1387
|
:playlist_window_seconds,
|
1356
1388
|
:program_date_time_interval_seconds,
|
1357
1389
|
:url)
|
1390
|
+
SENSITIVE = []
|
1358
1391
|
include Aws::Structure
|
1359
1392
|
end
|
1360
1393
|
|
@@ -1454,6 +1487,7 @@ module Aws::MediaPackage
|
|
1454
1487
|
:playlist_type,
|
1455
1488
|
:playlist_window_seconds,
|
1456
1489
|
:program_date_time_interval_seconds)
|
1490
|
+
SENSITIVE = []
|
1457
1491
|
include Aws::Structure
|
1458
1492
|
end
|
1459
1493
|
|
@@ -1580,6 +1614,7 @@ module Aws::MediaPackage
|
|
1580
1614
|
:segment_duration_seconds,
|
1581
1615
|
:stream_selection,
|
1582
1616
|
:use_audio_rendition_group)
|
1617
|
+
SENSITIVE = []
|
1583
1618
|
include Aws::Structure
|
1584
1619
|
end
|
1585
1620
|
|
@@ -1608,6 +1643,7 @@ module Aws::MediaPackage
|
|
1608
1643
|
:password,
|
1609
1644
|
:url,
|
1610
1645
|
:username)
|
1646
|
+
SENSITIVE = []
|
1611
1647
|
include Aws::Structure
|
1612
1648
|
end
|
1613
1649
|
|
@@ -1618,6 +1654,7 @@ module Aws::MediaPackage
|
|
1618
1654
|
#
|
1619
1655
|
class InternalServerErrorException < Struct.new(
|
1620
1656
|
:message)
|
1657
|
+
SENSITIVE = []
|
1621
1658
|
include Aws::Structure
|
1622
1659
|
end
|
1623
1660
|
|
@@ -1640,6 +1677,7 @@ module Aws::MediaPackage
|
|
1640
1677
|
class ListChannelsRequest < Struct.new(
|
1641
1678
|
:max_results,
|
1642
1679
|
:next_token)
|
1680
|
+
SENSITIVE = []
|
1643
1681
|
include Aws::Structure
|
1644
1682
|
end
|
1645
1683
|
|
@@ -1654,6 +1692,7 @@ module Aws::MediaPackage
|
|
1654
1692
|
class ListChannelsResponse < Struct.new(
|
1655
1693
|
:channels,
|
1656
1694
|
:next_token)
|
1695
|
+
SENSITIVE = []
|
1657
1696
|
include Aws::Structure
|
1658
1697
|
end
|
1659
1698
|
|
@@ -1686,6 +1725,7 @@ module Aws::MediaPackage
|
|
1686
1725
|
:include_status,
|
1687
1726
|
:max_results,
|
1688
1727
|
:next_token)
|
1728
|
+
SENSITIVE = []
|
1689
1729
|
include Aws::Structure
|
1690
1730
|
end
|
1691
1731
|
|
@@ -1700,6 +1740,7 @@ module Aws::MediaPackage
|
|
1700
1740
|
class ListHarvestJobsResponse < Struct.new(
|
1701
1741
|
:harvest_jobs,
|
1702
1742
|
:next_token)
|
1743
|
+
SENSITIVE = []
|
1703
1744
|
include Aws::Structure
|
1704
1745
|
end
|
1705
1746
|
|
@@ -1727,6 +1768,7 @@ module Aws::MediaPackage
|
|
1727
1768
|
:channel_id,
|
1728
1769
|
:max_results,
|
1729
1770
|
:next_token)
|
1771
|
+
SENSITIVE = []
|
1730
1772
|
include Aws::Structure
|
1731
1773
|
end
|
1732
1774
|
|
@@ -1741,6 +1783,7 @@ module Aws::MediaPackage
|
|
1741
1783
|
class ListOriginEndpointsResponse < Struct.new(
|
1742
1784
|
:next_token,
|
1743
1785
|
:origin_endpoints)
|
1786
|
+
SENSITIVE = []
|
1744
1787
|
include Aws::Structure
|
1745
1788
|
end
|
1746
1789
|
|
@@ -1758,6 +1801,7 @@ module Aws::MediaPackage
|
|
1758
1801
|
#
|
1759
1802
|
class ListTagsForResourceRequest < Struct.new(
|
1760
1803
|
:resource_arn)
|
1804
|
+
SENSITIVE = []
|
1761
1805
|
include Aws::Structure
|
1762
1806
|
end
|
1763
1807
|
|
@@ -1768,6 +1812,7 @@ module Aws::MediaPackage
|
|
1768
1812
|
#
|
1769
1813
|
class ListTagsForResourceResponse < Struct.new(
|
1770
1814
|
:tags)
|
1815
|
+
SENSITIVE = []
|
1771
1816
|
include Aws::Structure
|
1772
1817
|
end
|
1773
1818
|
|
@@ -1796,6 +1841,7 @@ module Aws::MediaPackage
|
|
1796
1841
|
#
|
1797
1842
|
class MssEncryption < Struct.new(
|
1798
1843
|
:speke_key_provider)
|
1844
|
+
SENSITIVE = []
|
1799
1845
|
include Aws::Structure
|
1800
1846
|
end
|
1801
1847
|
|
@@ -1846,6 +1892,7 @@ module Aws::MediaPackage
|
|
1846
1892
|
:manifest_window_seconds,
|
1847
1893
|
:segment_duration_seconds,
|
1848
1894
|
:stream_selection)
|
1895
|
+
SENSITIVE = []
|
1849
1896
|
include Aws::Structure
|
1850
1897
|
end
|
1851
1898
|
|
@@ -1856,6 +1903,7 @@ module Aws::MediaPackage
|
|
1856
1903
|
#
|
1857
1904
|
class NotFoundException < Struct.new(
|
1858
1905
|
:message)
|
1906
|
+
SENSITIVE = []
|
1859
1907
|
include Aws::Structure
|
1860
1908
|
end
|
1861
1909
|
|
@@ -1954,6 +2002,7 @@ module Aws::MediaPackage
|
|
1954
2002
|
:time_delay_seconds,
|
1955
2003
|
:url,
|
1956
2004
|
:whitelist)
|
2005
|
+
SENSITIVE = []
|
1957
2006
|
include Aws::Structure
|
1958
2007
|
end
|
1959
2008
|
|
@@ -2045,6 +2094,7 @@ module Aws::MediaPackage
|
|
2045
2094
|
:tags,
|
2046
2095
|
:time_delay_seconds,
|
2047
2096
|
:whitelist)
|
2097
|
+
SENSITIVE = []
|
2048
2098
|
include Aws::Structure
|
2049
2099
|
end
|
2050
2100
|
|
@@ -2064,6 +2114,7 @@ module Aws::MediaPackage
|
|
2064
2114
|
class OriginEndpointList < Struct.new(
|
2065
2115
|
:next_token,
|
2066
2116
|
:origin_endpoints)
|
2117
|
+
SENSITIVE = []
|
2067
2118
|
include Aws::Structure
|
2068
2119
|
end
|
2069
2120
|
|
@@ -2137,6 +2188,7 @@ module Aws::MediaPackage
|
|
2137
2188
|
:startover_window_seconds,
|
2138
2189
|
:time_delay_seconds,
|
2139
2190
|
:whitelist)
|
2191
|
+
SENSITIVE = []
|
2140
2192
|
include Aws::Structure
|
2141
2193
|
end
|
2142
2194
|
|
@@ -2154,6 +2206,7 @@ module Aws::MediaPackage
|
|
2154
2206
|
#
|
2155
2207
|
class RotateChannelCredentialsRequest < Struct.new(
|
2156
2208
|
:id)
|
2209
|
+
SENSITIVE = []
|
2157
2210
|
include Aws::Structure
|
2158
2211
|
end
|
2159
2212
|
|
@@ -2182,6 +2235,7 @@ module Aws::MediaPackage
|
|
2182
2235
|
:hls_ingest,
|
2183
2236
|
:id,
|
2184
2237
|
:tags)
|
2238
|
+
SENSITIVE = []
|
2185
2239
|
include Aws::Structure
|
2186
2240
|
end
|
2187
2241
|
|
@@ -2204,6 +2258,7 @@ module Aws::MediaPackage
|
|
2204
2258
|
class RotateIngestEndpointCredentialsRequest < Struct.new(
|
2205
2259
|
:id,
|
2206
2260
|
:ingest_endpoint_id)
|
2261
|
+
SENSITIVE = []
|
2207
2262
|
include Aws::Structure
|
2208
2263
|
end
|
2209
2264
|
|
@@ -2232,6 +2287,7 @@ module Aws::MediaPackage
|
|
2232
2287
|
:hls_ingest,
|
2233
2288
|
:id,
|
2234
2289
|
:tags)
|
2290
|
+
SENSITIVE = []
|
2235
2291
|
include Aws::Structure
|
2236
2292
|
end
|
2237
2293
|
|
@@ -2267,6 +2323,7 @@ module Aws::MediaPackage
|
|
2267
2323
|
:bucket_name,
|
2268
2324
|
:manifest_key,
|
2269
2325
|
:role_arn)
|
2326
|
+
SENSITIVE = []
|
2270
2327
|
include Aws::Structure
|
2271
2328
|
end
|
2272
2329
|
|
@@ -2277,6 +2334,7 @@ module Aws::MediaPackage
|
|
2277
2334
|
#
|
2278
2335
|
class ServiceUnavailableException < Struct.new(
|
2279
2336
|
:message)
|
2337
|
+
SENSITIVE = []
|
2280
2338
|
include Aws::Structure
|
2281
2339
|
end
|
2282
2340
|
|
@@ -2325,6 +2383,7 @@ module Aws::MediaPackage
|
|
2325
2383
|
:role_arn,
|
2326
2384
|
:system_ids,
|
2327
2385
|
:url)
|
2386
|
+
SENSITIVE = []
|
2328
2387
|
include Aws::Structure
|
2329
2388
|
end
|
2330
2389
|
|
@@ -2357,6 +2416,7 @@ module Aws::MediaPackage
|
|
2357
2416
|
:max_video_bits_per_second,
|
2358
2417
|
:min_video_bits_per_second,
|
2359
2418
|
:stream_order)
|
2419
|
+
SENSITIVE = []
|
2360
2420
|
include Aws::Structure
|
2361
2421
|
end
|
2362
2422
|
|
@@ -2381,6 +2441,7 @@ module Aws::MediaPackage
|
|
2381
2441
|
class TagResourceRequest < Struct.new(
|
2382
2442
|
:resource_arn,
|
2383
2443
|
:tags)
|
2444
|
+
SENSITIVE = []
|
2384
2445
|
include Aws::Structure
|
2385
2446
|
end
|
2386
2447
|
|
@@ -2391,6 +2452,7 @@ module Aws::MediaPackage
|
|
2391
2452
|
#
|
2392
2453
|
class TagsModel < Struct.new(
|
2393
2454
|
:tags)
|
2455
|
+
SENSITIVE = []
|
2394
2456
|
include Aws::Structure
|
2395
2457
|
end
|
2396
2458
|
|
@@ -2401,6 +2463,7 @@ module Aws::MediaPackage
|
|
2401
2463
|
#
|
2402
2464
|
class TooManyRequestsException < Struct.new(
|
2403
2465
|
:message)
|
2466
|
+
SENSITIVE = []
|
2404
2467
|
include Aws::Structure
|
2405
2468
|
end
|
2406
2469
|
|
@@ -2411,6 +2474,7 @@ module Aws::MediaPackage
|
|
2411
2474
|
#
|
2412
2475
|
class UnprocessableEntityException < Struct.new(
|
2413
2476
|
:message)
|
2477
|
+
SENSITIVE = []
|
2414
2478
|
include Aws::Structure
|
2415
2479
|
end
|
2416
2480
|
|
@@ -2433,6 +2497,7 @@ module Aws::MediaPackage
|
|
2433
2497
|
class UntagResourceRequest < Struct.new(
|
2434
2498
|
:resource_arn,
|
2435
2499
|
:tag_keys)
|
2500
|
+
SENSITIVE = []
|
2436
2501
|
include Aws::Structure
|
2437
2502
|
end
|
2438
2503
|
|
@@ -2455,6 +2520,7 @@ module Aws::MediaPackage
|
|
2455
2520
|
class UpdateChannelRequest < Struct.new(
|
2456
2521
|
:description,
|
2457
2522
|
:id)
|
2523
|
+
SENSITIVE = []
|
2458
2524
|
include Aws::Structure
|
2459
2525
|
end
|
2460
2526
|
|
@@ -2483,6 +2549,7 @@ module Aws::MediaPackage
|
|
2483
2549
|
:hls_ingest,
|
2484
2550
|
:id,
|
2485
2551
|
:tags)
|
2552
|
+
SENSITIVE = []
|
2486
2553
|
include Aws::Structure
|
2487
2554
|
end
|
2488
2555
|
|
@@ -2667,6 +2734,7 @@ module Aws::MediaPackage
|
|
2667
2734
|
:startover_window_seconds,
|
2668
2735
|
:time_delay_seconds,
|
2669
2736
|
:whitelist)
|
2737
|
+
SENSITIVE = []
|
2670
2738
|
include Aws::Structure
|
2671
2739
|
end
|
2672
2740
|
|
@@ -2744,6 +2812,7 @@ module Aws::MediaPackage
|
|
2744
2812
|
:time_delay_seconds,
|
2745
2813
|
:url,
|
2746
2814
|
:whitelist)
|
2815
|
+
SENSITIVE = []
|
2747
2816
|
include Aws::Structure
|
2748
2817
|
end
|
2749
2818
|
|
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.30.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-06-23 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
|