aws-sdk-supportapp 1.35.0 → 1.37.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: f1b89a67540d2d1379fc1fc2ef8737a48f8634c581c6620641de8ff341b281c7
4
- data.tar.gz: '08f28dc5029c732851aa67ce010ea704def3e8cb499886195c5c74636bfdb0a6'
3
+ metadata.gz: 6f02906c8d9b0883f4dc60c1546c0f2670e41629c2eda7e0a87e3932af877246
4
+ data.tar.gz: 72191c2e3367e25ae8b9a0db7e88653426c7576de73f923676c6cad0dc92db0f
5
5
  SHA512:
6
- metadata.gz: 9abe8151084322943f61faeec6d7b3b723c7e944dd090b1b5e6d8a14e21490794de28799f32cbef7bcab34d257ed2ce1431e98064a3eb0cea0aa49299ad1040d
7
- data.tar.gz: 59d11e32f529c107105c5fbdba0c409c3b78bb9ea4530882413a716bd42e8e6d7230dc15b51613e8ec70a542e17460895e73dff913950829b88b315ea67c9db6
6
+ metadata.gz: 70fd63d376118b9fdb8c8915fddc1a926b194fde32165c4588c119276c903df10cc027ac9225c9d8f33a7a24b46d2d18aa2bb7c326b5b51924c2ca3a72f7f098
7
+ data.tar.gz: 675c0c4bf7443fbef26626c1ded79d9bca7f4ef4873f64f7941e0fd7f220f2f1b88aa68f1791c1557d3f13a79fd9b9e1bdbc533ff915695482b5d2e463e9fa24
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2025-08-25)
5
+ ------------------
6
+
7
+ * Feature - Remove incorrect endpoint tests
8
+
9
+ 1.36.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.35.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.37.0
@@ -95,8 +95,8 @@ module Aws::SupportApp
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials used for authentication. This can be an instance of any one of the
99
- # following classes:
98
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
99
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
102
  # credentials.
@@ -124,8 +124,7 @@ module Aws::SupportApp
124
124
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
125
  # from the Cognito Identity service.
126
126
  #
127
- # When `:credentials` are not configured directly, the following
128
- # locations will be searched for credentials:
127
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
129
128
  #
130
129
  # * `Aws.config[:credentials]`
131
130
  #
@@ -139,12 +138,10 @@ module Aws::SupportApp
139
138
  #
140
139
  # * `~/.aws/config`
141
140
  #
142
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
143
- # are very aggressive. Construct and pass an instance of
144
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
- # enable retries and extended timeouts. Instance profile credential
146
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
- # to `true`.
141
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
142
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
143
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
144
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
148
145
  #
149
146
  # @option options [required, String] :region
150
147
  # The AWS region to connect to. The configured `:region` is
@@ -377,8 +374,8 @@ module Aws::SupportApp
377
374
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
378
375
  #
379
376
  # @option options [Aws::TokenProvider] :token_provider
380
- # Your Bearer token used for authentication. This can be an instance of any one of the
381
- # following classes:
377
+ # Your Bearer token used for authentication. This can be any class that includes and implements
378
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
382
379
  #
383
380
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
384
381
  # tokens.
@@ -986,7 +983,7 @@ module Aws::SupportApp
986
983
  tracer: tracer
987
984
  )
988
985
  context[:gem_name] = 'aws-sdk-supportapp'
989
- context[:gem_version] = '1.35.0'
986
+ context[:gem_version] = '1.37.0'
990
987
  Seahorse::Client::Request.new(handlers, context)
991
988
  end
992
989
 
@@ -28,7 +28,7 @@ module Aws::SupportApp
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
32
  return Aws::Endpoints::Endpoint.new(url: "https://supportapp-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
33
  end
34
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -54,7 +54,7 @@ module Aws::SupportApp
54
54
  autoload :EndpointProvider, 'aws-sdk-supportapp/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-supportapp/endpoints'
56
56
 
57
- GEM_VERSION = '1.35.0'
57
+ GEM_VERSION = '1.37.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-supportapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services