aws-sdk-glacier 1.69.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glacier/client.rb +9 -5
- data/lib/aws-sdk-glacier/plugins/endpoints.rb +8 -5
- data/lib/aws-sdk-glacier.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: 55265b602a89686d19c5c87e11fe9cde55e93a62d450caa42fc4c6dcd0399f41
|
4
|
+
data.tar.gz: bf3c6b6a739e6bf9073c29a07312c5a41ad268afdb7ad8531a95519f5a9d506a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9eb1691e21e4c96f275161f2b7861935008512abacaf4b4cad741b61cb9acda971f68e4e33fc4070a4fc026a5aecfe57224ffd1f1fb56b82bdd1754947dbce5
|
7
|
+
data.tar.gz: 160f959cc0c2bd528cb1fe287ab0a25c47b9f9c30fdb97f7d1201a9225f2a82d449b76169dea2a80e3f91aa5d380f74c71492ddae8e4aa0ba239730c580de025
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.70.0
|
@@ -136,13 +136,15 @@ module Aws::Glacier
|
|
136
136
|
# locations will be searched for credentials:
|
137
137
|
#
|
138
138
|
# * `Aws.config[:credentials]`
|
139
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
140
|
-
#
|
139
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
140
|
+
# `:account_id` options.
|
141
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
142
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
141
143
|
# * `~/.aws/credentials`
|
142
144
|
# * `~/.aws/config`
|
143
145
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
144
146
|
# are very aggressive. Construct and pass an instance of
|
145
|
-
# `Aws::
|
147
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
146
148
|
# enable retries and extended timeouts. Instance profile credential
|
147
149
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
148
150
|
# to true.
|
@@ -380,7 +382,9 @@ module Aws::Glacier
|
|
380
382
|
# sending the request.
|
381
383
|
#
|
382
384
|
# @option options [Aws::Glacier::EndpointProvider] :endpoint_provider
|
383
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
385
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
386
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
387
|
+
# `Aws::Glacier::EndpointParameters`.
|
384
388
|
#
|
385
389
|
# @option options [Float] :http_continue_timeout (1)
|
386
390
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -3499,7 +3503,7 @@ module Aws::Glacier
|
|
3499
3503
|
tracer: tracer
|
3500
3504
|
)
|
3501
3505
|
context[:gem_name] = 'aws-sdk-glacier'
|
3502
|
-
context[:gem_version] = '1.
|
3506
|
+
context[:gem_version] = '1.70.0'
|
3503
3507
|
Seahorse::Client::Request.new(handlers, context)
|
3504
3508
|
end
|
3505
3509
|
|
@@ -15,11 +15,11 @@ module Aws::Glacier
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Glacier::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::Glacier::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::Glacier::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -51,6 +51,9 @@ module Aws::Glacier
|
|
51
51
|
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
52
|
metrics << 'SIGV4A_SIGNING'
|
53
53
|
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
54
57
|
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
58
|
end
|
56
59
|
|
data/lib/aws-sdk-glacier.rb
CHANGED
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.
|
4
|
+
version: 1.70.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-09-
|
11
|
+
date: 2024-09-20 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.207.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.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|