aws-sdk-glacier 1.40.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00306bf5bf1752e840e621c49c36a6d55e171c05b07406ca6316f165fd6dc6fa
4
- data.tar.gz: 90ac995c50c007c0ce11bbdc81a8607739ab07361e0f5fd9ff9de10983e698d5
3
+ metadata.gz: e6144ffc4fe6126227a04a66670b911afe641db87eaee9170206ce59865c8fee
4
+ data.tar.gz: 641a413b4eeff134522947b00dab93aa8e3ef764a7e9319979c9929dc80e8e18
5
5
  SHA512:
6
- metadata.gz: d6219101ed6d4cc6a1b1dbc8e48c75a5e4c9027f222c5817e9047812e6cad15e832b21fb56f107d19ed7bc425863194677584370a753c7c0e7d790ca688251a9
7
- data.tar.gz: 0defaf3f83d6cb16f3dac4b8ccac1b1d1447e584820873cdce20f785a63b276161e48ecdd4110d36ac02b3ee01010cb1e46bcb854f3aefcc4f3b48b22ad83a41
6
+ metadata.gz: bbccb847735a11b2b416daf8ec1c768a621e2ff478e87eb46ca11db76f230f6b3c3a3b537560fb712ad1129899e03d0b778f9bfe70172903bca32705efb388f3
7
+ data.tar.gz: 517a364093ef9ff1d99fc6d228668ab643daf760c385ada0c51333735145da2eac59a85b2a14dc1ea84c8b782db5c8e4afbe38e32ce6a88e9db9467f7e1b973a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.43.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.42.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.41.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.40.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.44.0
@@ -27,6 +27,7 @@ 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'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
  require 'aws-sdk-glacier/plugins/account_id.rb'
@@ -76,6 +77,7 @@ module Aws::Glacier
76
77
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
80
+ add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::SignatureV4)
80
82
  add_plugin(Aws::Plugins::Protocols::RestJson)
81
83
  add_plugin(Aws::Glacier::Plugins::AccountId)
@@ -125,7 +127,9 @@ module Aws::Glacier
125
127
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
126
128
  # are very aggressive. Construct and pass an instance of
127
129
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
128
- # enable retries and extended timeouts.
130
+ # enable retries and extended timeouts. Instance profile credential
131
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
132
+ # to true.
129
133
  #
130
134
  # @option options [required, String] :region
131
135
  # The AWS region to connect to. The configured `:region` is
@@ -184,6 +188,10 @@ module Aws::Glacier
184
188
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
185
189
  # a clock skew correction and retry requests with skewed client clocks.
186
190
  #
191
+ # @option options [String] :defaults_mode ("legacy")
192
+ # See {Aws::DefaultsModeConfiguration} for a list of the
193
+ # accepted modes and the configuration defaults that are included.
194
+ #
187
195
  # @option options [Boolean] :disable_host_prefix_injection (false)
188
196
  # Set to true to disable SDK automatically adding host prefix
189
197
  # to default service endpoint when available.
@@ -286,6 +294,15 @@ module Aws::Glacier
286
294
  # ** Please note ** When response stubbing is enabled, no HTTP
287
295
  # requests are made, and retries are disabled.
288
296
  #
297
+ # @option options [Boolean] :use_dualstack_endpoint
298
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
299
+ # will be used if available.
300
+ #
301
+ # @option options [Boolean] :use_fips_endpoint
302
+ # When set to `true`, fips compatible endpoints will be used if available.
303
+ # When a `fips` region is used, the region is normalized and this config
304
+ # is set to `true`.
305
+ #
289
306
  # @option options [Boolean] :validate_params (true)
290
307
  # When `true`, request parameters are validated before
291
308
  # sending the request.
@@ -297,7 +314,7 @@ module Aws::Glacier
297
314
  # seconds to wait when opening a HTTP session before raising a
298
315
  # `Timeout::Error`.
299
316
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
317
+ # @option options [Float] :http_read_timeout (60) The default
301
318
  # number of seconds to wait for response data. This value can
302
319
  # safely be set per-request on the session.
303
320
  #
@@ -313,6 +330,9 @@ module Aws::Glacier
313
330
  # disables this behaviour. This value can safely be set per
314
331
  # request on the session.
315
332
  #
333
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
334
+ # in seconds.
335
+ #
316
336
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
337
  # HTTP debug output will be sent to the `:logger`.
318
338
  #
@@ -3378,7 +3398,7 @@ module Aws::Glacier
3378
3398
  params: params,
3379
3399
  config: config)
3380
3400
  context[:gem_name] = 'aws-sdk-glacier'
3381
- context[:gem_version] = '1.40.0'
3401
+ context[:gem_version] = '1.44.0'
3382
3402
  Seahorse::Client::Request.new(handlers, context)
3383
3403
  end
3384
3404
 
@@ -55,6 +55,6 @@ require_relative 'aws-sdk-glacier/customizations'
55
55
  # @!group service
56
56
  module Aws::Glacier
57
57
 
58
- GEM_VERSION = '1.40.0'
58
+ GEM_VERSION = '1.44.0'
59
59
 
60
60
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glacier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.40.0
4
+ version: 1.44.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.120.0
22
+ version: 3.125.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.120.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement