aws-sdk-mpa 1.2.0 → 1.4.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: a63ce2948f6a059642f60b989315e8444ed786cd478bfad98fd61f407e5c985c
4
- data.tar.gz: 11d52b53e9d318a0bac5c7b29e817f3b79e10fa43eb2b1d3f1ef49a28c299f92
3
+ metadata.gz: 317c4fcf02689d48b652373062d94a41ccd43c43177872dc42380214728dbf8d
4
+ data.tar.gz: 8c0855a8dff494ec821c013c1708854d5bee3b909b5e7a344e9436e63ec2a13c
5
5
  SHA512:
6
- metadata.gz: 34f024b96cc9d4305189efd0c2a76b733c9406dd5d97ed37e1265e602cb17bc4e77ac74fd9a1a33299d41df4fbf196461f53b948fb359e0b5f81ea5009a447f5
7
- data.tar.gz: ee362b26884373341dedc304df297021a96436b3a3e1c900434061f18ad0d6de4994a41d389075cba5f57042d36c4eb3166737ac05247ea6576eb5a6b2872a0e
6
+ metadata.gz: 0355ddc61fa9072f6d80798f42e26be40715c8f948a2ebe5295f686088f9001e2e12c15eb7c7fc2fa28920261e656b4d9d0a6a9d6f71a6453a379060d701b704
7
+ data.tar.gz: eb52871e97c7c5be417a237add522805700358846a913fcabcdc0884e5b2c41ca985e93f11c3793f802c4c640e217c29a3246a2a21958c64486b40181d2304b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.4.0 (2025-08-08)
5
+ ------------------
6
+
7
+ * Feature - Removed incorrect endpoint tests
8
+
9
+ 1.3.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.2.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.4.0
@@ -95,8 +95,8 @@ module Aws::MPA
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::MPA
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::MPA
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::MPA
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.
@@ -1613,7 +1610,7 @@ module Aws::MPA
1613
1610
  tracer: tracer
1614
1611
  )
1615
1612
  context[:gem_name] = 'aws-sdk-mpa'
1616
- context[:gem_version] = '1.2.0'
1613
+ context[:gem_version] = '1.4.0'
1617
1614
  Seahorse::Client::Request.new(handlers, context)
1618
1615
  end
1619
1616
 
data/lib/aws-sdk-mpa.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::MPA
55
55
  autoload :EndpointProvider, 'aws-sdk-mpa/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mpa/endpoints'
57
57
 
58
- GEM_VERSION = '1.2.0'
58
+ GEM_VERSION = '1.4.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mpa
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services