aws-sdk-cloudfrontkeyvaluestore 1.18.0 → 1.19.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: ad4f90e3272918bcdc9e683f04e04ef691847684912a921f58ba208d13023d20
4
- data.tar.gz: b485d518e2b8bceb7f3dd35e35eb2bfcf83af8f18e8589dfa0cb61a81b5e9863
3
+ metadata.gz: 6d8258edebd19894d39a5f93741b80352b5941132b8ca5e46f859cc3c4ca7bc4
4
+ data.tar.gz: cb17d0e58305be262100ab3492a23361abcbd803c54c94b01b08d90bba4e12f7
5
5
  SHA512:
6
- metadata.gz: 4350111f407cb4271bc95d88facf29ae4d778a8ab8b1a6a081941d6bd7dfae58b004c89731ae7ae0c7e3f375da953d8079501a157633c19c0d233f68e31fadef
7
- data.tar.gz: 523fc08a18db6d61e54b25846e518887f690644166a17aaeb02e68776cd598fa9cb9042ff36b6449ac8232e9bb9a80cd7ce0eb8f60cc7192e9a0a3266a3e8fba
6
+ metadata.gz: 3a9b1a76de3af9b1d2d2f8f4deabaf1c52e6cdd7d983e8990fbd0155fd5200a17e2a40c3909c568f119f95fb3f57199ff03da08f5da3222f582c11370e6ad4d9
7
+ data.tar.gz: 2c5e6c29d7ebe2d74a295aa6a761ddbfe1c451953d67e497395c550aea078f0ec7ad8e9b7e605bc0306269e4cee353c62d3719f249c0f0b6ff68393ab2584710
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.18.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
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.18.0'
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
- kvs_arn = parameters.kvs_arn
14
- region = parameters.region
15
- use_fips = parameters.use_fips
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"
@@ -54,7 +54,7 @@ module Aws::CloudFrontKeyValueStore
54
54
  autoload :EndpointProvider, 'aws-sdk-cloudfrontkeyvaluestore/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-cloudfrontkeyvaluestore/endpoints'
56
56
 
57
- GEM_VERSION = '1.18.0'
57
+ GEM_VERSION = '1.19.0'
58
58
 
59
59
  end
60
60
 
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.18.0
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-01-15 00:00:00.000000000 Z
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