aws-sdk-s3control 1.43.0 → 1.47.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: 87652068908ee179c73f75cd1b51c54d47af2d6bd939b1d2df45c9d1b0b29b94
4
- data.tar.gz: 272033beb0df35f8f5eff22e13b9fd779b0503e515ffb6c53aae06de1c935d8f
3
+ metadata.gz: be9cc5fc7abd5c6f15ca35f4bede07c93029c8de0177749070cd97a6e3419ed0
4
+ data.tar.gz: e2b515c9b921a1a8183549cf48bdf7d0f26b33361764de4183cc8e170b5a3b5c
5
5
  SHA512:
6
- metadata.gz: d6f1c5e7115a4ad1d2831aae3685e1540cff6f6c9269fe5780f8ad927cc1faacffea320a1a2c7371a6b08e87bb1365104fd5102831547ba36e3a39cc19b61d8e
7
- data.tar.gz: d1ee19d88714be6323c6a5c53cf854223e200ee04dc4537493081e86eb7f6f422e61ef9bcf7bf3cbe6cde7285207e175353931c5a9b663739e2d73e2369bf825
6
+ metadata.gz: 23d0713a7db9da6a6cb2895b2d8c5a414d01749a1e1e08d62b735685e93f218f1186dc1cd1b64fc3a3209cce835bd6424616f999151b3d8ef3f3a4e781ae638a
7
+ data.tar.gz: 0c86df3538976a952de01b94522af3bf401e38adee67a21860fa239b159ba02dd3e6f63bc677dee2fb46f939cf59c10945f88f15b3ff119b4c3b6f4178ff4d4f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,28 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.46.0 (2022-01-04)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for the renaming of Glacier to Glacier Flexible Retrieval.
13
+
14
+ 1.45.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.44.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
24
+ * Issue - Fix a bug where the dualstack plugin was dropping URI paths.
25
+
4
26
  1.43.0 (2021-11-22)
5
27
  ------------------
6
28
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.47.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
31
33
  require 'aws-sdk-s3control/plugins/arn.rb'
32
34
  require 'aws-sdk-s3control/plugins/dualstack.rb'
@@ -76,6 +78,8 @@ module Aws::S3Control
76
78
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
77
79
  add_plugin(Aws::Plugins::TransferEncoding)
78
80
  add_plugin(Aws::Plugins::HttpChecksum)
81
+ add_plugin(Aws::Plugins::DefaultsMode)
82
+ add_plugin(Aws::Plugins::RecursionDetection)
79
83
  add_plugin(Aws::Plugins::Protocols::RestXml)
80
84
  add_plugin(Aws::S3Control::Plugins::ARN)
81
85
  add_plugin(Aws::S3Control::Plugins::Dualstack)
@@ -125,7 +129,9 @@ module Aws::S3Control
125
129
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
126
130
  # are very aggressive. Construct and pass an instance of
127
131
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
128
- # enable retries and extended timeouts.
132
+ # enable retries and extended timeouts. Instance profile credential
133
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
134
+ # to true.
129
135
  #
130
136
  # @option options [required, String] :region
131
137
  # The AWS region to connect to. The configured `:region` is
@@ -179,6 +185,10 @@ module Aws::S3Control
179
185
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
180
186
  # a clock skew correction and retry requests with skewed client clocks.
181
187
  #
188
+ # @option options [String] :defaults_mode ("legacy")
189
+ # See {Aws::DefaultsModeConfiguration} for a list of the
190
+ # accepted modes and the configuration defaults that are included.
191
+ #
182
192
  # @option options [Boolean] :disable_host_prefix_injection (false)
183
193
  # Set to true to disable SDK automatically adding host prefix
184
194
  # to default service endpoint when available.
@@ -307,7 +317,7 @@ module Aws::S3Control
307
317
  # seconds to wait when opening a HTTP session before raising a
308
318
  # `Timeout::Error`.
309
319
  #
310
- # @option options [Integer] :http_read_timeout (60) The default
320
+ # @option options [Float] :http_read_timeout (60) The default
311
321
  # number of seconds to wait for response data. This value can
312
322
  # safely be set per-request on the session.
313
323
  #
@@ -323,6 +333,9 @@ module Aws::S3Control
323
333
  # disables this behaviour. This value can safely be set per
324
334
  # request on the session.
325
335
  #
336
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
337
+ # in seconds.
338
+ #
326
339
  # @option options [Boolean] :http_wire_trace (false) When `true`,
327
340
  # HTTP debug output will be sent to the `:logger`.
328
341
  #
@@ -4661,7 +4674,7 @@ module Aws::S3Control
4661
4674
  params: params,
4662
4675
  config: config)
4663
4676
  context[:gem_name] = 'aws-sdk-s3control'
4664
- context[:gem_version] = '1.43.0'
4677
+ context[:gem_version] = '1.47.0'
4665
4678
  Seahorse::Client::Request.new(handlers, context)
4666
4679
  end
4667
4680
 
@@ -34,7 +34,7 @@ module Aws
34
34
  # if it's a regional endpoint and not an ARN, then construct the
35
35
  # endpoint. regional endpoint plugin uses the dualstack config
36
36
  if context.config.regional_endpoint && !context.metadata[:s3_arn]
37
- endpoint = Aws::Partitions::EndpointProvider.resolve(
37
+ new_endpoint = Aws::Partitions::EndpointProvider.resolve(
38
38
  context.config.region,
39
39
  's3-control',
40
40
  'regional',
@@ -43,7 +43,9 @@ module Aws
43
43
  fips: context.config.use_fips_endpoint
44
44
  }
45
45
  )
46
- context.http_request.endpoint = URI.parse(endpoint)
46
+ endpoint = URI.parse(context.http_request.endpoint.to_s)
47
+ endpoint.host = URI.parse(new_endpoint).host
48
+ context.http_request.endpoint = endpoint
47
49
  end
48
50
  @handler.call(context)
49
51
  end
@@ -5523,10 +5523,11 @@ module Aws::S3Control
5523
5523
  # }
5524
5524
  #
5525
5525
  # @!attribute [rw] expiration_in_days
5526
- # This argument specifies how long the S3 Glacier or S3 Glacier Deep
5527
- # Archive object remains available in Amazon S3. S3 Initiate Restore
5528
- # Object jobs that target S3 Glacier and S3 Glacier Deep Archive
5529
- # objects require `ExpirationInDays` set to 1 or greater.
5526
+ # This argument specifies how long the S3 Glacier Flexible Retrieval
5527
+ # or S3 Glacier Deep Archive object remains available in Amazon S3. S3
5528
+ # Initiate Restore Object jobs that target S3 Glacier Flexible
5529
+ # Retrieval and S3 Glacier Deep Archive objects require
5530
+ # `ExpirationInDays` set to 1 or greater.
5530
5531
  #
5531
5532
  # Conversely, do *not* set `ExpirationInDays` when creating S3
5532
5533
  # Initiate Restore Object jobs that target S3 Intelligent-Tiering
@@ -5535,8 +5536,8 @@ module Aws::S3Control
5535
5536
  # expiry, so specifying `ExpirationInDays` results in restore request
5536
5537
  # failure.
5537
5538
  #
5538
- # S3 Batch Operations jobs can operate either on S3 Glacier and S3
5539
- # Glacier Deep Archive storage class objects or on S3
5539
+ # S3 Batch Operations jobs can operate either on S3 Glacier Flexible
5540
+ # Retrieval and S3 Glacier Deep Archive storage class objects or on S3
5540
5541
  # Intelligent-Tiering Archive Access and Deep Archive Access storage
5541
5542
  # tier objects, but not both types in the same job. If you need to
5542
5543
  # restore objects of both types you *must* create separate Batch
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-s3control/customizations'
48
48
  # @!group service
49
49
  module Aws::S3Control
50
50
 
51
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.47.0'
52
52
 
53
53
  end
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.43.0
4
+ version: 1.47.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: 2021-11-22 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.122.0
36
+ version: 3.126.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.122.0
46
+ version: 3.126.0
47
47
  description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: