aws-sdk-serverlessapplicationrepository 1.90.0 → 1.92.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-serverlessapplicationrepository/client.rb +6 -8
- data/lib/aws-sdk-serverlessapplicationrepository.rb +1 -1
- data/sig/client.rbs +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9dcde6a8f53ed80e8cc7c7e7e5d6328edccb9dd9dcd8d1ca4488177e4c933d8a
|
|
4
|
+
data.tar.gz: e8afc311d1bf7b63228a3b54d4968bbf5f08a0867cb0ca238225037b22cadf8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 156edbf5a4118831b9dc8c251f65c93242e162917f5c9eb1d90477f9e3e750fb8974afbda5482cb1cf88efdb3f30c1769d464f969ee4536f74d4a8f9333c35f6
|
|
7
|
+
data.tar.gz: 94158fd65657ecbd4883d54d3750ab52dc9b718c3ff006fc1c6097ac869eb218693d2e1f3d45da4313e2025106b2812ab261f2af1c6e2963d8a1e19fad59605b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.92.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
8
|
+
|
|
9
|
+
1.91.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.90.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.92.0
|
|
@@ -199,7 +199,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::ServerlessApplicationRepository
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -1292,7 +1290,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
1292
1290
|
tracer: tracer
|
|
1293
1291
|
)
|
|
1294
1292
|
context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
|
|
1295
|
-
context[:gem_version] = '1.
|
|
1293
|
+
context[:gem_version] = '1.92.0'
|
|
1296
1294
|
Seahorse::Client::Request.new(handlers, context)
|
|
1297
1295
|
end
|
|
1298
1296
|
|
|
@@ -54,7 +54,7 @@ module Aws::ServerlessApplicationRepository
|
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-serverlessapplicationrepository/endpoint_provider'
|
|
55
55
|
autoload :Endpoints, 'aws-sdk-serverlessapplicationrepository/endpoints'
|
|
56
56
|
|
|
57
|
-
GEM_VERSION = '1.
|
|
57
|
+
GEM_VERSION = '1.92.0'
|
|
58
58
|
|
|
59
59
|
end
|
|
60
60
|
|
data/sig/client.rbs
CHANGED
|
@@ -156,7 +156,7 @@ module Aws
|
|
|
156
156
|
{
|
|
157
157
|
name: ::String,
|
|
158
158
|
value: ::String
|
|
159
|
-
}
|
|
159
|
+
}
|
|
160
160
|
],
|
|
161
161
|
?resource_types: Array[::String],
|
|
162
162
|
?rollback_configuration: {
|
|
@@ -165,7 +165,7 @@ module Aws
|
|
|
165
165
|
{
|
|
166
166
|
arn: ::String,
|
|
167
167
|
type: ::String
|
|
168
|
-
}
|
|
168
|
+
}
|
|
169
169
|
]?
|
|
170
170
|
},
|
|
171
171
|
?semantic_version: ::String,
|
|
@@ -174,7 +174,7 @@ module Aws
|
|
|
174
174
|
{
|
|
175
175
|
key: ::String,
|
|
176
176
|
value: ::String
|
|
177
|
-
}
|
|
177
|
+
}
|
|
178
178
|
],
|
|
179
179
|
?template_id: ::String
|
|
180
180
|
) -> _CreateCloudFormationChangeSetResponseSuccess
|
|
@@ -305,7 +305,7 @@ module Aws
|
|
|
305
305
|
principal_org_i_ds: Array[::String]?,
|
|
306
306
|
principals: Array[::String],
|
|
307
307
|
statement_id: ::String?
|
|
308
|
-
}
|
|
308
|
+
}
|
|
309
309
|
]
|
|
310
310
|
) -> _PutApplicationPolicyResponseSuccess
|
|
311
311
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutApplicationPolicyResponseSuccess
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-serverlessapplicationrepository
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.92.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.
|
|
21
|
+
version: 3.248.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.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|