aws-sdk-cloudfrontkeyvaluestore 1.17.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: cfb28e53f2bf4289f4af9516d5028bf41dc7fa93cef43b20e37b29f5000d4d4b
4
- data.tar.gz: fd9f0ee2e1c696f994b50cea413915ce16ee4b0a56006fe27a5b010a1850322d
3
+ metadata.gz: 6d8258edebd19894d39a5f93741b80352b5941132b8ca5e46f859cc3c4ca7bc4
4
+ data.tar.gz: cb17d0e58305be262100ab3492a23361abcbd803c54c94b01b08d90bba4e12f7
5
5
  SHA512:
6
- metadata.gz: 95e1b932d2c19ac21cea7679020aa0651b38df69d181c2c4e62073d96be8089c188bfe7cb9996a60466924775473f3b88bc4fe048473ceaaafb01f46b33ca637
7
- data.tar.gz: e97ffca2594034b8b5ed304e90c5180ba6e3bb15c37f72e36c0e888c0e976b9497f5345568b6a79f94bedab5f22f0e0fc508bbceeab1a1509a509a7f7c5ed89f
6
+ metadata.gz: 3a9b1a76de3af9b1d2d2f8f4deabaf1c52e6cdd7d983e8990fbd0155fd5200a17e2a40c3909c568f119f95fb3f57199ff03da08f5da3222f582c11370e6ad4d9
7
+ data.tar.gz: 2c5e6c29d7ebe2d74a295aa6a761ddbfe1c451953d67e497395c550aea078f0ec7ad8e9b7e605bc0306269e4cee353c62d3719f249c0f0b6ff68393ab2584710
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.18.0 (2025-01-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.17.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.19.0
@@ -257,11 +257,34 @@ module Aws::CloudFrontKeyValueStore
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -731,7 +754,7 @@ module Aws::CloudFrontKeyValueStore
731
754
  tracer: tracer
732
755
  )
733
756
  context[:gem_name] = 'aws-sdk-cloudfrontkeyvaluestore'
734
- context[:gem_version] = '1.17.0'
757
+ context[:gem_version] = '1.19.0'
735
758
  Seahorse::Client::Request.new(handlers, context)
736
759
  end
737
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.17.0'
57
+ GEM_VERSION = '1.19.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.17.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: 2024-10-18 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement