@aws-sdk/client-kms 3.489.0 → 3.495.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/dist-cjs/KMS.js +1 -111
- package/dist-cjs/KMSClient.js +1 -43
- package/dist-cjs/commands/CancelKeyDeletionCommand.js +1 -28
- package/dist-cjs/commands/ConnectCustomKeyStoreCommand.js +1 -28
- package/dist-cjs/commands/CreateAliasCommand.js +1 -28
- package/dist-cjs/commands/CreateCustomKeyStoreCommand.js +1 -29
- package/dist-cjs/commands/CreateGrantCommand.js +1 -28
- package/dist-cjs/commands/CreateKeyCommand.js +1 -28
- package/dist-cjs/commands/DecryptCommand.js +1 -29
- package/dist-cjs/commands/DeleteAliasCommand.js +1 -28
- package/dist-cjs/commands/DeleteCustomKeyStoreCommand.js +1 -28
- package/dist-cjs/commands/DeleteImportedKeyMaterialCommand.js +1 -28
- package/dist-cjs/commands/DescribeCustomKeyStoresCommand.js +1 -29
- package/dist-cjs/commands/DescribeKeyCommand.js +1 -28
- package/dist-cjs/commands/DisableKeyCommand.js +1 -28
- package/dist-cjs/commands/DisableKeyRotationCommand.js +1 -28
- package/dist-cjs/commands/DisconnectCustomKeyStoreCommand.js +1 -28
- package/dist-cjs/commands/EnableKeyCommand.js +1 -28
- package/dist-cjs/commands/EnableKeyRotationCommand.js +1 -28
- package/dist-cjs/commands/EncryptCommand.js +1 -29
- package/dist-cjs/commands/GenerateDataKeyCommand.js +1 -29
- package/dist-cjs/commands/GenerateDataKeyPairCommand.js +1 -29
- package/dist-cjs/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +1 -28
- package/dist-cjs/commands/GenerateDataKeyWithoutPlaintextCommand.js +1 -28
- package/dist-cjs/commands/GenerateMacCommand.js +1 -29
- package/dist-cjs/commands/GenerateRandomCommand.js +1 -29
- package/dist-cjs/commands/GetKeyPolicyCommand.js +1 -28
- package/dist-cjs/commands/GetKeyRotationStatusCommand.js +1 -28
- package/dist-cjs/commands/GetParametersForImportCommand.js +1 -29
- package/dist-cjs/commands/GetPublicKeyCommand.js +1 -28
- package/dist-cjs/commands/ImportKeyMaterialCommand.js +1 -28
- package/dist-cjs/commands/ListAliasesCommand.js +1 -28
- package/dist-cjs/commands/ListGrantsCommand.js +1 -28
- package/dist-cjs/commands/ListKeyPoliciesCommand.js +1 -28
- package/dist-cjs/commands/ListKeysCommand.js +1 -28
- package/dist-cjs/commands/ListResourceTagsCommand.js +1 -28
- package/dist-cjs/commands/ListRetirableGrantsCommand.js +1 -28
- package/dist-cjs/commands/PutKeyPolicyCommand.js +1 -28
- package/dist-cjs/commands/ReEncryptCommand.js +1 -28
- package/dist-cjs/commands/ReplicateKeyCommand.js +1 -28
- package/dist-cjs/commands/RetireGrantCommand.js +1 -28
- package/dist-cjs/commands/RevokeGrantCommand.js +1 -28
- package/dist-cjs/commands/ScheduleKeyDeletionCommand.js +1 -28
- package/dist-cjs/commands/SignCommand.js +1 -29
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateAliasCommand.js +1 -28
- package/dist-cjs/commands/UpdateCustomKeyStoreCommand.js +1 -29
- package/dist-cjs/commands/UpdateKeyDescriptionCommand.js +1 -28
- package/dist-cjs/commands/UpdatePrimaryRegionCommand.js +1 -28
- package/dist-cjs/commands/VerifyCommand.js +1 -29
- package/dist-cjs/commands/VerifyMacCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -53
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +6052 -11
- package/dist-cjs/models/KMSServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -881
- package/dist-cjs/pagination/DescribeCustomKeyStoresPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAliasesPaginator.js +1 -7
- package/dist-cjs/pagination/ListGrantsPaginator.js +1 -7
- package/dist-cjs/pagination/ListKeyPoliciesPaginator.js +1 -7
- package/dist-cjs/pagination/ListKeysPaginator.js +1 -7
- package/dist-cjs/pagination/ListResourceTagsPaginator.js +1 -7
- package/dist-cjs/pagination/ListRetirableGrantsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -11
- package/dist-cjs/protocols/Aws_json1_1.js +1 -3742
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.KMSServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class KMSServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, KMSServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.KMSServiceException = KMSServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED