aws-sdk-kms 1.112.0 → 1.124.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 +4 -4
- data/CHANGELOG.md +60 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +577 -244
- data/lib/aws-sdk-kms/client_api.rb +45 -2
- data/lib/aws-sdk-kms/customizations.rb +0 -8
- data/lib/aws-sdk-kms/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-kms/types.rb +400 -152
- data/lib/aws-sdk-kms.rb +1 -1
- data/sig/client.rbs +33 -16
- data/sig/types.rbs +40 -14
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d8ae88408d0f29e3d59ef7764a134e301ca0c7f48c530c10abbca84debfc4ea5
|
|
4
|
+
data.tar.gz: 2eab4b5e20787e47b6032882a862dbd986ead218b68ba01b25ebe1b8d2a5084d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6beb9fd959cdd8ecbf3c8728ba6fdbc845b419a51d59bdf714bffe26ebee99b3fc3082de29ab85e0aa4a5c21ad7c22120520205f9fee6355c8f37b070e962977
|
|
7
|
+
data.tar.gz: 3eaddf3b69a40da8a41cbff482806bc8d87531de90ab6abb07be1268bde8e91f8211d4d842007b5f376348d9c5c1553d08187e1ceaee2c2f98640049bce0c782
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,66 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.124.0 (2026-04-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - KMS GetKeyLastUsage API provides information on the last successful cryptographic operation performed on KMS keys. This new API provides KMS customers with the last timestamp, CloudTrail eventId, and the cryptographic operation that was performed on the key.
|
|
8
|
+
|
|
9
|
+
1.123.0 (2026-03-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.122.0 (2026-02-16)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Added support for Decrypt and ReEncrypt API's to use dry run feature without ciphertext for authorization validation
|
|
18
|
+
|
|
19
|
+
1.121.0 (2026-01-16)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
24
|
+
1.120.0 (2026-01-08)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
28
|
+
|
|
29
|
+
1.119.0 (2026-01-05)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
33
|
+
|
|
34
|
+
1.118.0 (2025-11-21)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material
|
|
38
|
+
|
|
39
|
+
1.117.0 (2025-11-07)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Added support for new ECC_NIST_EDWARDS25519 AWS KMS key spec
|
|
43
|
+
|
|
44
|
+
1.116.0 (2025-10-30)
|
|
45
|
+
------------------
|
|
46
|
+
|
|
47
|
+
* Feature - Add cross account VPC endpoint service connectivity support to CustomKeyStore.
|
|
48
|
+
|
|
49
|
+
1.115.0 (2025-10-21)
|
|
50
|
+
------------------
|
|
51
|
+
|
|
52
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
53
|
+
|
|
54
|
+
1.114.0 (2025-10-16)
|
|
55
|
+
------------------
|
|
56
|
+
|
|
57
|
+
* Feature - Update endpoint ruleset parameters casing
|
|
58
|
+
|
|
59
|
+
1.113.0 (2025-09-24)
|
|
60
|
+
------------------
|
|
61
|
+
|
|
62
|
+
* Feature - Documentation only updates for KMS.
|
|
63
|
+
|
|
4
64
|
1.112.0 (2025-08-27)
|
|
5
65
|
------------------
|
|
6
66
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.124.0
|