aws-sdk-notifications 1.8.0 → 1.10.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: e062cedb5f0db95f8f07eb205a1680cbd052fe4293b0e2002c90c9c5e5ccc1d9
4
- data.tar.gz: b63e82e9a492821d356e38ff2bc8cbe359cef39bc9c2ae1ad02bb9da9f76a068
3
+ metadata.gz: 4e652487f8ed326fde493bd62c508acd4c493feaaea1ecec21ffb4d1cbf94378
4
+ data.tar.gz: 4ba6b8ab4cb587ac7a8bff06e0acde4d55a765a89c5ebc6c93f04f5813fea5ae
5
5
  SHA512:
6
- metadata.gz: 2c4185e06edb0b3a1ff78436e0e7c80482b764f5072403f05cc9e904fcb7b52ff3fd51c14841fe920571a05dbb137a6c381b4b7690131bcacbd484c03c515d40
7
- data.tar.gz: 1cc5aafe488e5885d2d910875a63e472209c77b6a788fd463cc5a51fa16699c8766cf52a09f042a5bffaf669b376cda830d49a65b8f15d53ea9cad06e16f34a3
6
+ metadata.gz: dd261ef09ae499af6c0395fe204191aedf5bc398f50dbb32db0082138935223f5d9923a5b4b59a5c259fd60642476a1d47a361a47414cc7f60c56412674e440d
7
+ data.tar.gz: bee1b563b22c7d1a03c25e0a6422b6781aa98919eb71a6db9cf428a4fd5f3497172c580b33fa0fe710f49b3f3b6d079e10a33693867a37865f0b31210d269f9b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2025-08-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2025-07-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.8.0 (2025-07-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.10.0
@@ -95,8 +95,8 @@ module Aws::Notifications
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::Notifications
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::Notifications
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::Notifications
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.
@@ -2259,7 +2256,7 @@ module Aws::Notifications
2259
2256
  tracer: tracer
2260
2257
  )
2261
2258
  context[:gem_name] = 'aws-sdk-notifications'
2262
- context[:gem_version] = '1.8.0'
2259
+ context[:gem_version] = '1.10.0'
2263
2260
  Seahorse::Client::Request.new(handlers, context)
2264
2261
  end
2265
2262
 
@@ -55,7 +55,7 @@ module Aws::Notifications
55
55
  autoload :EndpointProvider, 'aws-sdk-notifications/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-notifications/endpoints'
57
57
 
58
- GEM_VERSION = '1.8.0'
58
+ GEM_VERSION = '1.10.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-notifications
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.10.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.227.0
21
+ version: 3.228.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.227.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement