aws-sdk-mediastore 1.52.0 → 1.54.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aef315d07904565ae1be7f68150a1982f88bdb52d166eb1e41822ee589c0e8bf
4
- data.tar.gz: 822a6decde97243224e75905658293cee593ef8eb3335e4cd6331a6384d7c3be
3
+ metadata.gz: 60efe81d85aeaab25037a2f0834f9f3dce1ecbf1a3e498e004f70f7ba55fdcec
4
+ data.tar.gz: d08034a40bd2b2775fa84c9e85f87b5f53998583199d40bd9afdd41f05db57a8
5
5
  SHA512:
6
- metadata.gz: 91115eed489051d6a25545acfc5c00e8fe388f5e0aa0ec658b227d829ed43751f48ad54efd4d48589653622bb663c4005dc912305707aa8d18324d438ee0970a
7
- data.tar.gz: 9c86a819530b435949c23a37bf0a17154aa8601b91d276143e12d41f93a984308931de764df4d2267f4df26e04045d332f7b4befba4d688a9f8fbb24897bebd2
6
+ metadata.gz: d5c13189ffb80b03eff29e06c3ec77e8e2e1901c4f2f588c307ef9a27fd160b3de4f37f9456b7de3e9ff9b6a4ebbb858f40e58fd38e2f42a021fc4b0d3b50e50
7
+ data.tar.gz: 9ffb68d41a84be8ca877f3fb54532e794803fc5e0250b585b635a9ef5a0adae129e40d319ed93487f82ef1ed115f46f611df30335a93dde618b0216d4d8c457b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.53.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.52.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::MediaStore
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::MediaStore
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::MediaStore
347
356
  # @option options [Aws::MediaStore::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaStore::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -1164,7 +1188,7 @@ module Aws::MediaStore
1164
1188
  params: params,
1165
1189
  config: config)
1166
1190
  context[:gem_name] = 'aws-sdk-mediastore'
1167
- context[:gem_version] = '1.52.0'
1191
+ context[:gem_version] = '1.54.0'
1168
1192
  Seahorse::Client::Request.new(handlers, context)
1169
1193
  end
1170
1194
 
@@ -14,6 +14,7 @@ module Aws::MediaStore
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MediaStore::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediastore/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaStore
54
54
 
55
- GEM_VERSION = '1.52.0'
55
+ GEM_VERSION = '1.54.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,310 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MediaStore
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _CreateContainerResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContainerOutput]
78
+ def container: () -> Types::Container
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#create_container-instance_method
81
+ def create_container: (
82
+ container_name: ::String,
83
+ ?tags: Array[
84
+ {
85
+ key: ::String,
86
+ value: ::String?
87
+ },
88
+ ]
89
+ ) -> _CreateContainerResponseSuccess
90
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContainerResponseSuccess
91
+
92
+ interface _DeleteContainerResponseSuccess
93
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContainerOutput]
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#delete_container-instance_method
96
+ def delete_container: (
97
+ container_name: ::String
98
+ ) -> _DeleteContainerResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContainerResponseSuccess
100
+
101
+ interface _DeleteContainerPolicyResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContainerPolicyOutput]
103
+ end
104
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#delete_container_policy-instance_method
105
+ def delete_container_policy: (
106
+ container_name: ::String
107
+ ) -> _DeleteContainerPolicyResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContainerPolicyResponseSuccess
109
+
110
+ interface _DeleteCorsPolicyResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCorsPolicyOutput]
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#delete_cors_policy-instance_method
114
+ def delete_cors_policy: (
115
+ container_name: ::String
116
+ ) -> _DeleteCorsPolicyResponseSuccess
117
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCorsPolicyResponseSuccess
118
+
119
+ interface _DeleteLifecyclePolicyResponseSuccess
120
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLifecyclePolicyOutput]
121
+ end
122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#delete_lifecycle_policy-instance_method
123
+ def delete_lifecycle_policy: (
124
+ container_name: ::String
125
+ ) -> _DeleteLifecyclePolicyResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLifecyclePolicyResponseSuccess
127
+
128
+ interface _DeleteMetricPolicyResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMetricPolicyOutput]
130
+ end
131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#delete_metric_policy-instance_method
132
+ def delete_metric_policy: (
133
+ container_name: ::String
134
+ ) -> _DeleteMetricPolicyResponseSuccess
135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMetricPolicyResponseSuccess
136
+
137
+ interface _DescribeContainerResponseSuccess
138
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContainerOutput]
139
+ def container: () -> Types::Container
140
+ end
141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#describe_container-instance_method
142
+ def describe_container: (
143
+ ?container_name: ::String
144
+ ) -> _DescribeContainerResponseSuccess
145
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerResponseSuccess
146
+
147
+ interface _GetContainerPolicyResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetContainerPolicyOutput]
149
+ def policy: () -> ::String
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#get_container_policy-instance_method
152
+ def get_container_policy: (
153
+ container_name: ::String
154
+ ) -> _GetContainerPolicyResponseSuccess
155
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContainerPolicyResponseSuccess
156
+
157
+ interface _GetCorsPolicyResponseSuccess
158
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCorsPolicyOutput]
159
+ def cors_policy: () -> ::Array[Types::CorsRule]
160
+ end
161
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#get_cors_policy-instance_method
162
+ def get_cors_policy: (
163
+ container_name: ::String
164
+ ) -> _GetCorsPolicyResponseSuccess
165
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCorsPolicyResponseSuccess
166
+
167
+ interface _GetLifecyclePolicyResponseSuccess
168
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLifecyclePolicyOutput]
169
+ def lifecycle_policy: () -> ::String
170
+ end
171
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#get_lifecycle_policy-instance_method
172
+ def get_lifecycle_policy: (
173
+ container_name: ::String
174
+ ) -> _GetLifecyclePolicyResponseSuccess
175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLifecyclePolicyResponseSuccess
176
+
177
+ interface _GetMetricPolicyResponseSuccess
178
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMetricPolicyOutput]
179
+ def metric_policy: () -> Types::MetricPolicy
180
+ end
181
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#get_metric_policy-instance_method
182
+ def get_metric_policy: (
183
+ container_name: ::String
184
+ ) -> _GetMetricPolicyResponseSuccess
185
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetricPolicyResponseSuccess
186
+
187
+ interface _ListContainersResponseSuccess
188
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListContainersOutput]
189
+ def containers: () -> ::Array[Types::Container]
190
+ def next_token: () -> ::String
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#list_containers-instance_method
193
+ def list_containers: (
194
+ ?next_token: ::String,
195
+ ?max_results: ::Integer
196
+ ) -> _ListContainersResponseSuccess
197
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContainersResponseSuccess
198
+
199
+ interface _ListTagsForResourceResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
201
+ def tags: () -> ::Array[Types::Tag]
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#list_tags_for_resource-instance_method
204
+ def list_tags_for_resource: (
205
+ resource: ::String
206
+ ) -> _ListTagsForResourceResponseSuccess
207
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
208
+
209
+ interface _PutContainerPolicyResponseSuccess
210
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutContainerPolicyOutput]
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#put_container_policy-instance_method
213
+ def put_container_policy: (
214
+ container_name: ::String,
215
+ policy: ::String
216
+ ) -> _PutContainerPolicyResponseSuccess
217
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutContainerPolicyResponseSuccess
218
+
219
+ interface _PutCorsPolicyResponseSuccess
220
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutCorsPolicyOutput]
221
+ end
222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#put_cors_policy-instance_method
223
+ def put_cors_policy: (
224
+ container_name: ::String,
225
+ cors_policy: Array[
226
+ {
227
+ allowed_origins: Array[::String],
228
+ allowed_methods: Array[("PUT" | "GET" | "DELETE" | "HEAD")]?,
229
+ allowed_headers: Array[::String],
230
+ max_age_seconds: ::Integer?,
231
+ expose_headers: Array[::String]?
232
+ },
233
+ ]
234
+ ) -> _PutCorsPolicyResponseSuccess
235
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutCorsPolicyResponseSuccess
236
+
237
+ interface _PutLifecyclePolicyResponseSuccess
238
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutLifecyclePolicyOutput]
239
+ end
240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#put_lifecycle_policy-instance_method
241
+ def put_lifecycle_policy: (
242
+ container_name: ::String,
243
+ lifecycle_policy: ::String
244
+ ) -> _PutLifecyclePolicyResponseSuccess
245
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLifecyclePolicyResponseSuccess
246
+
247
+ interface _PutMetricPolicyResponseSuccess
248
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutMetricPolicyOutput]
249
+ end
250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#put_metric_policy-instance_method
251
+ def put_metric_policy: (
252
+ container_name: ::String,
253
+ metric_policy: {
254
+ container_level_metrics: ("ENABLED" | "DISABLED"),
255
+ metric_policy_rules: Array[
256
+ {
257
+ object_group: ::String,
258
+ object_group_name: ::String
259
+ },
260
+ ]?
261
+ }
262
+ ) -> _PutMetricPolicyResponseSuccess
263
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutMetricPolicyResponseSuccess
264
+
265
+ interface _StartAccessLoggingResponseSuccess
266
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartAccessLoggingOutput]
267
+ end
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#start_access_logging-instance_method
269
+ def start_access_logging: (
270
+ container_name: ::String
271
+ ) -> _StartAccessLoggingResponseSuccess
272
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccessLoggingResponseSuccess
273
+
274
+ interface _StopAccessLoggingResponseSuccess
275
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopAccessLoggingOutput]
276
+ end
277
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#stop_access_logging-instance_method
278
+ def stop_access_logging: (
279
+ container_name: ::String
280
+ ) -> _StopAccessLoggingResponseSuccess
281
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopAccessLoggingResponseSuccess
282
+
283
+ interface _TagResourceResponseSuccess
284
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
285
+ end
286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#tag_resource-instance_method
287
+ def tag_resource: (
288
+ resource: ::String,
289
+ tags: Array[
290
+ {
291
+ key: ::String,
292
+ value: ::String?
293
+ },
294
+ ]
295
+ ) -> _TagResourceResponseSuccess
296
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
297
+
298
+ interface _UntagResourceResponseSuccess
299
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Client.html#untag_resource-instance_method
302
+ def untag_resource: (
303
+ resource: ::String,
304
+ tag_keys: Array[::String]
305
+ ) -> _UntagResourceResponseSuccess
306
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
307
+ end
308
+ end
309
+ end
310
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,34 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MediaStore
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class ContainerInUseException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ContainerNotFoundException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class CorsPolicyNotFoundException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class InternalServerError < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class LimitExceededException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class PolicyNotFoundException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ end
33
+ end
34
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MediaStore
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaStore/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,271 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::MediaStore
9
+ module Types
10
+
11
+ class Container
12
+ attr_accessor endpoint: ::String
13
+ attr_accessor creation_time: ::Time
14
+ attr_accessor arn: ::String
15
+ attr_accessor name: ::String
16
+ attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING")
17
+ attr_accessor access_logging_enabled: bool
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class ContainerInUseException
22
+ attr_accessor message: ::String
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class ContainerNotFoundException
27
+ attr_accessor message: ::String
28
+ SENSITIVE: []
29
+ end
30
+
31
+ class CorsPolicyNotFoundException
32
+ attr_accessor message: ::String
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class CorsRule
37
+ attr_accessor allowed_origins: ::Array[::String]
38
+ attr_accessor allowed_methods: ::Array[("PUT" | "GET" | "DELETE" | "HEAD")]
39
+ attr_accessor allowed_headers: ::Array[::String]
40
+ attr_accessor max_age_seconds: ::Integer
41
+ attr_accessor expose_headers: ::Array[::String]
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class CreateContainerInput
46
+ attr_accessor container_name: ::String
47
+ attr_accessor tags: ::Array[Types::Tag]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateContainerOutput
52
+ attr_accessor container: Types::Container
53
+ SENSITIVE: []
54
+ end
55
+
56
+ class DeleteContainerInput
57
+ attr_accessor container_name: ::String
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class DeleteContainerOutput < Aws::EmptyStructure
62
+ end
63
+
64
+ class DeleteContainerPolicyInput
65
+ attr_accessor container_name: ::String
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class DeleteContainerPolicyOutput < Aws::EmptyStructure
70
+ end
71
+
72
+ class DeleteCorsPolicyInput
73
+ attr_accessor container_name: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class DeleteCorsPolicyOutput < Aws::EmptyStructure
78
+ end
79
+
80
+ class DeleteLifecyclePolicyInput
81
+ attr_accessor container_name: ::String
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class DeleteLifecyclePolicyOutput < Aws::EmptyStructure
86
+ end
87
+
88
+ class DeleteMetricPolicyInput
89
+ attr_accessor container_name: ::String
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class DeleteMetricPolicyOutput < Aws::EmptyStructure
94
+ end
95
+
96
+ class DescribeContainerInput
97
+ attr_accessor container_name: ::String
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DescribeContainerOutput
102
+ attr_accessor container: Types::Container
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class GetContainerPolicyInput
107
+ attr_accessor container_name: ::String
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class GetContainerPolicyOutput
112
+ attr_accessor policy: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class GetCorsPolicyInput
117
+ attr_accessor container_name: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class GetCorsPolicyOutput
122
+ attr_accessor cors_policy: ::Array[Types::CorsRule]
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class GetLifecyclePolicyInput
127
+ attr_accessor container_name: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class GetLifecyclePolicyOutput
132
+ attr_accessor lifecycle_policy: ::String
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class GetMetricPolicyInput
137
+ attr_accessor container_name: ::String
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class GetMetricPolicyOutput
142
+ attr_accessor metric_policy: Types::MetricPolicy
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class InternalServerError
147
+ attr_accessor message: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class LimitExceededException
152
+ attr_accessor message: ::String
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class ListContainersInput
157
+ attr_accessor next_token: ::String
158
+ attr_accessor max_results: ::Integer
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class ListContainersOutput
163
+ attr_accessor containers: ::Array[Types::Container]
164
+ attr_accessor next_token: ::String
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class ListTagsForResourceInput
169
+ attr_accessor resource: ::String
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class ListTagsForResourceOutput
174
+ attr_accessor tags: ::Array[Types::Tag]
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class MetricPolicy
179
+ attr_accessor container_level_metrics: ("ENABLED" | "DISABLED")
180
+ attr_accessor metric_policy_rules: ::Array[Types::MetricPolicyRule]
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class MetricPolicyRule
185
+ attr_accessor object_group: ::String
186
+ attr_accessor object_group_name: ::String
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class PolicyNotFoundException
191
+ attr_accessor message: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class PutContainerPolicyInput
196
+ attr_accessor container_name: ::String
197
+ attr_accessor policy: ::String
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class PutContainerPolicyOutput < Aws::EmptyStructure
202
+ end
203
+
204
+ class PutCorsPolicyInput
205
+ attr_accessor container_name: ::String
206
+ attr_accessor cors_policy: ::Array[Types::CorsRule]
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class PutCorsPolicyOutput < Aws::EmptyStructure
211
+ end
212
+
213
+ class PutLifecyclePolicyInput
214
+ attr_accessor container_name: ::String
215
+ attr_accessor lifecycle_policy: ::String
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class PutLifecyclePolicyOutput < Aws::EmptyStructure
220
+ end
221
+
222
+ class PutMetricPolicyInput
223
+ attr_accessor container_name: ::String
224
+ attr_accessor metric_policy: Types::MetricPolicy
225
+ SENSITIVE: []
226
+ end
227
+
228
+ class PutMetricPolicyOutput < Aws::EmptyStructure
229
+ end
230
+
231
+ class StartAccessLoggingInput
232
+ attr_accessor container_name: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class StartAccessLoggingOutput < Aws::EmptyStructure
237
+ end
238
+
239
+ class StopAccessLoggingInput
240
+ attr_accessor container_name: ::String
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class StopAccessLoggingOutput < Aws::EmptyStructure
245
+ end
246
+
247
+ class Tag
248
+ attr_accessor key: ::String
249
+ attr_accessor value: ::String
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class TagResourceInput
254
+ attr_accessor resource: ::String
255
+ attr_accessor tags: ::Array[Types::Tag]
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class TagResourceOutput < Aws::EmptyStructure
260
+ end
261
+
262
+ class UntagResourceInput
263
+ attr_accessor resource: ::String
264
+ attr_accessor tag_keys: ::Array[::String]
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class UntagResourceOutput < Aws::EmptyStructure
269
+ end
270
+ end
271
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MediaStore
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediastore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-mediastore/plugins/endpoints.rb
67
67
  - lib/aws-sdk-mediastore/resource.rb
68
68
  - lib/aws-sdk-mediastore/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediastore
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediastore/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - MediaStore
94
99
  test_files: []