aws-sdk-s3control 1.79.0 → 1.81.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +70 -46
- data/lib/aws-sdk-s3control/client_api.rb +4 -4
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac404b9ff62bd2978d67e531d9d5cd4a28ba61e5268b56ed66129e30e21aa553
|
4
|
+
data.tar.gz: b4a37f605a92a249ce415dc3cbe85817ef1d5653c906cd900ba8e3780b077d5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7d95e7b407bb08cff66524df4e5f07dbb127c750abd3ccb19684f0300e556f9ceabc4ac3b2a146374870d7a4776e423b7f34c39783ee1a428755bc1db1c1141
|
7
|
+
data.tar.gz: bcdc1f0ba13482851f991bfee6e6bbb753bac9062203c4087b134c1da50a40a6f9b8c41cabdc4efa0f74a83b9d717d3a3a8cdeadea0494fac4214ad9c7512670
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.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.80.0 (2024-04-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.79.0 (2024-04-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.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'
|
@@ -75,6 +76,7 @@ module Aws::S3Control
|
|
75
76
|
add_plugin(Aws::Plugins::ResponsePaging)
|
76
77
|
add_plugin(Aws::Plugins::StubResponses)
|
77
78
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
79
|
+
add_plugin(Aws::Plugins::InvocationId)
|
78
80
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
79
81
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
80
82
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -202,10 +204,17 @@ module Aws::S3Control
|
|
202
204
|
# When set to 'true' the request body will not be compressed
|
203
205
|
# for supported operations.
|
204
206
|
#
|
205
|
-
# @option options [String] :endpoint
|
206
|
-
#
|
207
|
-
#
|
208
|
-
#
|
207
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
208
|
+
# Normally you should not configure the `:endpoint` option
|
209
|
+
# directly. This is normally constructed from the `:region`
|
210
|
+
# option. Configuring `:endpoint` is normally reserved for
|
211
|
+
# connecting to test or custom endpoints. The endpoint should
|
212
|
+
# be a URI formatted like:
|
213
|
+
#
|
214
|
+
# 'http://example.com'
|
215
|
+
# 'https://example.com'
|
216
|
+
# 'http://example.com:123'
|
217
|
+
#
|
209
218
|
#
|
210
219
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
211
220
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -349,50 +358,65 @@ module Aws::S3Control
|
|
349
358
|
# @option options [Aws::S3Control::EndpointProvider] :endpoint_provider
|
350
359
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::S3Control::EndpointParameters`
|
351
360
|
#
|
352
|
-
# @option options [
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
# @option options [Float] :
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
376
|
-
#
|
361
|
+
# @option options [Float] :http_continue_timeout (1)
|
362
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
363
|
+
# request body. This option has no effect unless the request has "Expect"
|
364
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
365
|
+
# behaviour. This value can safely be set per request on the session.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_idle_timeout (5)
|
368
|
+
# The number of seconds a connection is allowed to sit idle before it
|
369
|
+
# is considered stale. Stale connections are closed and removed from the
|
370
|
+
# pool before making a request.
|
371
|
+
#
|
372
|
+
# @option options [Float] :http_open_timeout (15)
|
373
|
+
# The default number of seconds to wait for response data.
|
374
|
+
# This value can safely be set per-request on the session.
|
375
|
+
#
|
376
|
+
# @option options [URI::HTTP,String] :http_proxy
|
377
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
378
|
+
#
|
379
|
+
# @option options [Float] :http_read_timeout (60)
|
380
|
+
# The default number of seconds to wait for response data.
|
381
|
+
# This value can safely be set per-request on the session.
|
382
|
+
#
|
383
|
+
# @option options [Boolean] :http_wire_trace (false)
|
384
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
385
|
+
#
|
386
|
+
# @option options [Proc] :on_chunk_received
|
387
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
388
|
+
# of the response body is received. It provides three arguments: the chunk,
|
389
|
+
# the number of bytes received, and the total number of
|
390
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
391
|
+
#
|
392
|
+
# @option options [Proc] :on_chunk_sent
|
393
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
394
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
395
|
+
# the number of bytes read from the body, and the total number of
|
396
|
+
# bytes in the body.
|
397
|
+
#
|
398
|
+
# @option options [Boolean] :raise_response_errors (true)
|
399
|
+
# When `true`, response errors are raised.
|
400
|
+
#
|
401
|
+
# @option options [String] :ssl_ca_bundle
|
402
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
403
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
404
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
405
|
+
#
|
406
|
+
# @option options [String] :ssl_ca_directory
|
407
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
408
|
+
# authority files for verifying peer certificates. If you do
|
409
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
410
|
+
# default will be used if available.
|
377
411
|
#
|
378
|
-
# @option options [
|
379
|
-
#
|
412
|
+
# @option options [String] :ssl_ca_store
|
413
|
+
# Sets the X509::Store to verify peer certificate.
|
380
414
|
#
|
381
|
-
# @option options [
|
382
|
-
#
|
383
|
-
# connection.
|
415
|
+
# @option options [Float] :ssl_timeout
|
416
|
+
# Sets the SSL timeout in seconds
|
384
417
|
#
|
385
|
-
# @option options [
|
386
|
-
#
|
387
|
-
# verifying peer certificates. If you do not pass
|
388
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
389
|
-
# will be used if available.
|
390
|
-
#
|
391
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
392
|
-
# directory that contains the unbundled SSL certificate
|
393
|
-
# authority files for verifying peer certificates. If you do
|
394
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
395
|
-
# system default will be used if available.
|
418
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
419
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
396
420
|
#
|
397
421
|
def initialize(*args)
|
398
422
|
super
|
@@ -7574,7 +7598,7 @@ module Aws::S3Control
|
|
7574
7598
|
params: params,
|
7575
7599
|
config: config)
|
7576
7600
|
context[:gem_name] = 'aws-sdk-s3control'
|
7577
|
-
context[:gem_version] = '1.
|
7601
|
+
context[:gem_version] = '1.81.0'
|
7578
7602
|
Seahorse::Client::Request.new(handlers, context)
|
7579
7603
|
end
|
7580
7604
|
|
@@ -453,11 +453,11 @@ module Aws::S3Control
|
|
453
453
|
S3Tag = Shapes::StructureShape.new(name: 'S3Tag')
|
454
454
|
S3TagSet = Shapes::ListShape.new(name: 'S3TagSet')
|
455
455
|
S3UserMetadata = Shapes::MapShape.new(name: 'S3UserMetadata')
|
456
|
-
SSEKMS = Shapes::StructureShape.new(name: 'SSEKMS')
|
457
|
-
SSEKMSEncryption = Shapes::StructureShape.new(name: 'SSEKMSEncryption')
|
456
|
+
SSEKMS = Shapes::StructureShape.new(name: 'SSEKMS', locationName: "SSE-KMS")
|
457
|
+
SSEKMSEncryption = Shapes::StructureShape.new(name: 'SSEKMSEncryption', locationName: "SSE-KMS")
|
458
458
|
SSEKMSKeyId = Shapes::StringShape.new(name: 'SSEKMSKeyId')
|
459
|
-
SSES3 = Shapes::StructureShape.new(name: 'SSES3')
|
460
|
-
SSES3Encryption = Shapes::StructureShape.new(name: 'SSES3Encryption')
|
459
|
+
SSES3 = Shapes::StructureShape.new(name: 'SSES3', locationName: "SSE-S3")
|
460
|
+
SSES3Encryption = Shapes::StructureShape.new(name: 'SSES3Encryption', locationName: "SSE-S3")
|
461
461
|
SecretAccessKey = Shapes::StringShape.new(name: 'SecretAccessKey')
|
462
462
|
SelectionCriteria = Shapes::StructureShape.new(name: 'SelectionCriteria')
|
463
463
|
SessionToken = Shapes::StringShape.new(name: 'SessionToken')
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3control
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.81.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: 2024-04-
|
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.
|
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.
|
32
|
+
version: 3.193.0
|
33
33
|
description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
|
34
34
|
SDK for Ruby.
|
35
35
|
email:
|