aws-sdk-cloudfrontkeyvaluestore 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d8258edebd19894d39a5f93741b80352b5941132b8ca5e46f859cc3c4ca7bc4
|
4
|
+
data.tar.gz: cb17d0e58305be262100ab3492a23361abcbd803c54c94b01b08d90bba4e12f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a9b1a76de3af9b1d2d2f8f4deabaf1c52e6cdd7d983e8990fbd0155fd5200a17e2a40c3909c568f119f95fb3f57199ff03da08f5da3222f582c11370e6ad4d9
|
7
|
+
data.tar.gz: 2c5e6c29d7ebe2d74a295aa6a761ddbfe1c451953d67e497395c550aea078f0ec7ad8e9b7e605bc0306269e4cee353c62d3719f249c0f0b6ff68393ab2584710
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -754,7 +754,7 @@ module Aws::CloudFrontKeyValueStore
|
|
754
754
|
tracer: tracer
|
755
755
|
)
|
756
756
|
context[:gem_name] = 'aws-sdk-cloudfrontkeyvaluestore'
|
757
|
-
context[:gem_version] = '1.
|
757
|
+
context[:gem_version] = '1.19.0'
|
758
758
|
Seahorse::Client::Request.new(handlers, context)
|
759
759
|
end
|
760
760
|
|
@@ -10,24 +10,20 @@
|
|
10
10
|
module Aws::CloudFrontKeyValueStore
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
endpoint = parameters.endpoint
|
17
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, false)
|
18
|
-
if Aws::Endpoints::Matchers.set?(kvs_arn)
|
19
|
-
if (parsed_arn = Aws::Endpoints::Matchers.aws_parse_arn(kvs_arn))
|
13
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false)
|
14
|
+
if Aws::Endpoints::Matchers.set?(parameters.kvs_arn)
|
15
|
+
if (parsed_arn = Aws::Endpoints::Matchers.aws_parse_arn(parameters.kvs_arn))
|
20
16
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(parsed_arn, "service"), "cloudfront")
|
21
17
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(parsed_arn, "region"), "")
|
22
18
|
if (arn_type = Aws::Endpoints::Matchers.attr(parsed_arn, "resourceId[0]"))
|
23
19
|
if Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(arn_type, ""))
|
24
20
|
if Aws::Endpoints::Matchers.string_equals?(arn_type, "key-value-store")
|
25
21
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(parsed_arn, "partition"), "aws")
|
26
|
-
if Aws::Endpoints::Matchers.set?(region)
|
27
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
22
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
28
24
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "#{parsed_arn['partition']}")
|
29
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
30
|
-
if (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
25
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
26
|
+
if (url = Aws::Endpoints::Matchers.parse_url(parameters.endpoint))
|
31
27
|
return Aws::Endpoints::Endpoint.new(url: "#{url['scheme']}://#{parsed_arn['accountId']}.#{url['authority']}#{url['path']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"cloudfront-keyvaluestore", "signingRegionSet"=>["*"]}]})
|
32
28
|
end
|
33
29
|
raise ArgumentError, "Provided endpoint is not a valid URL"
|
@@ -37,8 +33,8 @@ module Aws::CloudFrontKeyValueStore
|
|
37
33
|
raise ArgumentError, "Client was configured for partition `#{partition_result['name']}` but Kvs ARN has `#{parsed_arn['partition']}`"
|
38
34
|
end
|
39
35
|
end
|
40
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
41
|
-
if (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
36
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
37
|
+
if (url = Aws::Endpoints::Matchers.parse_url(parameters.endpoint))
|
42
38
|
return Aws::Endpoints::Endpoint.new(url: "#{url['scheme']}://#{parsed_arn['accountId']}.#{url['authority']}#{url['path']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4a", "signingName"=>"cloudfront-keyvaluestore", "signingRegionSet"=>["*"]}]})
|
43
39
|
end
|
44
40
|
raise ArgumentError, "Provided endpoint is not a valid URL"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudfrontkeyvaluestore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|