aws-sdk-kms 1.121.0 → 1.129.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 +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +498 -100
- data/lib/aws-sdk-kms/client_api.rb +52 -4
- data/lib/aws-sdk-kms/types.rb +363 -88
- data/lib/aws-sdk-kms.rb +1 -1
- data/sig/client.rbs +34 -14
- data/sig/types.rbs +30 -0
- 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: 5c2996f150aa6709c6a2d76a5e5ebb4acc929c02e4d57a098c492f4399688387
|
|
4
|
+
data.tar.gz: 839db1f05ea18b9091186c46f4b911ed07bb74f04e67b5d18ca2ac88cc7cec20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e33e07736af2e68de33255b5e4c060a26af0c57a15c21da696a299f6df57e91d9557083247074939209329e75c161acf0dade1c9ddccc7da7dc3152f0e0ac139
|
|
7
|
+
data.tar.gz: 935a415b09a6a22a81b621ea5343acd345b9923ea8c93285aefd7ef859b38f4d47f8e165ddde6ac7d70df037e56115dce7c8ddf45b3a334eef20edb0056d7236
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.129.0 (2026-06-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
8
|
+
|
|
9
|
+
1.128.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.127.0 (2026-05-20)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - AWS KMS now supports creating grants for AWS service principals using new GranteeServicePrincipal and RetiringServicePrincipal parameters. This release adds SourceArn grant constraint and three condition keys for controlling CreateGrant access. For more information, see Grants in AWS KMS.
|
|
18
|
+
|
|
19
|
+
1.126.0 (2026-05-19)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
24
|
+
1.125.0 (2026-05-13)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
28
|
+
|
|
29
|
+
1.124.0 (2026-04-27)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* 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.
|
|
33
|
+
|
|
34
|
+
1.123.0 (2026-03-18)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
38
|
+
|
|
39
|
+
1.122.0 (2026-02-16)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Added support for Decrypt and ReEncrypt API's to use dry run feature without ciphertext for authorization validation
|
|
43
|
+
|
|
4
44
|
1.121.0 (2026-01-16)
|
|
5
45
|
------------------
|
|
6
46
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.129.0
|