@aws-sdk/client-kms 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +53 -159
- package/dist-es/commands/CancelKeyDeletionCommand.js +1 -3
- package/dist-es/commands/ConnectCustomKeyStoreCommand.js +1 -3
- package/dist-es/commands/CreateAliasCommand.js +1 -3
- package/dist-es/commands/CreateCustomKeyStoreCommand.js +1 -3
- package/dist-es/commands/CreateGrantCommand.js +1 -3
- package/dist-es/commands/CreateKeyCommand.js +1 -3
- package/dist-es/commands/DecryptCommand.js +1 -3
- package/dist-es/commands/DeleteAliasCommand.js +1 -3
- package/dist-es/commands/DeleteCustomKeyStoreCommand.js +1 -3
- package/dist-es/commands/DeleteImportedKeyMaterialCommand.js +1 -3
- package/dist-es/commands/DeriveSharedSecretCommand.js +1 -3
- package/dist-es/commands/DescribeCustomKeyStoresCommand.js +1 -3
- package/dist-es/commands/DescribeKeyCommand.js +1 -3
- package/dist-es/commands/DisableKeyCommand.js +1 -3
- package/dist-es/commands/DisableKeyRotationCommand.js +1 -3
- package/dist-es/commands/DisconnectCustomKeyStoreCommand.js +1 -3
- package/dist-es/commands/EnableKeyCommand.js +1 -3
- package/dist-es/commands/EnableKeyRotationCommand.js +1 -3
- package/dist-es/commands/EncryptCommand.js +1 -3
- package/dist-es/commands/GenerateDataKeyCommand.js +1 -3
- package/dist-es/commands/GenerateDataKeyPairCommand.js +1 -3
- package/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +1 -3
- package/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +1 -3
- package/dist-es/commands/GenerateMacCommand.js +1 -3
- package/dist-es/commands/GenerateRandomCommand.js +1 -3
- package/dist-es/commands/GetKeyPolicyCommand.js +1 -3
- package/dist-es/commands/GetKeyRotationStatusCommand.js +1 -3
- package/dist-es/commands/GetParametersForImportCommand.js +1 -3
- package/dist-es/commands/GetPublicKeyCommand.js +1 -3
- package/dist-es/commands/ImportKeyMaterialCommand.js +1 -3
- package/dist-es/commands/ListAliasesCommand.js +1 -3
- package/dist-es/commands/ListGrantsCommand.js +1 -3
- package/dist-es/commands/ListKeyPoliciesCommand.js +1 -3
- package/dist-es/commands/ListKeyRotationsCommand.js +1 -3
- package/dist-es/commands/ListKeysCommand.js +1 -3
- package/dist-es/commands/ListResourceTagsCommand.js +1 -3
- package/dist-es/commands/ListRetirableGrantsCommand.js +1 -3
- package/dist-es/commands/PutKeyPolicyCommand.js +1 -3
- package/dist-es/commands/ReEncryptCommand.js +1 -3
- package/dist-es/commands/ReplicateKeyCommand.js +1 -3
- package/dist-es/commands/RetireGrantCommand.js +1 -3
- package/dist-es/commands/RevokeGrantCommand.js +1 -3
- package/dist-es/commands/RotateKeyOnDemandCommand.js +1 -3
- package/dist-es/commands/ScheduleKeyDeletionCommand.js +1 -3
- package/dist-es/commands/SignCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateAliasCommand.js +1 -3
- package/dist-es/commands/UpdateCustomKeyStoreCommand.js +1 -3
- package/dist-es/commands/UpdateKeyDescriptionCommand.js +1 -3
- package/dist-es/commands/UpdatePrimaryRegionCommand.js +1 -3
- package/dist-es/commands/VerifyCommand.js +1 -3
- package/dist-es/commands/VerifyMacCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -3406,9 +3406,7 @@ function sharedHeaders(operation) {
|
|
|
3406
3406
|
__name(sharedHeaders, "sharedHeaders");
|
|
3407
3407
|
|
|
3408
3408
|
// src/commands/CancelKeyDeletionCommand.ts
|
|
3409
|
-
var _CancelKeyDeletionCommand = class _CancelKeyDeletionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3410
|
-
...commonParams
|
|
3411
|
-
}).m(function(Command, cs, config, o) {
|
|
3409
|
+
var _CancelKeyDeletionCommand = class _CancelKeyDeletionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3412
3410
|
return [
|
|
3413
3411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3414
3412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3422,9 +3420,7 @@ var CancelKeyDeletionCommand = _CancelKeyDeletionCommand;
|
|
|
3422
3420
|
|
|
3423
3421
|
|
|
3424
3422
|
|
|
3425
|
-
var _ConnectCustomKeyStoreCommand = class _ConnectCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3426
|
-
...commonParams
|
|
3427
|
-
}).m(function(Command, cs, config, o) {
|
|
3423
|
+
var _ConnectCustomKeyStoreCommand = class _ConnectCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3428
3424
|
return [
|
|
3429
3425
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3430
3426
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3438,9 +3434,7 @@ var ConnectCustomKeyStoreCommand = _ConnectCustomKeyStoreCommand;
|
|
|
3438
3434
|
|
|
3439
3435
|
|
|
3440
3436
|
|
|
3441
|
-
var _CreateAliasCommand = class _CreateAliasCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3442
|
-
...commonParams
|
|
3443
|
-
}).m(function(Command, cs, config, o) {
|
|
3437
|
+
var _CreateAliasCommand = class _CreateAliasCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3444
3438
|
return [
|
|
3445
3439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3446
3440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3454,9 +3448,7 @@ var CreateAliasCommand = _CreateAliasCommand;
|
|
|
3454
3448
|
|
|
3455
3449
|
|
|
3456
3450
|
|
|
3457
|
-
var _CreateCustomKeyStoreCommand = class _CreateCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3458
|
-
...commonParams
|
|
3459
|
-
}).m(function(Command, cs, config, o) {
|
|
3451
|
+
var _CreateCustomKeyStoreCommand = class _CreateCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3460
3452
|
return [
|
|
3461
3453
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3462
3454
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3470,9 +3462,7 @@ var CreateCustomKeyStoreCommand = _CreateCustomKeyStoreCommand;
|
|
|
3470
3462
|
|
|
3471
3463
|
|
|
3472
3464
|
|
|
3473
|
-
var _CreateGrantCommand = class _CreateGrantCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3474
|
-
...commonParams
|
|
3475
|
-
}).m(function(Command, cs, config, o) {
|
|
3465
|
+
var _CreateGrantCommand = class _CreateGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3476
3466
|
return [
|
|
3477
3467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3478
3468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3486,9 +3476,7 @@ var CreateGrantCommand = _CreateGrantCommand;
|
|
|
3486
3476
|
|
|
3487
3477
|
|
|
3488
3478
|
|
|
3489
|
-
var _CreateKeyCommand = class _CreateKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3490
|
-
...commonParams
|
|
3491
|
-
}).m(function(Command, cs, config, o) {
|
|
3479
|
+
var _CreateKeyCommand = class _CreateKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3492
3480
|
return [
|
|
3493
3481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3494
3482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3502,9 +3490,7 @@ var CreateKeyCommand = _CreateKeyCommand;
|
|
|
3502
3490
|
|
|
3503
3491
|
|
|
3504
3492
|
|
|
3505
|
-
var _DecryptCommand = class _DecryptCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3506
|
-
...commonParams
|
|
3507
|
-
}).m(function(Command, cs, config, o) {
|
|
3493
|
+
var _DecryptCommand = class _DecryptCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3508
3494
|
return [
|
|
3509
3495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3510
3496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3518,9 +3504,7 @@ var DecryptCommand = _DecryptCommand;
|
|
|
3518
3504
|
|
|
3519
3505
|
|
|
3520
3506
|
|
|
3521
|
-
var _DeleteAliasCommand = class _DeleteAliasCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3522
|
-
...commonParams
|
|
3523
|
-
}).m(function(Command, cs, config, o) {
|
|
3507
|
+
var _DeleteAliasCommand = class _DeleteAliasCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3524
3508
|
return [
|
|
3525
3509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3526
3510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3534,9 +3518,7 @@ var DeleteAliasCommand = _DeleteAliasCommand;
|
|
|
3534
3518
|
|
|
3535
3519
|
|
|
3536
3520
|
|
|
3537
|
-
var _DeleteCustomKeyStoreCommand = class _DeleteCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3538
|
-
...commonParams
|
|
3539
|
-
}).m(function(Command, cs, config, o) {
|
|
3521
|
+
var _DeleteCustomKeyStoreCommand = class _DeleteCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3540
3522
|
return [
|
|
3541
3523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3542
3524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3550,9 +3532,7 @@ var DeleteCustomKeyStoreCommand = _DeleteCustomKeyStoreCommand;
|
|
|
3550
3532
|
|
|
3551
3533
|
|
|
3552
3534
|
|
|
3553
|
-
var _DeleteImportedKeyMaterialCommand = class _DeleteImportedKeyMaterialCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3554
|
-
...commonParams
|
|
3555
|
-
}).m(function(Command, cs, config, o) {
|
|
3535
|
+
var _DeleteImportedKeyMaterialCommand = class _DeleteImportedKeyMaterialCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3556
3536
|
return [
|
|
3557
3537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3558
3538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3566,9 +3546,7 @@ var DeleteImportedKeyMaterialCommand = _DeleteImportedKeyMaterialCommand;
|
|
|
3566
3546
|
|
|
3567
3547
|
|
|
3568
3548
|
|
|
3569
|
-
var _DeriveSharedSecretCommand = class _DeriveSharedSecretCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3570
|
-
...commonParams
|
|
3571
|
-
}).m(function(Command, cs, config, o) {
|
|
3549
|
+
var _DeriveSharedSecretCommand = class _DeriveSharedSecretCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3572
3550
|
return [
|
|
3573
3551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3574
3552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3582,9 +3560,7 @@ var DeriveSharedSecretCommand = _DeriveSharedSecretCommand;
|
|
|
3582
3560
|
|
|
3583
3561
|
|
|
3584
3562
|
|
|
3585
|
-
var _DescribeCustomKeyStoresCommand = class _DescribeCustomKeyStoresCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3586
|
-
...commonParams
|
|
3587
|
-
}).m(function(Command, cs, config, o) {
|
|
3563
|
+
var _DescribeCustomKeyStoresCommand = class _DescribeCustomKeyStoresCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3588
3564
|
return [
|
|
3589
3565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3590
3566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3598,9 +3574,7 @@ var DescribeCustomKeyStoresCommand = _DescribeCustomKeyStoresCommand;
|
|
|
3598
3574
|
|
|
3599
3575
|
|
|
3600
3576
|
|
|
3601
|
-
var _DescribeKeyCommand = class _DescribeKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3602
|
-
...commonParams
|
|
3603
|
-
}).m(function(Command, cs, config, o) {
|
|
3577
|
+
var _DescribeKeyCommand = class _DescribeKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3604
3578
|
return [
|
|
3605
3579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3606
3580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3614,9 +3588,7 @@ var DescribeKeyCommand = _DescribeKeyCommand;
|
|
|
3614
3588
|
|
|
3615
3589
|
|
|
3616
3590
|
|
|
3617
|
-
var _DisableKeyCommand = class _DisableKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3618
|
-
...commonParams
|
|
3619
|
-
}).m(function(Command, cs, config, o) {
|
|
3591
|
+
var _DisableKeyCommand = class _DisableKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3620
3592
|
return [
|
|
3621
3593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3622
3594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3630,9 +3602,7 @@ var DisableKeyCommand = _DisableKeyCommand;
|
|
|
3630
3602
|
|
|
3631
3603
|
|
|
3632
3604
|
|
|
3633
|
-
var _DisableKeyRotationCommand = class _DisableKeyRotationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3634
|
-
...commonParams
|
|
3635
|
-
}).m(function(Command, cs, config, o) {
|
|
3605
|
+
var _DisableKeyRotationCommand = class _DisableKeyRotationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3636
3606
|
return [
|
|
3637
3607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3638
3608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3646,9 +3616,7 @@ var DisableKeyRotationCommand = _DisableKeyRotationCommand;
|
|
|
3646
3616
|
|
|
3647
3617
|
|
|
3648
3618
|
|
|
3649
|
-
var _DisconnectCustomKeyStoreCommand = class _DisconnectCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3650
|
-
...commonParams
|
|
3651
|
-
}).m(function(Command, cs, config, o) {
|
|
3619
|
+
var _DisconnectCustomKeyStoreCommand = class _DisconnectCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3652
3620
|
return [
|
|
3653
3621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3654
3622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3662,9 +3630,7 @@ var DisconnectCustomKeyStoreCommand = _DisconnectCustomKeyStoreCommand;
|
|
|
3662
3630
|
|
|
3663
3631
|
|
|
3664
3632
|
|
|
3665
|
-
var _EnableKeyCommand = class _EnableKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3666
|
-
...commonParams
|
|
3667
|
-
}).m(function(Command, cs, config, o) {
|
|
3633
|
+
var _EnableKeyCommand = class _EnableKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3668
3634
|
return [
|
|
3669
3635
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3670
3636
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3678,9 +3644,7 @@ var EnableKeyCommand = _EnableKeyCommand;
|
|
|
3678
3644
|
|
|
3679
3645
|
|
|
3680
3646
|
|
|
3681
|
-
var _EnableKeyRotationCommand = class _EnableKeyRotationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3682
|
-
...commonParams
|
|
3683
|
-
}).m(function(Command, cs, config, o) {
|
|
3647
|
+
var _EnableKeyRotationCommand = class _EnableKeyRotationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3684
3648
|
return [
|
|
3685
3649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3686
3650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3694,9 +3658,7 @@ var EnableKeyRotationCommand = _EnableKeyRotationCommand;
|
|
|
3694
3658
|
|
|
3695
3659
|
|
|
3696
3660
|
|
|
3697
|
-
var _EncryptCommand = class _EncryptCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3698
|
-
...commonParams
|
|
3699
|
-
}).m(function(Command, cs, config, o) {
|
|
3661
|
+
var _EncryptCommand = class _EncryptCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3700
3662
|
return [
|
|
3701
3663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3702
3664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3710,9 +3672,7 @@ var EncryptCommand = _EncryptCommand;
|
|
|
3710
3672
|
|
|
3711
3673
|
|
|
3712
3674
|
|
|
3713
|
-
var _GenerateDataKeyCommand = class _GenerateDataKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3714
|
-
...commonParams
|
|
3715
|
-
}).m(function(Command, cs, config, o) {
|
|
3675
|
+
var _GenerateDataKeyCommand = class _GenerateDataKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3716
3676
|
return [
|
|
3717
3677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3718
3678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3726,9 +3686,7 @@ var GenerateDataKeyCommand = _GenerateDataKeyCommand;
|
|
|
3726
3686
|
|
|
3727
3687
|
|
|
3728
3688
|
|
|
3729
|
-
var _GenerateDataKeyPairCommand = class _GenerateDataKeyPairCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3730
|
-
...commonParams
|
|
3731
|
-
}).m(function(Command, cs, config, o) {
|
|
3689
|
+
var _GenerateDataKeyPairCommand = class _GenerateDataKeyPairCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3732
3690
|
return [
|
|
3733
3691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3734
3692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3742,9 +3700,7 @@ var GenerateDataKeyPairCommand = _GenerateDataKeyPairCommand;
|
|
|
3742
3700
|
|
|
3743
3701
|
|
|
3744
3702
|
|
|
3745
|
-
var _GenerateDataKeyPairWithoutPlaintextCommand = class _GenerateDataKeyPairWithoutPlaintextCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3746
|
-
...commonParams
|
|
3747
|
-
}).m(function(Command, cs, config, o) {
|
|
3703
|
+
var _GenerateDataKeyPairWithoutPlaintextCommand = class _GenerateDataKeyPairWithoutPlaintextCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3748
3704
|
return [
|
|
3749
3705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3750
3706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3758,9 +3714,7 @@ var GenerateDataKeyPairWithoutPlaintextCommand = _GenerateDataKeyPairWithoutPlai
|
|
|
3758
3714
|
|
|
3759
3715
|
|
|
3760
3716
|
|
|
3761
|
-
var _GenerateDataKeyWithoutPlaintextCommand = class _GenerateDataKeyWithoutPlaintextCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3762
|
-
...commonParams
|
|
3763
|
-
}).m(function(Command, cs, config, o) {
|
|
3717
|
+
var _GenerateDataKeyWithoutPlaintextCommand = class _GenerateDataKeyWithoutPlaintextCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3764
3718
|
return [
|
|
3765
3719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3766
3720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3774,9 +3728,7 @@ var GenerateDataKeyWithoutPlaintextCommand = _GenerateDataKeyWithoutPlaintextCom
|
|
|
3774
3728
|
|
|
3775
3729
|
|
|
3776
3730
|
|
|
3777
|
-
var _GenerateMacCommand = class _GenerateMacCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3778
|
-
...commonParams
|
|
3779
|
-
}).m(function(Command, cs, config, o) {
|
|
3731
|
+
var _GenerateMacCommand = class _GenerateMacCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3780
3732
|
return [
|
|
3781
3733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3782
3734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3790,9 +3742,7 @@ var GenerateMacCommand = _GenerateMacCommand;
|
|
|
3790
3742
|
|
|
3791
3743
|
|
|
3792
3744
|
|
|
3793
|
-
var _GenerateRandomCommand = class _GenerateRandomCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3794
|
-
...commonParams
|
|
3795
|
-
}).m(function(Command, cs, config, o) {
|
|
3745
|
+
var _GenerateRandomCommand = class _GenerateRandomCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3796
3746
|
return [
|
|
3797
3747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3798
3748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3806,9 +3756,7 @@ var GenerateRandomCommand = _GenerateRandomCommand;
|
|
|
3806
3756
|
|
|
3807
3757
|
|
|
3808
3758
|
|
|
3809
|
-
var _GetKeyPolicyCommand = class _GetKeyPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3810
|
-
...commonParams
|
|
3811
|
-
}).m(function(Command, cs, config, o) {
|
|
3759
|
+
var _GetKeyPolicyCommand = class _GetKeyPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3812
3760
|
return [
|
|
3813
3761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3814
3762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3822,9 +3770,7 @@ var GetKeyPolicyCommand = _GetKeyPolicyCommand;
|
|
|
3822
3770
|
|
|
3823
3771
|
|
|
3824
3772
|
|
|
3825
|
-
var _GetKeyRotationStatusCommand = class _GetKeyRotationStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3826
|
-
...commonParams
|
|
3827
|
-
}).m(function(Command, cs, config, o) {
|
|
3773
|
+
var _GetKeyRotationStatusCommand = class _GetKeyRotationStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3828
3774
|
return [
|
|
3829
3775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3830
3776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3838,9 +3784,7 @@ var GetKeyRotationStatusCommand = _GetKeyRotationStatusCommand;
|
|
|
3838
3784
|
|
|
3839
3785
|
|
|
3840
3786
|
|
|
3841
|
-
var _GetParametersForImportCommand = class _GetParametersForImportCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3842
|
-
...commonParams
|
|
3843
|
-
}).m(function(Command, cs, config, o) {
|
|
3787
|
+
var _GetParametersForImportCommand = class _GetParametersForImportCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3844
3788
|
return [
|
|
3845
3789
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3846
3790
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3854,9 +3798,7 @@ var GetParametersForImportCommand = _GetParametersForImportCommand;
|
|
|
3854
3798
|
|
|
3855
3799
|
|
|
3856
3800
|
|
|
3857
|
-
var _GetPublicKeyCommand = class _GetPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3858
|
-
...commonParams
|
|
3859
|
-
}).m(function(Command, cs, config, o) {
|
|
3801
|
+
var _GetPublicKeyCommand = class _GetPublicKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3860
3802
|
return [
|
|
3861
3803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3862
3804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3870,9 +3812,7 @@ var GetPublicKeyCommand = _GetPublicKeyCommand;
|
|
|
3870
3812
|
|
|
3871
3813
|
|
|
3872
3814
|
|
|
3873
|
-
var _ImportKeyMaterialCommand = class _ImportKeyMaterialCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3874
|
-
...commonParams
|
|
3875
|
-
}).m(function(Command, cs, config, o) {
|
|
3815
|
+
var _ImportKeyMaterialCommand = class _ImportKeyMaterialCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3876
3816
|
return [
|
|
3877
3817
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3878
3818
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3886,9 +3826,7 @@ var ImportKeyMaterialCommand = _ImportKeyMaterialCommand;
|
|
|
3886
3826
|
|
|
3887
3827
|
|
|
3888
3828
|
|
|
3889
|
-
var _ListAliasesCommand = class _ListAliasesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3890
|
-
...commonParams
|
|
3891
|
-
}).m(function(Command, cs, config, o) {
|
|
3829
|
+
var _ListAliasesCommand = class _ListAliasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3892
3830
|
return [
|
|
3893
3831
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3894
3832
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3902,9 +3840,7 @@ var ListAliasesCommand = _ListAliasesCommand;
|
|
|
3902
3840
|
|
|
3903
3841
|
|
|
3904
3842
|
|
|
3905
|
-
var _ListGrantsCommand = class _ListGrantsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3906
|
-
...commonParams
|
|
3907
|
-
}).m(function(Command, cs, config, o) {
|
|
3843
|
+
var _ListGrantsCommand = class _ListGrantsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3908
3844
|
return [
|
|
3909
3845
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3910
3846
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3918,9 +3854,7 @@ var ListGrantsCommand = _ListGrantsCommand;
|
|
|
3918
3854
|
|
|
3919
3855
|
|
|
3920
3856
|
|
|
3921
|
-
var _ListKeyPoliciesCommand = class _ListKeyPoliciesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3922
|
-
...commonParams
|
|
3923
|
-
}).m(function(Command, cs, config, o) {
|
|
3857
|
+
var _ListKeyPoliciesCommand = class _ListKeyPoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3924
3858
|
return [
|
|
3925
3859
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3926
3860
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3934,9 +3868,7 @@ var ListKeyPoliciesCommand = _ListKeyPoliciesCommand;
|
|
|
3934
3868
|
|
|
3935
3869
|
|
|
3936
3870
|
|
|
3937
|
-
var _ListKeyRotationsCommand = class _ListKeyRotationsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3938
|
-
...commonParams
|
|
3939
|
-
}).m(function(Command, cs, config, o) {
|
|
3871
|
+
var _ListKeyRotationsCommand = class _ListKeyRotationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3940
3872
|
return [
|
|
3941
3873
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3942
3874
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3950,9 +3882,7 @@ var ListKeyRotationsCommand = _ListKeyRotationsCommand;
|
|
|
3950
3882
|
|
|
3951
3883
|
|
|
3952
3884
|
|
|
3953
|
-
var _ListKeysCommand = class _ListKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3954
|
-
...commonParams
|
|
3955
|
-
}).m(function(Command, cs, config, o) {
|
|
3885
|
+
var _ListKeysCommand = class _ListKeysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3956
3886
|
return [
|
|
3957
3887
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3958
3888
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3966,9 +3896,7 @@ var ListKeysCommand = _ListKeysCommand;
|
|
|
3966
3896
|
|
|
3967
3897
|
|
|
3968
3898
|
|
|
3969
|
-
var _ListResourceTagsCommand = class _ListResourceTagsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3970
|
-
...commonParams
|
|
3971
|
-
}).m(function(Command, cs, config, o) {
|
|
3899
|
+
var _ListResourceTagsCommand = class _ListResourceTagsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3972
3900
|
return [
|
|
3973
3901
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3974
3902
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3982,9 +3910,7 @@ var ListResourceTagsCommand = _ListResourceTagsCommand;
|
|
|
3982
3910
|
|
|
3983
3911
|
|
|
3984
3912
|
|
|
3985
|
-
var _ListRetirableGrantsCommand = class _ListRetirableGrantsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3986
|
-
...commonParams
|
|
3987
|
-
}).m(function(Command, cs, config, o) {
|
|
3913
|
+
var _ListRetirableGrantsCommand = class _ListRetirableGrantsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3988
3914
|
return [
|
|
3989
3915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3990
3916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3998,9 +3924,7 @@ var ListRetirableGrantsCommand = _ListRetirableGrantsCommand;
|
|
|
3998
3924
|
|
|
3999
3925
|
|
|
4000
3926
|
|
|
4001
|
-
var _PutKeyPolicyCommand = class _PutKeyPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4002
|
-
...commonParams
|
|
4003
|
-
}).m(function(Command, cs, config, o) {
|
|
3927
|
+
var _PutKeyPolicyCommand = class _PutKeyPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4004
3928
|
return [
|
|
4005
3929
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4006
3930
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4014,9 +3938,7 @@ var PutKeyPolicyCommand = _PutKeyPolicyCommand;
|
|
|
4014
3938
|
|
|
4015
3939
|
|
|
4016
3940
|
|
|
4017
|
-
var _ReEncryptCommand = class _ReEncryptCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4018
|
-
...commonParams
|
|
4019
|
-
}).m(function(Command, cs, config, o) {
|
|
3941
|
+
var _ReEncryptCommand = class _ReEncryptCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4020
3942
|
return [
|
|
4021
3943
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4022
3944
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4030,9 +3952,7 @@ var ReEncryptCommand = _ReEncryptCommand;
|
|
|
4030
3952
|
|
|
4031
3953
|
|
|
4032
3954
|
|
|
4033
|
-
var _ReplicateKeyCommand = class _ReplicateKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4034
|
-
...commonParams
|
|
4035
|
-
}).m(function(Command, cs, config, o) {
|
|
3955
|
+
var _ReplicateKeyCommand = class _ReplicateKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4036
3956
|
return [
|
|
4037
3957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4038
3958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4046,9 +3966,7 @@ var ReplicateKeyCommand = _ReplicateKeyCommand;
|
|
|
4046
3966
|
|
|
4047
3967
|
|
|
4048
3968
|
|
|
4049
|
-
var _RetireGrantCommand = class _RetireGrantCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4050
|
-
...commonParams
|
|
4051
|
-
}).m(function(Command, cs, config, o) {
|
|
3969
|
+
var _RetireGrantCommand = class _RetireGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4052
3970
|
return [
|
|
4053
3971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4054
3972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4062,9 +3980,7 @@ var RetireGrantCommand = _RetireGrantCommand;
|
|
|
4062
3980
|
|
|
4063
3981
|
|
|
4064
3982
|
|
|
4065
|
-
var _RevokeGrantCommand = class _RevokeGrantCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4066
|
-
...commonParams
|
|
4067
|
-
}).m(function(Command, cs, config, o) {
|
|
3983
|
+
var _RevokeGrantCommand = class _RevokeGrantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4068
3984
|
return [
|
|
4069
3985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4070
3986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4078,9 +3994,7 @@ var RevokeGrantCommand = _RevokeGrantCommand;
|
|
|
4078
3994
|
|
|
4079
3995
|
|
|
4080
3996
|
|
|
4081
|
-
var _RotateKeyOnDemandCommand = class _RotateKeyOnDemandCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4082
|
-
...commonParams
|
|
4083
|
-
}).m(function(Command, cs, config, o) {
|
|
3997
|
+
var _RotateKeyOnDemandCommand = class _RotateKeyOnDemandCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4084
3998
|
return [
|
|
4085
3999
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4086
4000
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4094,9 +4008,7 @@ var RotateKeyOnDemandCommand = _RotateKeyOnDemandCommand;
|
|
|
4094
4008
|
|
|
4095
4009
|
|
|
4096
4010
|
|
|
4097
|
-
var _ScheduleKeyDeletionCommand = class _ScheduleKeyDeletionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4098
|
-
...commonParams
|
|
4099
|
-
}).m(function(Command, cs, config, o) {
|
|
4011
|
+
var _ScheduleKeyDeletionCommand = class _ScheduleKeyDeletionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4100
4012
|
return [
|
|
4101
4013
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4102
4014
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4110,9 +4022,7 @@ var ScheduleKeyDeletionCommand = _ScheduleKeyDeletionCommand;
|
|
|
4110
4022
|
|
|
4111
4023
|
|
|
4112
4024
|
|
|
4113
|
-
var _SignCommand = class _SignCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4114
|
-
...commonParams
|
|
4115
|
-
}).m(function(Command, cs, config, o) {
|
|
4025
|
+
var _SignCommand = class _SignCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4116
4026
|
return [
|
|
4117
4027
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4118
4028
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4126,9 +4036,7 @@ var SignCommand = _SignCommand;
|
|
|
4126
4036
|
|
|
4127
4037
|
|
|
4128
4038
|
|
|
4129
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4130
|
-
...commonParams
|
|
4131
|
-
}).m(function(Command, cs, config, o) {
|
|
4039
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4132
4040
|
return [
|
|
4133
4041
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4134
4042
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4142,9 +4050,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
4142
4050
|
|
|
4143
4051
|
|
|
4144
4052
|
|
|
4145
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4146
|
-
...commonParams
|
|
4147
|
-
}).m(function(Command, cs, config, o) {
|
|
4053
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4148
4054
|
return [
|
|
4149
4055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4150
4056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4158,9 +4064,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
4158
4064
|
|
|
4159
4065
|
|
|
4160
4066
|
|
|
4161
|
-
var _UpdateAliasCommand = class _UpdateAliasCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4162
|
-
...commonParams
|
|
4163
|
-
}).m(function(Command, cs, config, o) {
|
|
4067
|
+
var _UpdateAliasCommand = class _UpdateAliasCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4164
4068
|
return [
|
|
4165
4069
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4166
4070
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4174,9 +4078,7 @@ var UpdateAliasCommand = _UpdateAliasCommand;
|
|
|
4174
4078
|
|
|
4175
4079
|
|
|
4176
4080
|
|
|
4177
|
-
var _UpdateCustomKeyStoreCommand = class _UpdateCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4178
|
-
...commonParams
|
|
4179
|
-
}).m(function(Command, cs, config, o) {
|
|
4081
|
+
var _UpdateCustomKeyStoreCommand = class _UpdateCustomKeyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4180
4082
|
return [
|
|
4181
4083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4182
4084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4190,9 +4092,7 @@ var UpdateCustomKeyStoreCommand = _UpdateCustomKeyStoreCommand;
|
|
|
4190
4092
|
|
|
4191
4093
|
|
|
4192
4094
|
|
|
4193
|
-
var _UpdateKeyDescriptionCommand = class _UpdateKeyDescriptionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4194
|
-
...commonParams
|
|
4195
|
-
}).m(function(Command, cs, config, o) {
|
|
4095
|
+
var _UpdateKeyDescriptionCommand = class _UpdateKeyDescriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4196
4096
|
return [
|
|
4197
4097
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4198
4098
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4206,9 +4106,7 @@ var UpdateKeyDescriptionCommand = _UpdateKeyDescriptionCommand;
|
|
|
4206
4106
|
|
|
4207
4107
|
|
|
4208
4108
|
|
|
4209
|
-
var _UpdatePrimaryRegionCommand = class _UpdatePrimaryRegionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4210
|
-
...commonParams
|
|
4211
|
-
}).m(function(Command, cs, config, o) {
|
|
4109
|
+
var _UpdatePrimaryRegionCommand = class _UpdatePrimaryRegionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4212
4110
|
return [
|
|
4213
4111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4214
4112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4222,9 +4120,7 @@ var UpdatePrimaryRegionCommand = _UpdatePrimaryRegionCommand;
|
|
|
4222
4120
|
|
|
4223
4121
|
|
|
4224
4122
|
|
|
4225
|
-
var _VerifyCommand = class _VerifyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4226
|
-
...commonParams
|
|
4227
|
-
}).m(function(Command, cs, config, o) {
|
|
4123
|
+
var _VerifyCommand = class _VerifyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4228
4124
|
return [
|
|
4229
4125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4230
4126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4238,9 +4134,7 @@ var VerifyCommand = _VerifyCommand;
|
|
|
4238
4134
|
|
|
4239
4135
|
|
|
4240
4136
|
|
|
4241
|
-
var _VerifyMacCommand = class _VerifyMacCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4242
|
-
...commonParams
|
|
4243
|
-
}).m(function(Command, cs, config, o) {
|
|
4137
|
+
var _VerifyMacCommand = class _VerifyMacCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4244
4138
|
return [
|
|
4245
4139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4246
4140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_CancelKeyDeletionCommand, se_CancelKeyDeletionCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CancelKeyDeletionCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ConnectCustomKeyStoreCommand, se_ConnectCustomKeyStoreCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ConnectCustomKeyStoreCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateAliasCommand, se_CreateAliasCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateAliasCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreateCustomKeyStoreCommand, se_CreateCustomKeyStoreCommand } from "
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateCustomKeyStoreCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateGrantCommand, se_CreateGrantCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateGrantCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateKeyCommand, se_CreateKeyCommand } from "../protocols/Aws_json1
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateKeyCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|