aws-sdk-amplifyuibuilder 1.21.0 → 1.23.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-amplifyuibuilder/client.rb +1 -1
- data/lib/aws-sdk-amplifyuibuilder/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-amplifyuibuilder.rb +1 -1
- data/sig/client.rbs +2261 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +968 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e36f4997d19f3eabd001ce5bafd98ead4b7c0e72aa4eb0d2eeab7edbd49b6f40
|
4
|
+
data.tar.gz: 683abc475b7350ac13b5de3d648fe2f51fbacbe4c586e5983694f6de9e2f9bbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4b4fecd574638a32f045587779c206306be4cdaf3eea425e3dc6ac887545bf9463fad04ce9aa1b95921ca7987bf364441aa4a2b5b20690e1ecaf9395dbbcea3
|
7
|
+
data.tar.gz: 1f45f14b97fbb476262b7f9df71ff1a945455d8afe15ecddeb247cbdff3f50deb0d7393119e544576240fe882afe966079701494c2e40fad400ccbbfe71ccca8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.23.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.22.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.21.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.23.0
|
@@ -6434,7 +6434,7 @@ module Aws::AmplifyUIBuilder
|
|
6434
6434
|
params: params,
|
6435
6435
|
config: config)
|
6436
6436
|
context[:gem_name] = 'aws-sdk-amplifyuibuilder'
|
6437
|
-
context[:gem_version] = '1.
|
6437
|
+
context[:gem_version] = '1.23.0'
|
6438
6438
|
Seahorse::Client::Request.new(handlers, context)
|
6439
6439
|
end
|
6440
6440
|
|
@@ -14,6 +14,7 @@ module Aws::AmplifyUIBuilder
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::AmplifyUIBuilder::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -25,16 +26,17 @@ module Aws::AmplifyUIBuilder
|
|
25
26
|
# @api private
|
26
27
|
class Handler < Seahorse::Client::Handler
|
27
28
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
29
|
unless context[:discovered_endpoint]
|
30
30
|
params = parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
34
34
|
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
|
36
|
+
context[:endpoint_params] = params
|
37
|
+
context[:endpoint_properties] = endpoint.properties
|
35
38
|
end
|
36
39
|
|
37
|
-
context[:endpoint_params] = params
|
38
40
|
context[:auth_scheme] =
|
39
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
42
|
|