aws-sdk-finspace 1.54.0 → 1.55.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: ce3c7548891e19d9950ae2d80acf2c9b3ba9c3168559c924811db8805a8c1d56
4
- data.tar.gz: 42b7e95e28ce250fac32024d81d051968ae56d80dd1b486530c336d22c97533c
3
+ metadata.gz: 8d0bf3c942fca5df400b81b087bfd2298816ee65ec41e08a3ee44256d7774e5b
4
+ data.tar.gz: 4c9e2c25d9fb87be79d67b9d8541a047705cb4822e09ffb5fcf192ff66575b23
5
5
  SHA512:
6
- metadata.gz: 9b3d8952753fcd028f8e7d5f13eaa5ad95dee11f643c66ad20f761eb2334f2f78b2361df393e72bb1f97bae2848f9cb9e7cf8d72ae34048ac93b7eed3b7b043a
7
- data.tar.gz: 4432b7f0e51df7dde8de6174732aaa70037de3b8f8e9e366c214947826ad8800b3946a8e21f9813c8db85552b861a94f8ae67f19f95ebae3f0789e1f7e7c83fa
6
+ metadata.gz: 02e9e98c863e3db6b98d4aeff25de480981eebe4d95c3ce9a157fb265343aa953be987ebe399e603e6906bb8c91b6faf3cd9abfee417122b3edfc1dada40900f
7
+ data.tar.gz: aed1a2e3a35173870ad07eea81fc8f4945e6e6df80949455d686e064a60334df8f54a309f17fa3d1fd7fb6ab7bd309dd0d41a808429212b2d45f90f2eb9fa609
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.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.54.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -97,7 +97,7 @@ module Aws::Finspace
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials. This can be an instance of any one of the
100
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
101
101
  # following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -130,18 +130,23 @@ module Aws::Finspace
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
+ #
133
134
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
135
  # `:account_id` options.
135
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
136
+ #
137
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
138
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
139
+ #
137
140
  # * `~/.aws/credentials`
141
+ #
138
142
  # * `~/.aws/config`
143
+ #
139
144
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
140
145
  # are very aggressive. Construct and pass an instance of
141
146
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
142
147
  # enable retries and extended timeouts. Instance profile credential
143
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
144
- # to true.
148
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
+ # to `true`.
145
150
  #
146
151
  # @option options [required, String] :region
147
152
  # The AWS region to connect to. The configured `:region` is
@@ -169,6 +174,11 @@ module Aws::Finspace
169
174
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
170
175
  # not retry instead of sleeping.
171
176
  #
177
+ # @option options [Array<String>] :auth_scheme_preference
178
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
179
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
180
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
181
+ #
172
182
  # @option options [Boolean] :client_side_monitoring (false)
173
183
  # When `true`, client-side metrics will be collected for all API requests from
174
184
  # this client.
@@ -255,8 +265,8 @@ module Aws::Finspace
255
265
  # 4 times. Used in `standard` and `adaptive` retry modes.
256
266
  #
257
267
  # @option options [String] :profile ("default")
258
- # Used when loading credentials from the shared credentials file
259
- # at HOME/.aws/credentials. When not specified, 'default' is used.
268
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
269
+ # When not specified, 'default' is used.
260
270
  #
261
271
  # @option options [String] :request_checksum_calculation ("when_supported")
262
272
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -369,7 +379,7 @@ module Aws::Finspace
369
379
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
370
380
  #
371
381
  # @option options [Aws::TokenProvider] :token_provider
372
- # A Bearer Token Provider. This can be an instance of any one of the
382
+ # Your Bearer token used for authentication. This can be an instance of any one of the
373
383
  # following classes:
374
384
  #
375
385
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -3817,7 +3827,7 @@ module Aws::Finspace
3817
3827
  tracer: tracer
3818
3828
  )
3819
3829
  context[:gem_name] = 'aws-sdk-finspace'
3820
- context[:gem_version] = '1.54.0'
3830
+ context[:gem_version] = '1.55.0'
3821
3831
  Seahorse::Client::Request.new(handlers, context)
3822
3832
  end
3823
3833
 
@@ -54,7 +54,7 @@ module Aws::Finspace
54
54
  autoload :EndpointProvider, 'aws-sdk-finspace/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-finspace/endpoints'
56
56
 
57
- GEM_VERSION = '1.54.0'
57
+ GEM_VERSION = '1.55.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-finspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.54.0
4
+ version: 1.55.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