aws-sdk-s3control 1.112.0 → 1.113.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: bd303310536e37f8761babf610cacfdba8e9c5a3e2c05f7c6c3203a6cb93d33b
4
- data.tar.gz: '085750987342a879d9ccf56d2f1e6df0f7ade9e0d1266317b5db0834edf5d9ad'
3
+ metadata.gz: 8c82687deebb21750615ce7bdd6c3230cfd8a9751dc3535db248b7c647978352
4
+ data.tar.gz: 7cf9abf83113f919a9d1878b321e4b0f7da5555e83ab7578fa816cd93147dfb6
5
5
  SHA512:
6
- metadata.gz: 3cfb41585a351a779c2fe6c0738b14ed57fb98ca316600468d696acadfc0269ee82e4f5d144c9a624cdd6e91a1219630e410a45655bcec4b404081c60d13c541
7
- data.tar.gz: dee40f5ac3a37e209cf71ef6ad964b65cb3bf9a133300fcb2c98a4409c2f44830ef43731aff93285e8e53cf19043ee406b7e001a9614d35dfac4ae38b407fc17
6
+ metadata.gz: cf6351057155a01fd5f7695d88a4bad25e93a47eaad22e63f6d5a8726b1ac8952b146784d81f4a8625c20c4f394da4bfc8858c14f732162172c5d29fa290eaf1
7
+ data.tar.gz: '0590c66ec5e68108e6bbc7f594b51e83f56b6f2e303cea9ae706ee30111f8a87596fe7b2129e2763a7c5a415dcb681d29acad1afa0173785cf54fdf258674ac8'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.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.112.0 (2025-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.113.0
@@ -101,7 +101,7 @@ module Aws::S3Control
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::S3Control
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
@@ -173,6 +178,11 @@ module Aws::S3Control
173
178
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
174
179
  # not retry instead of sleeping.
175
180
  #
181
+ # @option options [Array<String>] :auth_scheme_preference
182
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
183
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
184
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
185
+ #
176
186
  # @option options [Boolean] :client_side_monitoring (false)
177
187
  # When `true`, client-side metrics will be collected for all API requests from
178
188
  # this client.
@@ -259,8 +269,8 @@ module Aws::S3Control
259
269
  # 4 times. Used in `standard` and `adaptive` retry modes.
260
270
  #
261
271
  # @option options [String] :profile ("default")
262
- # Used when loading credentials from the shared credentials file
263
- # at HOME/.aws/credentials. When not specified, 'default' is used.
272
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
273
+ # When not specified, 'default' is used.
264
274
  #
265
275
  # @option options [String] :request_checksum_calculation ("when_supported")
266
276
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -379,7 +389,7 @@ module Aws::S3Control
379
389
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
380
390
  #
381
391
  # @option options [Aws::TokenProvider] :token_provider
382
- # A Bearer Token Provider. This can be an instance of any one of the
392
+ # Your Bearer token used for authentication. This can be an instance of any one of the
383
393
  # following classes:
384
394
  #
385
395
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -8068,7 +8078,7 @@ module Aws::S3Control
8068
8078
  tracer: tracer
8069
8079
  )
8070
8080
  context[:gem_name] = 'aws-sdk-s3control'
8071
- context[:gem_version] = '1.112.0'
8081
+ context[:gem_version] = '1.113.0'
8072
8082
  Seahorse::Client::Request.new(handlers, context)
8073
8083
  end
8074
8084
 
@@ -54,7 +54,7 @@ module Aws::S3Control
54
54
  autoload :EndpointProvider, 'aws-sdk-s3control/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-s3control/endpoints'
56
56
 
57
- GEM_VERSION = '1.112.0'
57
+ GEM_VERSION = '1.113.0'
58
58
 
59
59
  end
60
60
 
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-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.112.0
4
+ version: 1.113.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