aws-sdk-rolesanywhere 1.38.0 → 1.40.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: 4ac2d926424b2c2852c48263ede3a7236644fda799f80f7b2e158c565a4dfcbb
4
- data.tar.gz: 74342cf5f7831a131691cf7a32650c2669381da9133ab1578baaf3903775080d
3
+ metadata.gz: cd3585e4bf178b0daf29bce489e76deba58ade6e5feab79032b103cfcec32e1a
4
+ data.tar.gz: c230f4bd8d3b52e76412b51bfffdeb0538c8b84738036efd14f2b59873bd6b78
5
5
  SHA512:
6
- metadata.gz: e535dfd8ed00757dd236934a248e8f69f6ac95cbee7efa880deb5f45698f652429a9b4409f19376f538c0300d7123f17cc4776a8f400326bb86918a22826e585
7
- data.tar.gz: 93d6192c470777ed7b2a9d81e25679e6c5c18fd7bac3e9291fc60ef303c5fe6bad00dd6d77bd5abc63b3d3e771cadfbda1af3997724e37a7ecdda23785eda1e3
6
+ metadata.gz: c7b1265b74858253b142ffd7faeeedb1e63c9226d3916c6e124f4c1bc215dccab4a5f906b7dfe6fa7dae42c94763b2326f06d23b0803b0fcd4f2661e5033fbaf
7
+ data.tar.gz: bbddb8965da76b3d2dce6167279194e83cc4c21eb0cf0ff0e05cf42d7423222489df0419fd062eaa8b6e4ace05d0aadf5c2a89736600a008f89a5b1afca1c0da
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2025-08-22)
5
+ ------------------
6
+
7
+ * Feature - Remove incorrect endpoint tests
8
+
9
+ 1.39.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.38.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -95,8 +95,8 @@ module Aws::RolesAnywhere
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::RolesAnywhere
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::RolesAnywhere
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::RolesAnywhere
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.
@@ -2051,7 +2048,7 @@ module Aws::RolesAnywhere
2051
2048
  tracer: tracer
2052
2049
  )
2053
2050
  context[:gem_name] = 'aws-sdk-rolesanywhere'
2054
- context[:gem_version] = '1.38.0'
2051
+ context[:gem_version] = '1.40.0'
2055
2052
  Seahorse::Client::Request.new(handlers, context)
2056
2053
  end
2057
2054
 
@@ -54,7 +54,7 @@ module Aws::RolesAnywhere
54
54
  autoload :EndpointProvider, 'aws-sdk-rolesanywhere/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-rolesanywhere/endpoints'
56
56
 
57
- GEM_VERSION = '1.38.0'
57
+ GEM_VERSION = '1.40.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-rolesanywhere
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services