aws-sdk-pipes 1.41.0 → 1.42.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: d67878cde4d77af73befed4fff8153d61c188868259b7a4f1dd6bcde90715703
4
- data.tar.gz: 7a65a77bec6277178bdb0c53670e8809b22107fa0f46941b68d463da459a72e9
3
+ metadata.gz: eb9fdb9ccbf4269e452e25d9c99f8d42b62b0f0aafcb5986f378703c15d4a52b
4
+ data.tar.gz: 915ddafdbca1de0ed1890ff8c6a90ef5845dd715b41888b0ffeda3bb99079ffa
5
5
  SHA512:
6
- metadata.gz: 5a69be1619cb815d1ff299b4ca8aa9599c7604ffa681c590cb978b98074ffee6596117c4e7a53c2ac6e38e37098dbe6ddbdc9c970df2d7acf10d6890eac9ef0c
7
- data.tar.gz: 2d875f5a0a56c236ab863e238a8a5b41aa568c99bf0581eaaed5d3053f0ec815b4cf5c59cfd9dd08aec580e458925e3909c315be379e6f4575b30a0ed457b5e9
6
+ metadata.gz: aca6903d2fa5a9422b0bf288a480bd7280f34b08f12c90e0a69159d0ac8f54a0b4ca9c48bf26b453bbe1bc40291475f41e279db1e37d817d6ce5d8b23bee6eb8
7
+ data.tar.gz: aafd06e870ed34480b7f98f5fc0205f75d66024638858c517c7933a0a290788c321c7143ec388f57df2691fc3fe6476acb24b39ddc7234c401b43d0f499b6132
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2025-08-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.41.0 (2025-07-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -95,8 +95,8 @@ module Aws::Pipes
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::Pipes
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::Pipes
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::Pipes
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.
@@ -1891,7 +1888,7 @@ module Aws::Pipes
1891
1888
  tracer: tracer
1892
1889
  )
1893
1890
  context[:gem_name] = 'aws-sdk-pipes'
1894
- context[:gem_version] = '1.41.0'
1891
+ context[:gem_version] = '1.42.0'
1895
1892
  Seahorse::Client::Request.new(handlers, context)
1896
1893
  end
1897
1894
 
data/lib/aws-sdk-pipes.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Pipes
55
55
  autoload :EndpointProvider, 'aws-sdk-pipes/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-pipes/endpoints'
57
57
 
58
- GEM_VERSION = '1.41.0'
58
+ GEM_VERSION = '1.42.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-pipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services