aws-sdk-cloudwatchevents 1.68.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchevents/client.rb +1 -1
- data/lib/aws-sdk-cloudwatchevents/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-cloudwatchevents.rb +1 -1
- data/sig/client.rbs +1015 -0
- data/sig/errors.rbs +38 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1136 -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: 15ce82791a19dc823470ddd2d38790f51136e0447fb44523489fc0aa3f1a68c4
|
4
|
+
data.tar.gz: 5403beb79d664e757fb83991dd0f4af5746197064dcde91a8637a61675b33661
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c13f3182b25600ba893cc8104f90c8469415b5ab2f2e74c5d0d6c9527267e11b0a4db163d7eb77b64f621e37311caa34df8f714353d0617ec446bde634a9f7db
|
7
|
+
data.tar.gz: 0f0397ff436c974619691f04fb1aa9b4115ceb01969fac6a0fdd3e5da87678bfe9634f3230d17dabb5167ace6b8a9fe081fe2094a4e5d4a76487c1fe2e49e7bb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.70.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.69.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.68.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.70.0
|
@@ -3374,7 +3374,7 @@ module Aws::CloudWatchEvents
|
|
3374
3374
|
params: params,
|
3375
3375
|
config: config)
|
3376
3376
|
context[:gem_name] = 'aws-sdk-cloudwatchevents'
|
3377
|
-
context[:gem_version] = '1.
|
3377
|
+
context[:gem_version] = '1.70.0'
|
3378
3378
|
Seahorse::Client::Request.new(handlers, context)
|
3379
3379
|
end
|
3380
3380
|
|
@@ -14,6 +14,7 @@ module Aws::CloudWatchEvents
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::CloudWatchEvents::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::CloudWatchEvents
|
|
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
|
|