aws-sdk-glacier 1.79.0 → 1.80.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glacier/client.rb +19 -9
- data/lib/aws-sdk-glacier.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bee458a05fd0ae5caf2ffa7bc1c2457efcae78c493aae90cf95e0b8371bc606a
|
4
|
+
data.tar.gz: 4ac64c982a24ecbe96c6d5b40aad2c7771f8dc55856341c921d8f24d882b809a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1619c72a4d5c985bdd725d44bf17e47b045a459c54b84053360a7eb87f89806ce0efc6a29334937112058cebf1b719ab39f45c58dfaea283d411cd34a8210013
|
7
|
+
data.tar.gz: bab0c96dab76155100beaf0a73d3bb67b404f3d02825a8edb625eecd461869e4dcb1b4e9e054f0119c5bb30815a019c5bac6b62de1ae77a3b45d611b6665ef78
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -101,7 +101,7 @@ module Aws::Glacier
|
|
101
101
|
# class name or an instance of a plugin class.
|
102
102
|
#
|
103
103
|
# @option options [required, Aws::CredentialProvider] :credentials
|
104
|
-
# Your AWS credentials. This can be an instance of any one of the
|
104
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
105
105
|
# following classes:
|
106
106
|
#
|
107
107
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -134,18 +134,23 @@ module Aws::Glacier
|
|
134
134
|
# locations will be searched for credentials:
|
135
135
|
#
|
136
136
|
# * `Aws.config[:credentials]`
|
137
|
+
#
|
137
138
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
138
139
|
# `:account_id` options.
|
139
|
-
#
|
140
|
-
#
|
140
|
+
#
|
141
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
142
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
143
|
+
#
|
141
144
|
# * `~/.aws/credentials`
|
145
|
+
#
|
142
146
|
# * `~/.aws/config`
|
147
|
+
#
|
143
148
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
144
149
|
# are very aggressive. Construct and pass an instance of
|
145
150
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
146
151
|
# enable retries and extended timeouts. Instance profile credential
|
147
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
148
|
-
# to true
|
152
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
153
|
+
# to `true`.
|
149
154
|
#
|
150
155
|
# @option options [required, String] :region
|
151
156
|
# The AWS region to connect to. The configured `:region` is
|
@@ -176,6 +181,11 @@ module Aws::Glacier
|
|
176
181
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
177
182
|
# not retry instead of sleeping.
|
178
183
|
#
|
184
|
+
# @option options [Array<String>] :auth_scheme_preference
|
185
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
186
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
187
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
188
|
+
#
|
179
189
|
# @option options [Boolean] :client_side_monitoring (false)
|
180
190
|
# When `true`, client-side metrics will be collected for all API requests from
|
181
191
|
# this client.
|
@@ -262,8 +272,8 @@ module Aws::Glacier
|
|
262
272
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
263
273
|
#
|
264
274
|
# @option options [String] :profile ("default")
|
265
|
-
# Used when loading credentials from the shared credentials file
|
266
|
-
#
|
275
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
276
|
+
# When not specified, 'default' is used.
|
267
277
|
#
|
268
278
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
269
279
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -376,7 +386,7 @@ module Aws::Glacier
|
|
376
386
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
377
387
|
#
|
378
388
|
# @option options [Aws::TokenProvider] :token_provider
|
379
|
-
#
|
389
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
380
390
|
# following classes:
|
381
391
|
#
|
382
392
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -3523,7 +3533,7 @@ module Aws::Glacier
|
|
3523
3533
|
tracer: tracer
|
3524
3534
|
)
|
3525
3535
|
context[:gem_name] = 'aws-sdk-glacier'
|
3526
|
-
context[:gem_version] = '1.
|
3536
|
+
context[:gem_version] = '1.80.0'
|
3527
3537
|
Seahorse::Client::Request.new(handlers, context)
|
3528
3538
|
end
|
3529
3539
|
|
data/lib/aws-sdk-glacier.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glacier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|