aws-sdk-importexport 1.61.0 → 1.62.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: 984926da0b938d2f6a9cf0fdec13ebbb9858c4718ed4c654b01dad004ae268ef
4
- data.tar.gz: e905c377a6ca3a1a02acfb678e10b483208795f5d698b7c87234bc659320509a
3
+ metadata.gz: d1266d61e7450ae0293317dc16d8fe287606abdf2d15c5b5cce214c4e052a10a
4
+ data.tar.gz: d2bf551684508458a51de03df6abdd1ba0a55760030af95c332c7719cf4a4266
5
5
  SHA512:
6
- metadata.gz: c630db62fa70e5a7df4fbd1e6ba70f3b1f76fd7725d7085dfba4bb173d6f6eb818f6b954d027104e95e3ecb702e7139be2d7b7474faeb1869f4f0265628515a1
7
- data.tar.gz: 8ebd0943901e24c66bd8d55787e12ddcedb75bc1048a75c2cae48056bf63055f73016220f8916eed14283a1ad5b1f89775ba1a01ab02e21251cc47196967efc2
6
+ metadata.gz: 54b0b49bcc32c0ea5a8153a1d45979f87029d59d8afaa126f3e5d6004a859317d23ece57c712b0840199ae707c2c1103a5c3db890c8df19433228ffbf20a37b0
7
+ data.tar.gz: b800dd81f25460fde3f1b6b170318c645ede10b828d134151ffd10308ca1491dc2f6c7306161149407b95eecae1ae6a87ea565938d7785b15b1ef9b4d3208c04
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.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.61.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -94,7 +94,7 @@ module Aws::ImportExport
94
94
  # class name or an instance of a plugin class.
95
95
  #
96
96
  # @option options [required, Aws::CredentialProvider] :credentials
97
- # Your AWS credentials. This can be an instance of any one of the
97
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
98
98
  # following classes:
99
99
  #
100
100
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -127,18 +127,23 @@ module Aws::ImportExport
127
127
  # locations will be searched for credentials:
128
128
  #
129
129
  # * `Aws.config[:credentials]`
130
+ #
130
131
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
131
132
  # `:account_id` options.
132
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
133
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
133
+ #
134
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
135
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
136
+ #
134
137
  # * `~/.aws/credentials`
138
+ #
135
139
  # * `~/.aws/config`
140
+ #
136
141
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
137
142
  # are very aggressive. Construct and pass an instance of
138
143
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
139
144
  # enable retries and extended timeouts. Instance profile credential
140
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
141
- # to true.
145
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
146
+ # to `true`.
142
147
  #
143
148
  # @option options [required, String] :region
144
149
  # The AWS region to connect to. The configured `:region` is
@@ -166,6 +171,11 @@ module Aws::ImportExport
166
171
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
167
172
  # not retry instead of sleeping.
168
173
  #
174
+ # @option options [Array<String>] :auth_scheme_preference
175
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
176
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
177
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
178
+ #
169
179
  # @option options [Boolean] :client_side_monitoring (false)
170
180
  # When `true`, client-side metrics will be collected for all API requests from
171
181
  # this client.
@@ -252,8 +262,8 @@ module Aws::ImportExport
252
262
  # 4 times. Used in `standard` and `adaptive` retry modes.
253
263
  #
254
264
  # @option options [String] :profile ("default")
255
- # Used when loading credentials from the shared credentials file
256
- # at HOME/.aws/credentials. When not specified, 'default' is used.
265
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
266
+ # When not specified, 'default' is used.
257
267
  #
258
268
  # @option options [String] :request_checksum_calculation ("when_supported")
259
269
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -366,7 +376,7 @@ module Aws::ImportExport
366
376
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
367
377
  #
368
378
  # @option options [Aws::TokenProvider] :token_provider
369
- # A Bearer Token Provider. This can be an instance of any one of the
379
+ # Your Bearer token used for authentication. This can be an instance of any one of the
370
380
  # following classes:
371
381
  #
372
382
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -819,7 +829,7 @@ module Aws::ImportExport
819
829
  tracer: tracer
820
830
  )
821
831
  context[:gem_name] = 'aws-sdk-importexport'
822
- context[:gem_version] = '1.61.0'
832
+ context[:gem_version] = '1.62.0'
823
833
  Seahorse::Client::Request.new(handlers, context)
824
834
  end
825
835
 
@@ -50,7 +50,6 @@ module Aws::ImportExport
50
50
  #
51
51
  # Additionally, error classes are dynamically generated for service errors based on the error code
52
52
  # if they are not defined above.
53
- # Some existing error classes may use a different class name than the one documented.
54
53
  module Errors
55
54
 
56
55
  extend Aws::Errors::DynamicErrors
@@ -48,7 +48,7 @@ module Aws::ImportExport
48
48
  autoload :Errors, 'aws-sdk-importexport/errors'
49
49
  autoload :Resource, 'aws-sdk-importexport/resource'
50
50
 
51
- GEM_VERSION = '1.61.0'
51
+ GEM_VERSION = '1.62.0'
52
52
 
53
53
  end
54
54
 
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-importexport
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.61.0
4
+ version: 1.62.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-sigv2
34
34
  requirement: !ruby/object:Gem::Requirement