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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9946eced0e1dcfb2456f6cfd51521d1228062b36875d7be756caa5091c4767a1
4
- data.tar.gz: ef8eec7a217f2aa099ded96c2baaa9769ea55481a8c039f59e7982444d2f5ee1
3
+ metadata.gz: bee458a05fd0ae5caf2ffa7bc1c2457efcae78c493aae90cf95e0b8371bc606a
4
+ data.tar.gz: 4ac64c982a24ecbe96c6d5b40aad2c7771f8dc55856341c921d8f24d882b809a
5
5
  SHA512:
6
- metadata.gz: af195f8b785fd57d2434d67970fa8a7616bd83d6ef6b9ab0e37f0d63e74b1d47b7ff73a1b8bbca50c08a972d6e5040e5f2cdf186ae5e2bd20cea22b055483933
7
- data.tar.gz: fe674d6b06fdf16cf0dc1a02979a8acb8bfe03711068d0bf28116c6a5652a1674f824ca52c4b7d63b4d761c55ab859c13f3698ceec6dd640c3bafb19e8f6bb2d
6
+ metadata.gz: 1619c72a4d5c985bdd725d44bf17e47b045a459c54b84053360a7eb87f89806ce0efc6a29334937112058cebf1b719ab39f45c58dfaea283d411cd34a8210013
7
+ data.tar.gz: bab0c96dab76155100beaf0a73d3bb67b404f3d02825a8edb625eecd461869e4dcb1b4e9e054f0119c5bb30815a019c5bac6b62de1ae77a3b45d611b6665ef78
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.79.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
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
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
140
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
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
- # at HOME/.aws/credentials. When not specified, 'default' is used.
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
- # A Bearer Token Provider. This can be an instance of any one of the
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.79.0'
3536
+ context[:gem_version] = '1.80.0'
3527
3537
  Seahorse::Client::Request.new(handlers, context)
3528
3538
  end
3529
3539
 
@@ -61,7 +61,7 @@ module Aws::Glacier
61
61
  autoload :Notification, 'aws-sdk-glacier/notification'
62
62
  autoload :Vault, 'aws-sdk-glacier/vault'
63
63
 
64
- GEM_VERSION = '1.79.0'
64
+ GEM_VERSION = '1.80.0'
65
65
 
66
66
  end
67
67
 
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.79.0
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.225.0
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.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement