@aws-sdk/client-kms 3.185.0 → 3.188.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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-es/KMS.js +202 -209
- package/dist-es/KMSClient.js +22 -28
- package/dist-es/commands/CancelKeyDeletionCommand.js +21 -28
- package/dist-es/commands/ConnectCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/CreateAliasCommand.js +22 -29
- package/dist-es/commands/CreateCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/CreateGrantCommand.js +21 -28
- package/dist-es/commands/CreateKeyCommand.js +21 -28
- package/dist-es/commands/DecryptCommand.js +21 -28
- package/dist-es/commands/DeleteAliasCommand.js +22 -29
- package/dist-es/commands/DeleteCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/DeleteImportedKeyMaterialCommand.js +22 -29
- package/dist-es/commands/DescribeCustomKeyStoresCommand.js +21 -28
- package/dist-es/commands/DescribeKeyCommand.js +21 -28
- package/dist-es/commands/DisableKeyCommand.js +22 -29
- package/dist-es/commands/DisableKeyRotationCommand.js +22 -29
- package/dist-es/commands/DisconnectCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/EnableKeyCommand.js +22 -29
- package/dist-es/commands/EnableKeyRotationCommand.js +22 -29
- package/dist-es/commands/EncryptCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyPairCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +21 -28
- package/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +21 -28
- package/dist-es/commands/GenerateMacCommand.js +21 -28
- package/dist-es/commands/GenerateRandomCommand.js +21 -28
- package/dist-es/commands/GetKeyPolicyCommand.js +21 -28
- package/dist-es/commands/GetKeyRotationStatusCommand.js +21 -28
- package/dist-es/commands/GetParametersForImportCommand.js +21 -28
- package/dist-es/commands/GetPublicKeyCommand.js +21 -28
- package/dist-es/commands/ImportKeyMaterialCommand.js +21 -28
- package/dist-es/commands/ListAliasesCommand.js +21 -28
- package/dist-es/commands/ListGrantsCommand.js +21 -28
- package/dist-es/commands/ListKeyPoliciesCommand.js +21 -28
- package/dist-es/commands/ListKeysCommand.js +21 -28
- package/dist-es/commands/ListResourceTagsCommand.js +21 -28
- package/dist-es/commands/ListRetirableGrantsCommand.js +21 -28
- package/dist-es/commands/PutKeyPolicyCommand.js +22 -29
- package/dist-es/commands/ReEncryptCommand.js +21 -28
- package/dist-es/commands/ReplicateKeyCommand.js +21 -28
- package/dist-es/commands/RetireGrantCommand.js +22 -29
- package/dist-es/commands/RevokeGrantCommand.js +22 -29
- package/dist-es/commands/ScheduleKeyDeletionCommand.js +21 -28
- package/dist-es/commands/SignCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +22 -29
- package/dist-es/commands/UntagResourceCommand.js +22 -29
- package/dist-es/commands/UpdateAliasCommand.js +22 -29
- package/dist-es/commands/UpdateCustomKeyStoreCommand.js +21 -28
- package/dist-es/commands/UpdateKeyDescriptionCommand.js +22 -29
- package/dist-es/commands/UpdatePrimaryRegionCommand.js +22 -29
- package/dist-es/commands/VerifyCommand.js +21 -28
- package/dist-es/commands/VerifyMacCommand.js +21 -28
- package/dist-es/endpoints.js +9 -8
- package/dist-es/models/KMSServiceException.js +5 -10
- package/dist-es/models/models_0.js +699 -502
- package/dist-es/pagination/DescribeCustomKeyStoresPaginator.js +25 -68
- package/dist-es/pagination/ListAliasesPaginator.js +25 -68
- package/dist-es/pagination/ListGrantsPaginator.js +25 -68
- package/dist-es/pagination/ListKeyPoliciesPaginator.js +25 -68
- package/dist-es/pagination/ListKeysPaginator.js +25 -68
- package/dist-es/pagination/ListResourceTagsPaginator.js +25 -68
- package/dist-es/pagination/ListRetirableGrantsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +3725 -4852
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-10-13 ([914798b](https://github.com/aws/aws-sdk-js-v3/commit/914798ba376b17631d02dc04a81faae63e1dce05))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-kms
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
7
26
|
|
|
8
27
|
|