aws-sdk-kms 1.95.0 → 1.97.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: d4d973a74bcae462f3f222075244cfa142644a61136ba5c5fcdfaf3b2c998745
4
- data.tar.gz: 69d5649298197c0f877c7634fbe96d0f86073a47b1c7a25b2aaa2d1a7e49122b
3
+ metadata.gz: 45fa88356f81aed9e3abf885f9528afbd652774ab5e183be5cf035ccb849ab03
4
+ data.tar.gz: 67b641a2996cc28bf29aa01d2f42ad4cc17a83719f9be31f4e5b49928f685f67
5
5
  SHA512:
6
- metadata.gz: d3e5f9409823a38db9f2636680ce54d7ae750a998dd2b0ab3c766bbfff42ae090e7a3e9acd534320dfbd869998dbc4d751721eade0b2ae074ae08f663bba47fa
7
- data.tar.gz: 3f4df4b9fe9656316652bf9122348230aba0c0ab88a98344f22120e67ce3ec128b8dfc0dfa4fd1549394670cf1c72f95b65c13f1ef246f702e37491a2fb96070
6
+ metadata.gz: 1e8be40404e47555f9bc876c2a7088ebcb68c6abcae0f89d6317290dad5fad4f3b72625805b44bec9678e5898d7defddac0e4c9499599dda12a075f85c5477ec
7
+ data.tar.gz: 7cde41a95642016f349f6b9c26b59c026cc082f087bca443c61f00cf73e5ea5660c134012b592abe3d252ec21d06c946e343e3049db3d387f6c5cf9879587c5c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.96.0 (2024-11-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.95.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -257,11 +257,34 @@ module Aws::KMS
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.
@@ -1823,7 +1846,6 @@ module Aws::KMS
1823
1846
  # * `SYMMETRIC_DEFAULT`
1824
1847
  #
1825
1848
  # ^
1826
- #
1827
1849
  # * HMAC keys (symmetric)
1828
1850
  #
1829
1851
  # * `HMAC_224`
@@ -1833,7 +1855,6 @@ module Aws::KMS
1833
1855
  # * `HMAC_384`
1834
1856
  #
1835
1857
  # * `HMAC_512`
1836
- #
1837
1858
  # * Asymmetric RSA key pairs (encryption and decryption -or- signing and
1838
1859
  # verification)
1839
1860
  #
@@ -1842,7 +1863,6 @@ module Aws::KMS
1842
1863
  # * `RSA_3072`
1843
1864
  #
1844
1865
  # * `RSA_4096`
1845
- #
1846
1866
  # * Asymmetric NIST-recommended elliptic curve key pairs (signing and
1847
1867
  # verification -or- deriving shared secrets)
1848
1868
  #
@@ -1851,13 +1871,11 @@ module Aws::KMS
1851
1871
  # * `ECC_NIST_P384` (secp384r1)
1852
1872
  #
1853
1873
  # * `ECC_NIST_P521` (secp521r1)
1854
- #
1855
1874
  # * Other asymmetric elliptic curve key pairs (signing and verification)
1856
1875
  #
1857
1876
  # * `ECC_SECG_P256K1` (secp256k1), commonly used for cryptocurrencies.
1858
1877
  #
1859
1878
  # ^
1860
- #
1861
1879
  # * SM2 key pairs (encryption and decryption -or- signing and
1862
1880
  # verification -or- deriving shared secrets)
1863
1881
  #
@@ -4391,25 +4409,21 @@ module Aws::KMS
4391
4409
  # * `SYMMETRIC_DEFAULT`: 4096 bytes
4392
4410
  #
4393
4411
  # ^
4394
- #
4395
4412
  # * `RSA_2048`
4396
4413
  #
4397
4414
  # * `RSAES_OAEP_SHA_1`: 214 bytes
4398
4415
  #
4399
4416
  # * `RSAES_OAEP_SHA_256`: 190 bytes
4400
- #
4401
4417
  # * `RSA_3072`
4402
4418
  #
4403
4419
  # * `RSAES_OAEP_SHA_1`: 342 bytes
4404
4420
  #
4405
4421
  # * `RSAES_OAEP_SHA_256`: 318 bytes
4406
- #
4407
4422
  # * `RSA_4096`
4408
4423
  #
4409
4424
  # * `RSAES_OAEP_SHA_1`: 470 bytes
4410
4425
  #
4411
4426
  # * `RSAES_OAEP_SHA_256`: 446 bytes
4412
- #
4413
4427
  # * `SM2PKE`: 1024 bytes (China Regions only)
4414
4428
  #
4415
4429
  # The KMS key that you use for this operation must be in a compatible
@@ -10782,7 +10796,7 @@ module Aws::KMS
10782
10796
  tracer: tracer
10783
10797
  )
10784
10798
  context[:gem_name] = 'aws-sdk-kms'
10785
- context[:gem_version] = '1.95.0'
10799
+ context[:gem_version] = '1.97.0'
10786
10800
  Seahorse::Client::Request.new(handlers, context)
10787
10801
  end
10788
10802
 
@@ -896,7 +896,6 @@ module Aws::KMS
896
896
  # * `SYMMETRIC_DEFAULT`
897
897
  #
898
898
  # ^
899
- #
900
899
  # * HMAC keys (symmetric)
901
900
  #
902
901
  # * `HMAC_224`
@@ -906,7 +905,6 @@ module Aws::KMS
906
905
  # * `HMAC_384`
907
906
  #
908
907
  # * `HMAC_512`
909
- #
910
908
  # * Asymmetric RSA key pairs (encryption and decryption -or- signing
911
909
  # and verification)
912
910
  #
@@ -915,7 +913,6 @@ module Aws::KMS
915
913
  # * `RSA_3072`
916
914
  #
917
915
  # * `RSA_4096`
918
- #
919
916
  # * Asymmetric NIST-recommended elliptic curve key pairs (signing and
920
917
  # verification -or- deriving shared secrets)
921
918
  #
@@ -924,7 +921,6 @@ module Aws::KMS
924
921
  # * `ECC_NIST_P384` (secp384r1)
925
922
  #
926
923
  # * `ECC_NIST_P521` (secp521r1)
927
- #
928
924
  # * Other asymmetric elliptic curve key pairs (signing and
929
925
  # verification)
930
926
  #
@@ -932,7 +928,6 @@ module Aws::KMS
932
928
  # cryptocurrencies.
933
929
  #
934
930
  # ^
935
- #
936
931
  # * SM2 key pairs (encryption and decryption -or- signing and
937
932
  # verification -or- deriving shared secrets)
938
933
  #
@@ -1452,7 +1447,6 @@ module Aws::KMS
1452
1447
  #
1453
1448
  # * The [TLS certificate][6] specifies the private DNS hostname at
1454
1449
  # which the endpoint is reachable.
1455
- #
1456
1450
  # * `XKS_VPC_ENDPOINT_SERVICE_NOT_FOUND` — KMS can't find the VPC
1457
1451
  # endpoint service that it uses to communicate with the external key
1458
1452
  # store proxy. Verify that the `XksProxyVpcEndpointServiceName` is
data/lib/aws-sdk-kms.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::KMS
54
54
  autoload :EndpointProvider, 'aws-sdk-kms/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kms/endpoints'
56
56
 
57
- GEM_VERSION = '1.95.0'
57
+ GEM_VERSION = '1.97.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-kms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.95.0
4
+ version: 1.97.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-01-15 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