@aws-sdk/client-kms 3.721.0 → 3.723.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/index.js +517 -409
- package/dist-es/KMSClient.js +1 -0
- package/dist-es/models/models_0.js +96 -96
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -274,7 +274,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
274
274
|
}, "resolveRuntimeExtensions");
|
|
275
275
|
|
|
276
276
|
// src/KMSClient.ts
|
|
277
|
-
var
|
|
277
|
+
var KMSClient = class extends import_smithy_client.Client {
|
|
278
|
+
static {
|
|
279
|
+
__name(this, "KMSClient");
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* The resolved configuration of KMSClient class. This is resolved and normalized from the {@link KMSClientConfig | constructor configuration interface}.
|
|
283
|
+
*/
|
|
284
|
+
config;
|
|
278
285
|
constructor(...[configuration]) {
|
|
279
286
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
280
287
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -284,7 +291,7 @@ var _KMSClient = class _KMSClient extends import_smithy_client.Client {
|
|
|
284
291
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
285
292
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
286
293
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
287
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
294
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
288
295
|
super(_config_8);
|
|
289
296
|
this.config = _config_8;
|
|
290
297
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -312,8 +319,6 @@ var _KMSClient = class _KMSClient extends import_smithy_client.Client {
|
|
|
312
319
|
super.destroy();
|
|
313
320
|
}
|
|
314
321
|
};
|
|
315
|
-
__name(_KMSClient, "KMSClient");
|
|
316
|
-
var KMSClient = _KMSClient;
|
|
317
322
|
|
|
318
323
|
// src/KMS.ts
|
|
319
324
|
|
|
@@ -330,7 +335,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
330
335
|
|
|
331
336
|
// src/models/KMSServiceException.ts
|
|
332
337
|
|
|
333
|
-
var
|
|
338
|
+
var KMSServiceException = class _KMSServiceException extends import_smithy_client.ServiceException {
|
|
339
|
+
static {
|
|
340
|
+
__name(this, "KMSServiceException");
|
|
341
|
+
}
|
|
334
342
|
/**
|
|
335
343
|
* @internal
|
|
336
344
|
*/
|
|
@@ -339,8 +347,6 @@ var _KMSServiceException = class _KMSServiceException extends import_smithy_clie
|
|
|
339
347
|
Object.setPrototypeOf(this, _KMSServiceException.prototype);
|
|
340
348
|
}
|
|
341
349
|
};
|
|
342
|
-
__name(_KMSServiceException, "KMSServiceException");
|
|
343
|
-
var KMSServiceException = _KMSServiceException;
|
|
344
350
|
|
|
345
351
|
// src/models/models_0.ts
|
|
346
352
|
|
|
@@ -352,7 +358,12 @@ var AlgorithmSpec = {
|
|
|
352
358
|
RSA_AES_KEY_WRAP_SHA_256: "RSA_AES_KEY_WRAP_SHA_256",
|
|
353
359
|
SM2PKE: "SM2PKE"
|
|
354
360
|
};
|
|
355
|
-
var
|
|
361
|
+
var AlreadyExistsException = class _AlreadyExistsException extends KMSServiceException {
|
|
362
|
+
static {
|
|
363
|
+
__name(this, "AlreadyExistsException");
|
|
364
|
+
}
|
|
365
|
+
name = "AlreadyExistsException";
|
|
366
|
+
$fault = "client";
|
|
356
367
|
/**
|
|
357
368
|
* @internal
|
|
358
369
|
*/
|
|
@@ -362,14 +373,15 @@ var _AlreadyExistsException = class _AlreadyExistsException extends KMSServiceEx
|
|
|
362
373
|
$fault: "client",
|
|
363
374
|
...opts
|
|
364
375
|
});
|
|
365
|
-
this.name = "AlreadyExistsException";
|
|
366
|
-
this.$fault = "client";
|
|
367
376
|
Object.setPrototypeOf(this, _AlreadyExistsException.prototype);
|
|
368
377
|
}
|
|
369
378
|
};
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
379
|
+
var DependencyTimeoutException = class _DependencyTimeoutException extends KMSServiceException {
|
|
380
|
+
static {
|
|
381
|
+
__name(this, "DependencyTimeoutException");
|
|
382
|
+
}
|
|
383
|
+
name = "DependencyTimeoutException";
|
|
384
|
+
$fault = "server";
|
|
373
385
|
/**
|
|
374
386
|
* @internal
|
|
375
387
|
*/
|
|
@@ -379,14 +391,15 @@ var _DependencyTimeoutException = class _DependencyTimeoutException extends KMSS
|
|
|
379
391
|
$fault: "server",
|
|
380
392
|
...opts
|
|
381
393
|
});
|
|
382
|
-
this.name = "DependencyTimeoutException";
|
|
383
|
-
this.$fault = "server";
|
|
384
394
|
Object.setPrototypeOf(this, _DependencyTimeoutException.prototype);
|
|
385
395
|
}
|
|
386
396
|
};
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
397
|
+
var InvalidArnException = class _InvalidArnException extends KMSServiceException {
|
|
398
|
+
static {
|
|
399
|
+
__name(this, "InvalidArnException");
|
|
400
|
+
}
|
|
401
|
+
name = "InvalidArnException";
|
|
402
|
+
$fault = "client";
|
|
390
403
|
/**
|
|
391
404
|
* @internal
|
|
392
405
|
*/
|
|
@@ -396,14 +409,15 @@ var _InvalidArnException = class _InvalidArnException extends KMSServiceExceptio
|
|
|
396
409
|
$fault: "client",
|
|
397
410
|
...opts
|
|
398
411
|
});
|
|
399
|
-
this.name = "InvalidArnException";
|
|
400
|
-
this.$fault = "client";
|
|
401
412
|
Object.setPrototypeOf(this, _InvalidArnException.prototype);
|
|
402
413
|
}
|
|
403
414
|
};
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
415
|
+
var KMSInternalException = class _KMSInternalException extends KMSServiceException {
|
|
416
|
+
static {
|
|
417
|
+
__name(this, "KMSInternalException");
|
|
418
|
+
}
|
|
419
|
+
name = "KMSInternalException";
|
|
420
|
+
$fault = "server";
|
|
407
421
|
/**
|
|
408
422
|
* @internal
|
|
409
423
|
*/
|
|
@@ -413,14 +427,15 @@ var _KMSInternalException = class _KMSInternalException extends KMSServiceExcept
|
|
|
413
427
|
$fault: "server",
|
|
414
428
|
...opts
|
|
415
429
|
});
|
|
416
|
-
this.name = "KMSInternalException";
|
|
417
|
-
this.$fault = "server";
|
|
418
430
|
Object.setPrototypeOf(this, _KMSInternalException.prototype);
|
|
419
431
|
}
|
|
420
432
|
};
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
433
|
+
var KMSInvalidStateException = class _KMSInvalidStateException extends KMSServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "KMSInvalidStateException");
|
|
436
|
+
}
|
|
437
|
+
name = "KMSInvalidStateException";
|
|
438
|
+
$fault = "client";
|
|
424
439
|
/**
|
|
425
440
|
* @internal
|
|
426
441
|
*/
|
|
@@ -430,14 +445,15 @@ var _KMSInvalidStateException = class _KMSInvalidStateException extends KMSServi
|
|
|
430
445
|
$fault: "client",
|
|
431
446
|
...opts
|
|
432
447
|
});
|
|
433
|
-
this.name = "KMSInvalidStateException";
|
|
434
|
-
this.$fault = "client";
|
|
435
448
|
Object.setPrototypeOf(this, _KMSInvalidStateException.prototype);
|
|
436
449
|
}
|
|
437
450
|
};
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
451
|
+
var NotFoundException = class _NotFoundException extends KMSServiceException {
|
|
452
|
+
static {
|
|
453
|
+
__name(this, "NotFoundException");
|
|
454
|
+
}
|
|
455
|
+
name = "NotFoundException";
|
|
456
|
+
$fault = "client";
|
|
441
457
|
/**
|
|
442
458
|
* @internal
|
|
443
459
|
*/
|
|
@@ -447,14 +463,15 @@ var _NotFoundException = class _NotFoundException extends KMSServiceException {
|
|
|
447
463
|
$fault: "client",
|
|
448
464
|
...opts
|
|
449
465
|
});
|
|
450
|
-
this.name = "NotFoundException";
|
|
451
|
-
this.$fault = "client";
|
|
452
466
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
453
467
|
}
|
|
454
468
|
};
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
469
|
+
var CloudHsmClusterInUseException = class _CloudHsmClusterInUseException extends KMSServiceException {
|
|
470
|
+
static {
|
|
471
|
+
__name(this, "CloudHsmClusterInUseException");
|
|
472
|
+
}
|
|
473
|
+
name = "CloudHsmClusterInUseException";
|
|
474
|
+
$fault = "client";
|
|
458
475
|
/**
|
|
459
476
|
* @internal
|
|
460
477
|
*/
|
|
@@ -464,14 +481,15 @@ var _CloudHsmClusterInUseException = class _CloudHsmClusterInUseException extend
|
|
|
464
481
|
$fault: "client",
|
|
465
482
|
...opts
|
|
466
483
|
});
|
|
467
|
-
this.name = "CloudHsmClusterInUseException";
|
|
468
|
-
this.$fault = "client";
|
|
469
484
|
Object.setPrototypeOf(this, _CloudHsmClusterInUseException.prototype);
|
|
470
485
|
}
|
|
471
486
|
};
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
487
|
+
var CloudHsmClusterInvalidConfigurationException = class _CloudHsmClusterInvalidConfigurationException extends KMSServiceException {
|
|
488
|
+
static {
|
|
489
|
+
__name(this, "CloudHsmClusterInvalidConfigurationException");
|
|
490
|
+
}
|
|
491
|
+
name = "CloudHsmClusterInvalidConfigurationException";
|
|
492
|
+
$fault = "client";
|
|
475
493
|
/**
|
|
476
494
|
* @internal
|
|
477
495
|
*/
|
|
@@ -481,14 +499,15 @@ var _CloudHsmClusterInvalidConfigurationException = class _CloudHsmClusterInvali
|
|
|
481
499
|
$fault: "client",
|
|
482
500
|
...opts
|
|
483
501
|
});
|
|
484
|
-
this.name = "CloudHsmClusterInvalidConfigurationException";
|
|
485
|
-
this.$fault = "client";
|
|
486
502
|
Object.setPrototypeOf(this, _CloudHsmClusterInvalidConfigurationException.prototype);
|
|
487
503
|
}
|
|
488
504
|
};
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
505
|
+
var CloudHsmClusterNotActiveException = class _CloudHsmClusterNotActiveException extends KMSServiceException {
|
|
506
|
+
static {
|
|
507
|
+
__name(this, "CloudHsmClusterNotActiveException");
|
|
508
|
+
}
|
|
509
|
+
name = "CloudHsmClusterNotActiveException";
|
|
510
|
+
$fault = "client";
|
|
492
511
|
/**
|
|
493
512
|
* @internal
|
|
494
513
|
*/
|
|
@@ -498,14 +517,15 @@ var _CloudHsmClusterNotActiveException = class _CloudHsmClusterNotActiveExceptio
|
|
|
498
517
|
$fault: "client",
|
|
499
518
|
...opts
|
|
500
519
|
});
|
|
501
|
-
this.name = "CloudHsmClusterNotActiveException";
|
|
502
|
-
this.$fault = "client";
|
|
503
520
|
Object.setPrototypeOf(this, _CloudHsmClusterNotActiveException.prototype);
|
|
504
521
|
}
|
|
505
522
|
};
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
523
|
+
var CloudHsmClusterNotFoundException = class _CloudHsmClusterNotFoundException extends KMSServiceException {
|
|
524
|
+
static {
|
|
525
|
+
__name(this, "CloudHsmClusterNotFoundException");
|
|
526
|
+
}
|
|
527
|
+
name = "CloudHsmClusterNotFoundException";
|
|
528
|
+
$fault = "client";
|
|
509
529
|
/**
|
|
510
530
|
* @internal
|
|
511
531
|
*/
|
|
@@ -515,14 +535,15 @@ var _CloudHsmClusterNotFoundException = class _CloudHsmClusterNotFoundException
|
|
|
515
535
|
$fault: "client",
|
|
516
536
|
...opts
|
|
517
537
|
});
|
|
518
|
-
this.name = "CloudHsmClusterNotFoundException";
|
|
519
|
-
this.$fault = "client";
|
|
520
538
|
Object.setPrototypeOf(this, _CloudHsmClusterNotFoundException.prototype);
|
|
521
539
|
}
|
|
522
540
|
};
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
541
|
+
var CloudHsmClusterNotRelatedException = class _CloudHsmClusterNotRelatedException extends KMSServiceException {
|
|
542
|
+
static {
|
|
543
|
+
__name(this, "CloudHsmClusterNotRelatedException");
|
|
544
|
+
}
|
|
545
|
+
name = "CloudHsmClusterNotRelatedException";
|
|
546
|
+
$fault = "client";
|
|
526
547
|
/**
|
|
527
548
|
* @internal
|
|
528
549
|
*/
|
|
@@ -532,14 +553,15 @@ var _CloudHsmClusterNotRelatedException = class _CloudHsmClusterNotRelatedExcept
|
|
|
532
553
|
$fault: "client",
|
|
533
554
|
...opts
|
|
534
555
|
});
|
|
535
|
-
this.name = "CloudHsmClusterNotRelatedException";
|
|
536
|
-
this.$fault = "client";
|
|
537
556
|
Object.setPrototypeOf(this, _CloudHsmClusterNotRelatedException.prototype);
|
|
538
557
|
}
|
|
539
558
|
};
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
559
|
+
var ConflictException = class _ConflictException extends KMSServiceException {
|
|
560
|
+
static {
|
|
561
|
+
__name(this, "ConflictException");
|
|
562
|
+
}
|
|
563
|
+
name = "ConflictException";
|
|
564
|
+
$fault = "client";
|
|
543
565
|
/**
|
|
544
566
|
* @internal
|
|
545
567
|
*/
|
|
@@ -549,14 +571,15 @@ var _ConflictException = class _ConflictException extends KMSServiceException {
|
|
|
549
571
|
$fault: "client",
|
|
550
572
|
...opts
|
|
551
573
|
});
|
|
552
|
-
this.name = "ConflictException";
|
|
553
|
-
this.$fault = "client";
|
|
554
574
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
555
575
|
}
|
|
556
576
|
};
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
577
|
+
var CustomKeyStoreInvalidStateException = class _CustomKeyStoreInvalidStateException extends KMSServiceException {
|
|
578
|
+
static {
|
|
579
|
+
__name(this, "CustomKeyStoreInvalidStateException");
|
|
580
|
+
}
|
|
581
|
+
name = "CustomKeyStoreInvalidStateException";
|
|
582
|
+
$fault = "client";
|
|
560
583
|
/**
|
|
561
584
|
* @internal
|
|
562
585
|
*/
|
|
@@ -566,14 +589,15 @@ var _CustomKeyStoreInvalidStateException = class _CustomKeyStoreInvalidStateExce
|
|
|
566
589
|
$fault: "client",
|
|
567
590
|
...opts
|
|
568
591
|
});
|
|
569
|
-
this.name = "CustomKeyStoreInvalidStateException";
|
|
570
|
-
this.$fault = "client";
|
|
571
592
|
Object.setPrototypeOf(this, _CustomKeyStoreInvalidStateException.prototype);
|
|
572
593
|
}
|
|
573
594
|
};
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
595
|
+
var CustomKeyStoreNotFoundException = class _CustomKeyStoreNotFoundException extends KMSServiceException {
|
|
596
|
+
static {
|
|
597
|
+
__name(this, "CustomKeyStoreNotFoundException");
|
|
598
|
+
}
|
|
599
|
+
name = "CustomKeyStoreNotFoundException";
|
|
600
|
+
$fault = "client";
|
|
577
601
|
/**
|
|
578
602
|
* @internal
|
|
579
603
|
*/
|
|
@@ -583,13 +607,9 @@ var _CustomKeyStoreNotFoundException = class _CustomKeyStoreNotFoundException ex
|
|
|
583
607
|
$fault: "client",
|
|
584
608
|
...opts
|
|
585
609
|
});
|
|
586
|
-
this.name = "CustomKeyStoreNotFoundException";
|
|
587
|
-
this.$fault = "client";
|
|
588
610
|
Object.setPrototypeOf(this, _CustomKeyStoreNotFoundException.prototype);
|
|
589
611
|
}
|
|
590
612
|
};
|
|
591
|
-
__name(_CustomKeyStoreNotFoundException, "CustomKeyStoreNotFoundException");
|
|
592
|
-
var CustomKeyStoreNotFoundException = _CustomKeyStoreNotFoundException;
|
|
593
613
|
var ConnectionErrorCodeType = {
|
|
594
614
|
CLUSTER_NOT_FOUND: "CLUSTER_NOT_FOUND",
|
|
595
615
|
INSUFFICIENT_CLOUDHSM_HSMS: "INSUFFICIENT_CLOUDHSM_HSMS",
|
|
@@ -617,7 +637,12 @@ var ConnectionStateType = {
|
|
|
617
637
|
DISCONNECTING: "DISCONNECTING",
|
|
618
638
|
FAILED: "FAILED"
|
|
619
639
|
};
|
|
620
|
-
var
|
|
640
|
+
var InvalidAliasNameException = class _InvalidAliasNameException extends KMSServiceException {
|
|
641
|
+
static {
|
|
642
|
+
__name(this, "InvalidAliasNameException");
|
|
643
|
+
}
|
|
644
|
+
name = "InvalidAliasNameException";
|
|
645
|
+
$fault = "client";
|
|
621
646
|
/**
|
|
622
647
|
* @internal
|
|
623
648
|
*/
|
|
@@ -627,14 +652,15 @@ var _InvalidAliasNameException = class _InvalidAliasNameException extends KMSSer
|
|
|
627
652
|
$fault: "client",
|
|
628
653
|
...opts
|
|
629
654
|
});
|
|
630
|
-
this.name = "InvalidAliasNameException";
|
|
631
|
-
this.$fault = "client";
|
|
632
655
|
Object.setPrototypeOf(this, _InvalidAliasNameException.prototype);
|
|
633
656
|
}
|
|
634
657
|
};
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
658
|
+
var LimitExceededException = class _LimitExceededException extends KMSServiceException {
|
|
659
|
+
static {
|
|
660
|
+
__name(this, "LimitExceededException");
|
|
661
|
+
}
|
|
662
|
+
name = "LimitExceededException";
|
|
663
|
+
$fault = "client";
|
|
638
664
|
/**
|
|
639
665
|
* @internal
|
|
640
666
|
*/
|
|
@@ -644,13 +670,9 @@ var _LimitExceededException = class _LimitExceededException extends KMSServiceEx
|
|
|
644
670
|
$fault: "client",
|
|
645
671
|
...opts
|
|
646
672
|
});
|
|
647
|
-
this.name = "LimitExceededException";
|
|
648
|
-
this.$fault = "client";
|
|
649
673
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
650
674
|
}
|
|
651
675
|
};
|
|
652
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
653
|
-
var LimitExceededException = _LimitExceededException;
|
|
654
676
|
var CustomKeyStoreType = {
|
|
655
677
|
AWS_CLOUDHSM: "AWS_CLOUDHSM",
|
|
656
678
|
EXTERNAL_KEY_STORE: "EXTERNAL_KEY_STORE"
|
|
@@ -659,7 +681,12 @@ var XksProxyConnectivityType = {
|
|
|
659
681
|
PUBLIC_ENDPOINT: "PUBLIC_ENDPOINT",
|
|
660
682
|
VPC_ENDPOINT_SERVICE: "VPC_ENDPOINT_SERVICE"
|
|
661
683
|
};
|
|
662
|
-
var
|
|
684
|
+
var CustomKeyStoreNameInUseException = class _CustomKeyStoreNameInUseException extends KMSServiceException {
|
|
685
|
+
static {
|
|
686
|
+
__name(this, "CustomKeyStoreNameInUseException");
|
|
687
|
+
}
|
|
688
|
+
name = "CustomKeyStoreNameInUseException";
|
|
689
|
+
$fault = "client";
|
|
663
690
|
/**
|
|
664
691
|
* @internal
|
|
665
692
|
*/
|
|
@@ -669,14 +696,15 @@ var _CustomKeyStoreNameInUseException = class _CustomKeyStoreNameInUseException
|
|
|
669
696
|
$fault: "client",
|
|
670
697
|
...opts
|
|
671
698
|
});
|
|
672
|
-
this.name = "CustomKeyStoreNameInUseException";
|
|
673
|
-
this.$fault = "client";
|
|
674
699
|
Object.setPrototypeOf(this, _CustomKeyStoreNameInUseException.prototype);
|
|
675
700
|
}
|
|
676
701
|
};
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
702
|
+
var IncorrectTrustAnchorException = class _IncorrectTrustAnchorException extends KMSServiceException {
|
|
703
|
+
static {
|
|
704
|
+
__name(this, "IncorrectTrustAnchorException");
|
|
705
|
+
}
|
|
706
|
+
name = "IncorrectTrustAnchorException";
|
|
707
|
+
$fault = "client";
|
|
680
708
|
/**
|
|
681
709
|
* @internal
|
|
682
710
|
*/
|
|
@@ -686,14 +714,15 @@ var _IncorrectTrustAnchorException = class _IncorrectTrustAnchorException extend
|
|
|
686
714
|
$fault: "client",
|
|
687
715
|
...opts
|
|
688
716
|
});
|
|
689
|
-
this.name = "IncorrectTrustAnchorException";
|
|
690
|
-
this.$fault = "client";
|
|
691
717
|
Object.setPrototypeOf(this, _IncorrectTrustAnchorException.prototype);
|
|
692
718
|
}
|
|
693
719
|
};
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
720
|
+
var XksProxyIncorrectAuthenticationCredentialException = class _XksProxyIncorrectAuthenticationCredentialException extends KMSServiceException {
|
|
721
|
+
static {
|
|
722
|
+
__name(this, "XksProxyIncorrectAuthenticationCredentialException");
|
|
723
|
+
}
|
|
724
|
+
name = "XksProxyIncorrectAuthenticationCredentialException";
|
|
725
|
+
$fault = "client";
|
|
697
726
|
/**
|
|
698
727
|
* @internal
|
|
699
728
|
*/
|
|
@@ -703,14 +732,15 @@ var _XksProxyIncorrectAuthenticationCredentialException = class _XksProxyIncorre
|
|
|
703
732
|
$fault: "client",
|
|
704
733
|
...opts
|
|
705
734
|
});
|
|
706
|
-
this.name = "XksProxyIncorrectAuthenticationCredentialException";
|
|
707
|
-
this.$fault = "client";
|
|
708
735
|
Object.setPrototypeOf(this, _XksProxyIncorrectAuthenticationCredentialException.prototype);
|
|
709
736
|
}
|
|
710
737
|
};
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
738
|
+
var XksProxyInvalidConfigurationException = class _XksProxyInvalidConfigurationException extends KMSServiceException {
|
|
739
|
+
static {
|
|
740
|
+
__name(this, "XksProxyInvalidConfigurationException");
|
|
741
|
+
}
|
|
742
|
+
name = "XksProxyInvalidConfigurationException";
|
|
743
|
+
$fault = "client";
|
|
714
744
|
/**
|
|
715
745
|
* @internal
|
|
716
746
|
*/
|
|
@@ -720,14 +750,15 @@ var _XksProxyInvalidConfigurationException = class _XksProxyInvalidConfiguration
|
|
|
720
750
|
$fault: "client",
|
|
721
751
|
...opts
|
|
722
752
|
});
|
|
723
|
-
this.name = "XksProxyInvalidConfigurationException";
|
|
724
|
-
this.$fault = "client";
|
|
725
753
|
Object.setPrototypeOf(this, _XksProxyInvalidConfigurationException.prototype);
|
|
726
754
|
}
|
|
727
755
|
};
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
756
|
+
var XksProxyInvalidResponseException = class _XksProxyInvalidResponseException extends KMSServiceException {
|
|
757
|
+
static {
|
|
758
|
+
__name(this, "XksProxyInvalidResponseException");
|
|
759
|
+
}
|
|
760
|
+
name = "XksProxyInvalidResponseException";
|
|
761
|
+
$fault = "client";
|
|
731
762
|
/**
|
|
732
763
|
* @internal
|
|
733
764
|
*/
|
|
@@ -737,14 +768,15 @@ var _XksProxyInvalidResponseException = class _XksProxyInvalidResponseException
|
|
|
737
768
|
$fault: "client",
|
|
738
769
|
...opts
|
|
739
770
|
});
|
|
740
|
-
this.name = "XksProxyInvalidResponseException";
|
|
741
|
-
this.$fault = "client";
|
|
742
771
|
Object.setPrototypeOf(this, _XksProxyInvalidResponseException.prototype);
|
|
743
772
|
}
|
|
744
773
|
};
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
774
|
+
var XksProxyUriEndpointInUseException = class _XksProxyUriEndpointInUseException extends KMSServiceException {
|
|
775
|
+
static {
|
|
776
|
+
__name(this, "XksProxyUriEndpointInUseException");
|
|
777
|
+
}
|
|
778
|
+
name = "XksProxyUriEndpointInUseException";
|
|
779
|
+
$fault = "client";
|
|
748
780
|
/**
|
|
749
781
|
* @internal
|
|
750
782
|
*/
|
|
@@ -754,14 +786,15 @@ var _XksProxyUriEndpointInUseException = class _XksProxyUriEndpointInUseExceptio
|
|
|
754
786
|
$fault: "client",
|
|
755
787
|
...opts
|
|
756
788
|
});
|
|
757
|
-
this.name = "XksProxyUriEndpointInUseException";
|
|
758
|
-
this.$fault = "client";
|
|
759
789
|
Object.setPrototypeOf(this, _XksProxyUriEndpointInUseException.prototype);
|
|
760
790
|
}
|
|
761
791
|
};
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
792
|
+
var XksProxyUriInUseException = class _XksProxyUriInUseException extends KMSServiceException {
|
|
793
|
+
static {
|
|
794
|
+
__name(this, "XksProxyUriInUseException");
|
|
795
|
+
}
|
|
796
|
+
name = "XksProxyUriInUseException";
|
|
797
|
+
$fault = "client";
|
|
765
798
|
/**
|
|
766
799
|
* @internal
|
|
767
800
|
*/
|
|
@@ -771,14 +804,15 @@ var _XksProxyUriInUseException = class _XksProxyUriInUseException extends KMSSer
|
|
|
771
804
|
$fault: "client",
|
|
772
805
|
...opts
|
|
773
806
|
});
|
|
774
|
-
this.name = "XksProxyUriInUseException";
|
|
775
|
-
this.$fault = "client";
|
|
776
807
|
Object.setPrototypeOf(this, _XksProxyUriInUseException.prototype);
|
|
777
808
|
}
|
|
778
809
|
};
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
810
|
+
var XksProxyUriUnreachableException = class _XksProxyUriUnreachableException extends KMSServiceException {
|
|
811
|
+
static {
|
|
812
|
+
__name(this, "XksProxyUriUnreachableException");
|
|
813
|
+
}
|
|
814
|
+
name = "XksProxyUriUnreachableException";
|
|
815
|
+
$fault = "client";
|
|
782
816
|
/**
|
|
783
817
|
* @internal
|
|
784
818
|
*/
|
|
@@ -788,14 +822,15 @@ var _XksProxyUriUnreachableException = class _XksProxyUriUnreachableException ex
|
|
|
788
822
|
$fault: "client",
|
|
789
823
|
...opts
|
|
790
824
|
});
|
|
791
|
-
this.name = "XksProxyUriUnreachableException";
|
|
792
|
-
this.$fault = "client";
|
|
793
825
|
Object.setPrototypeOf(this, _XksProxyUriUnreachableException.prototype);
|
|
794
826
|
}
|
|
795
827
|
};
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
828
|
+
var XksProxyVpcEndpointServiceInUseException = class _XksProxyVpcEndpointServiceInUseException extends KMSServiceException {
|
|
829
|
+
static {
|
|
830
|
+
__name(this, "XksProxyVpcEndpointServiceInUseException");
|
|
831
|
+
}
|
|
832
|
+
name = "XksProxyVpcEndpointServiceInUseException";
|
|
833
|
+
$fault = "client";
|
|
799
834
|
/**
|
|
800
835
|
* @internal
|
|
801
836
|
*/
|
|
@@ -805,14 +840,15 @@ var _XksProxyVpcEndpointServiceInUseException = class _XksProxyVpcEndpointServic
|
|
|
805
840
|
$fault: "client",
|
|
806
841
|
...opts
|
|
807
842
|
});
|
|
808
|
-
this.name = "XksProxyVpcEndpointServiceInUseException";
|
|
809
|
-
this.$fault = "client";
|
|
810
843
|
Object.setPrototypeOf(this, _XksProxyVpcEndpointServiceInUseException.prototype);
|
|
811
844
|
}
|
|
812
845
|
};
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
846
|
+
var XksProxyVpcEndpointServiceInvalidConfigurationException = class _XksProxyVpcEndpointServiceInvalidConfigurationException extends KMSServiceException {
|
|
847
|
+
static {
|
|
848
|
+
__name(this, "XksProxyVpcEndpointServiceInvalidConfigurationException");
|
|
849
|
+
}
|
|
850
|
+
name = "XksProxyVpcEndpointServiceInvalidConfigurationException";
|
|
851
|
+
$fault = "client";
|
|
816
852
|
/**
|
|
817
853
|
* @internal
|
|
818
854
|
*/
|
|
@@ -822,14 +858,15 @@ var _XksProxyVpcEndpointServiceInvalidConfigurationException = class _XksProxyVp
|
|
|
822
858
|
$fault: "client",
|
|
823
859
|
...opts
|
|
824
860
|
});
|
|
825
|
-
this.name = "XksProxyVpcEndpointServiceInvalidConfigurationException";
|
|
826
|
-
this.$fault = "client";
|
|
827
861
|
Object.setPrototypeOf(this, _XksProxyVpcEndpointServiceInvalidConfigurationException.prototype);
|
|
828
862
|
}
|
|
829
863
|
};
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
864
|
+
var XksProxyVpcEndpointServiceNotFoundException = class _XksProxyVpcEndpointServiceNotFoundException extends KMSServiceException {
|
|
865
|
+
static {
|
|
866
|
+
__name(this, "XksProxyVpcEndpointServiceNotFoundException");
|
|
867
|
+
}
|
|
868
|
+
name = "XksProxyVpcEndpointServiceNotFoundException";
|
|
869
|
+
$fault = "client";
|
|
833
870
|
/**
|
|
834
871
|
* @internal
|
|
835
872
|
*/
|
|
@@ -839,13 +876,9 @@ var _XksProxyVpcEndpointServiceNotFoundException = class _XksProxyVpcEndpointSer
|
|
|
839
876
|
$fault: "client",
|
|
840
877
|
...opts
|
|
841
878
|
});
|
|
842
|
-
this.name = "XksProxyVpcEndpointServiceNotFoundException";
|
|
843
|
-
this.$fault = "client";
|
|
844
879
|
Object.setPrototypeOf(this, _XksProxyVpcEndpointServiceNotFoundException.prototype);
|
|
845
880
|
}
|
|
846
881
|
};
|
|
847
|
-
__name(_XksProxyVpcEndpointServiceNotFoundException, "XksProxyVpcEndpointServiceNotFoundException");
|
|
848
|
-
var XksProxyVpcEndpointServiceNotFoundException = _XksProxyVpcEndpointServiceNotFoundException;
|
|
849
882
|
var GrantOperation = {
|
|
850
883
|
CreateGrant: "CreateGrant",
|
|
851
884
|
Decrypt: "Decrypt",
|
|
@@ -865,7 +898,12 @@ var GrantOperation = {
|
|
|
865
898
|
Verify: "Verify",
|
|
866
899
|
VerifyMac: "VerifyMac"
|
|
867
900
|
};
|
|
868
|
-
var
|
|
901
|
+
var DisabledException = class _DisabledException extends KMSServiceException {
|
|
902
|
+
static {
|
|
903
|
+
__name(this, "DisabledException");
|
|
904
|
+
}
|
|
905
|
+
name = "DisabledException";
|
|
906
|
+
$fault = "client";
|
|
869
907
|
/**
|
|
870
908
|
* @internal
|
|
871
909
|
*/
|
|
@@ -875,14 +913,15 @@ var _DisabledException = class _DisabledException extends KMSServiceException {
|
|
|
875
913
|
$fault: "client",
|
|
876
914
|
...opts
|
|
877
915
|
});
|
|
878
|
-
this.name = "DisabledException";
|
|
879
|
-
this.$fault = "client";
|
|
880
916
|
Object.setPrototypeOf(this, _DisabledException.prototype);
|
|
881
917
|
}
|
|
882
918
|
};
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
919
|
+
var DryRunOperationException = class _DryRunOperationException extends KMSServiceException {
|
|
920
|
+
static {
|
|
921
|
+
__name(this, "DryRunOperationException");
|
|
922
|
+
}
|
|
923
|
+
name = "DryRunOperationException";
|
|
924
|
+
$fault = "client";
|
|
886
925
|
/**
|
|
887
926
|
* @internal
|
|
888
927
|
*/
|
|
@@ -892,14 +931,15 @@ var _DryRunOperationException = class _DryRunOperationException extends KMSServi
|
|
|
892
931
|
$fault: "client",
|
|
893
932
|
...opts
|
|
894
933
|
});
|
|
895
|
-
this.name = "DryRunOperationException";
|
|
896
|
-
this.$fault = "client";
|
|
897
934
|
Object.setPrototypeOf(this, _DryRunOperationException.prototype);
|
|
898
935
|
}
|
|
899
936
|
};
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
937
|
+
var InvalidGrantTokenException = class _InvalidGrantTokenException extends KMSServiceException {
|
|
938
|
+
static {
|
|
939
|
+
__name(this, "InvalidGrantTokenException");
|
|
940
|
+
}
|
|
941
|
+
name = "InvalidGrantTokenException";
|
|
942
|
+
$fault = "client";
|
|
903
943
|
/**
|
|
904
944
|
* @internal
|
|
905
945
|
*/
|
|
@@ -909,13 +949,9 @@ var _InvalidGrantTokenException = class _InvalidGrantTokenException extends KMSS
|
|
|
909
949
|
$fault: "client",
|
|
910
950
|
...opts
|
|
911
951
|
});
|
|
912
|
-
this.name = "InvalidGrantTokenException";
|
|
913
|
-
this.$fault = "client";
|
|
914
952
|
Object.setPrototypeOf(this, _InvalidGrantTokenException.prototype);
|
|
915
953
|
}
|
|
916
954
|
};
|
|
917
|
-
__name(_InvalidGrantTokenException, "InvalidGrantTokenException");
|
|
918
|
-
var InvalidGrantTokenException = _InvalidGrantTokenException;
|
|
919
955
|
var CustomerMasterKeySpec = {
|
|
920
956
|
ECC_NIST_P256: "ECC_NIST_P256",
|
|
921
957
|
ECC_NIST_P384: "ECC_NIST_P384",
|
|
@@ -1007,7 +1043,12 @@ var SigningAlgorithmSpec = {
|
|
|
1007
1043
|
RSASSA_PSS_SHA_512: "RSASSA_PSS_SHA_512",
|
|
1008
1044
|
SM2DSA: "SM2DSA"
|
|
1009
1045
|
};
|
|
1010
|
-
var
|
|
1046
|
+
var MalformedPolicyDocumentException = class _MalformedPolicyDocumentException extends KMSServiceException {
|
|
1047
|
+
static {
|
|
1048
|
+
__name(this, "MalformedPolicyDocumentException");
|
|
1049
|
+
}
|
|
1050
|
+
name = "MalformedPolicyDocumentException";
|
|
1051
|
+
$fault = "client";
|
|
1011
1052
|
/**
|
|
1012
1053
|
* @internal
|
|
1013
1054
|
*/
|
|
@@ -1017,14 +1058,15 @@ var _MalformedPolicyDocumentException = class _MalformedPolicyDocumentException
|
|
|
1017
1058
|
$fault: "client",
|
|
1018
1059
|
...opts
|
|
1019
1060
|
});
|
|
1020
|
-
this.name = "MalformedPolicyDocumentException";
|
|
1021
|
-
this.$fault = "client";
|
|
1022
1061
|
Object.setPrototypeOf(this, _MalformedPolicyDocumentException.prototype);
|
|
1023
1062
|
}
|
|
1024
1063
|
};
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1064
|
+
var TagException = class _TagException extends KMSServiceException {
|
|
1065
|
+
static {
|
|
1066
|
+
__name(this, "TagException");
|
|
1067
|
+
}
|
|
1068
|
+
name = "TagException";
|
|
1069
|
+
$fault = "client";
|
|
1028
1070
|
/**
|
|
1029
1071
|
* @internal
|
|
1030
1072
|
*/
|
|
@@ -1034,14 +1076,15 @@ var _TagException = class _TagException extends KMSServiceException {
|
|
|
1034
1076
|
$fault: "client",
|
|
1035
1077
|
...opts
|
|
1036
1078
|
});
|
|
1037
|
-
this.name = "TagException";
|
|
1038
|
-
this.$fault = "client";
|
|
1039
1079
|
Object.setPrototypeOf(this, _TagException.prototype);
|
|
1040
1080
|
}
|
|
1041
1081
|
};
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1082
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends KMSServiceException {
|
|
1083
|
+
static {
|
|
1084
|
+
__name(this, "UnsupportedOperationException");
|
|
1085
|
+
}
|
|
1086
|
+
name = "UnsupportedOperationException";
|
|
1087
|
+
$fault = "client";
|
|
1045
1088
|
/**
|
|
1046
1089
|
* @internal
|
|
1047
1090
|
*/
|
|
@@ -1051,14 +1094,15 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
1051
1094
|
$fault: "client",
|
|
1052
1095
|
...opts
|
|
1053
1096
|
});
|
|
1054
|
-
this.name = "UnsupportedOperationException";
|
|
1055
|
-
this.$fault = "client";
|
|
1056
1097
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
1057
1098
|
}
|
|
1058
1099
|
};
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1100
|
+
var XksKeyAlreadyInUseException = class _XksKeyAlreadyInUseException extends KMSServiceException {
|
|
1101
|
+
static {
|
|
1102
|
+
__name(this, "XksKeyAlreadyInUseException");
|
|
1103
|
+
}
|
|
1104
|
+
name = "XksKeyAlreadyInUseException";
|
|
1105
|
+
$fault = "client";
|
|
1062
1106
|
/**
|
|
1063
1107
|
* @internal
|
|
1064
1108
|
*/
|
|
@@ -1068,14 +1112,15 @@ var _XksKeyAlreadyInUseException = class _XksKeyAlreadyInUseException extends KM
|
|
|
1068
1112
|
$fault: "client",
|
|
1069
1113
|
...opts
|
|
1070
1114
|
});
|
|
1071
|
-
this.name = "XksKeyAlreadyInUseException";
|
|
1072
|
-
this.$fault = "client";
|
|
1073
1115
|
Object.setPrototypeOf(this, _XksKeyAlreadyInUseException.prototype);
|
|
1074
1116
|
}
|
|
1075
1117
|
};
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1118
|
+
var XksKeyInvalidConfigurationException = class _XksKeyInvalidConfigurationException extends KMSServiceException {
|
|
1119
|
+
static {
|
|
1120
|
+
__name(this, "XksKeyInvalidConfigurationException");
|
|
1121
|
+
}
|
|
1122
|
+
name = "XksKeyInvalidConfigurationException";
|
|
1123
|
+
$fault = "client";
|
|
1079
1124
|
/**
|
|
1080
1125
|
* @internal
|
|
1081
1126
|
*/
|
|
@@ -1085,14 +1130,15 @@ var _XksKeyInvalidConfigurationException = class _XksKeyInvalidConfigurationExce
|
|
|
1085
1130
|
$fault: "client",
|
|
1086
1131
|
...opts
|
|
1087
1132
|
});
|
|
1088
|
-
this.name = "XksKeyInvalidConfigurationException";
|
|
1089
|
-
this.$fault = "client";
|
|
1090
1133
|
Object.setPrototypeOf(this, _XksKeyInvalidConfigurationException.prototype);
|
|
1091
1134
|
}
|
|
1092
1135
|
};
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1136
|
+
var XksKeyNotFoundException = class _XksKeyNotFoundException extends KMSServiceException {
|
|
1137
|
+
static {
|
|
1138
|
+
__name(this, "XksKeyNotFoundException");
|
|
1139
|
+
}
|
|
1140
|
+
name = "XksKeyNotFoundException";
|
|
1141
|
+
$fault = "client";
|
|
1096
1142
|
/**
|
|
1097
1143
|
* @internal
|
|
1098
1144
|
*/
|
|
@@ -1102,14 +1148,15 @@ var _XksKeyNotFoundException = class _XksKeyNotFoundException extends KMSService
|
|
|
1102
1148
|
$fault: "client",
|
|
1103
1149
|
...opts
|
|
1104
1150
|
});
|
|
1105
|
-
this.name = "XksKeyNotFoundException";
|
|
1106
|
-
this.$fault = "client";
|
|
1107
1151
|
Object.setPrototypeOf(this, _XksKeyNotFoundException.prototype);
|
|
1108
1152
|
}
|
|
1109
1153
|
};
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1154
|
+
var CustomKeyStoreHasCMKsException = class _CustomKeyStoreHasCMKsException extends KMSServiceException {
|
|
1155
|
+
static {
|
|
1156
|
+
__name(this, "CustomKeyStoreHasCMKsException");
|
|
1157
|
+
}
|
|
1158
|
+
name = "CustomKeyStoreHasCMKsException";
|
|
1159
|
+
$fault = "client";
|
|
1113
1160
|
/**
|
|
1114
1161
|
* @internal
|
|
1115
1162
|
*/
|
|
@@ -1119,13 +1166,9 @@ var _CustomKeyStoreHasCMKsException = class _CustomKeyStoreHasCMKsException exte
|
|
|
1119
1166
|
$fault: "client",
|
|
1120
1167
|
...opts
|
|
1121
1168
|
});
|
|
1122
|
-
this.name = "CustomKeyStoreHasCMKsException";
|
|
1123
|
-
this.$fault = "client";
|
|
1124
1169
|
Object.setPrototypeOf(this, _CustomKeyStoreHasCMKsException.prototype);
|
|
1125
1170
|
}
|
|
1126
1171
|
};
|
|
1127
|
-
__name(_CustomKeyStoreHasCMKsException, "CustomKeyStoreHasCMKsException");
|
|
1128
|
-
var CustomKeyStoreHasCMKsException = _CustomKeyStoreHasCMKsException;
|
|
1129
1172
|
var DataKeyPairSpec = {
|
|
1130
1173
|
ECC_NIST_P256: "ECC_NIST_P256",
|
|
1131
1174
|
ECC_NIST_P384: "ECC_NIST_P384",
|
|
@@ -1143,7 +1186,12 @@ var DataKeySpec = {
|
|
|
1143
1186
|
var KeyEncryptionMechanism = {
|
|
1144
1187
|
RSAES_OAEP_SHA_256: "RSAES_OAEP_SHA_256"
|
|
1145
1188
|
};
|
|
1146
|
-
var
|
|
1189
|
+
var IncorrectKeyException = class _IncorrectKeyException extends KMSServiceException {
|
|
1190
|
+
static {
|
|
1191
|
+
__name(this, "IncorrectKeyException");
|
|
1192
|
+
}
|
|
1193
|
+
name = "IncorrectKeyException";
|
|
1194
|
+
$fault = "client";
|
|
1147
1195
|
/**
|
|
1148
1196
|
* @internal
|
|
1149
1197
|
*/
|
|
@@ -1153,14 +1201,15 @@ var _IncorrectKeyException = class _IncorrectKeyException extends KMSServiceExce
|
|
|
1153
1201
|
$fault: "client",
|
|
1154
1202
|
...opts
|
|
1155
1203
|
});
|
|
1156
|
-
this.name = "IncorrectKeyException";
|
|
1157
|
-
this.$fault = "client";
|
|
1158
1204
|
Object.setPrototypeOf(this, _IncorrectKeyException.prototype);
|
|
1159
1205
|
}
|
|
1160
1206
|
};
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1207
|
+
var InvalidCiphertextException = class _InvalidCiphertextException extends KMSServiceException {
|
|
1208
|
+
static {
|
|
1209
|
+
__name(this, "InvalidCiphertextException");
|
|
1210
|
+
}
|
|
1211
|
+
name = "InvalidCiphertextException";
|
|
1212
|
+
$fault = "client";
|
|
1164
1213
|
/**
|
|
1165
1214
|
* @internal
|
|
1166
1215
|
*/
|
|
@@ -1170,14 +1219,15 @@ var _InvalidCiphertextException = class _InvalidCiphertextException extends KMSS
|
|
|
1170
1219
|
$fault: "client",
|
|
1171
1220
|
...opts
|
|
1172
1221
|
});
|
|
1173
|
-
this.name = "InvalidCiphertextException";
|
|
1174
|
-
this.$fault = "client";
|
|
1175
1222
|
Object.setPrototypeOf(this, _InvalidCiphertextException.prototype);
|
|
1176
1223
|
}
|
|
1177
1224
|
};
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1225
|
+
var InvalidKeyUsageException = class _InvalidKeyUsageException extends KMSServiceException {
|
|
1226
|
+
static {
|
|
1227
|
+
__name(this, "InvalidKeyUsageException");
|
|
1228
|
+
}
|
|
1229
|
+
name = "InvalidKeyUsageException";
|
|
1230
|
+
$fault = "client";
|
|
1181
1231
|
/**
|
|
1182
1232
|
* @internal
|
|
1183
1233
|
*/
|
|
@@ -1187,14 +1237,15 @@ var _InvalidKeyUsageException = class _InvalidKeyUsageException extends KMSServi
|
|
|
1187
1237
|
$fault: "client",
|
|
1188
1238
|
...opts
|
|
1189
1239
|
});
|
|
1190
|
-
this.name = "InvalidKeyUsageException";
|
|
1191
|
-
this.$fault = "client";
|
|
1192
1240
|
Object.setPrototypeOf(this, _InvalidKeyUsageException.prototype);
|
|
1193
1241
|
}
|
|
1194
1242
|
};
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1243
|
+
var KeyUnavailableException = class _KeyUnavailableException extends KMSServiceException {
|
|
1244
|
+
static {
|
|
1245
|
+
__name(this, "KeyUnavailableException");
|
|
1246
|
+
}
|
|
1247
|
+
name = "KeyUnavailableException";
|
|
1248
|
+
$fault = "server";
|
|
1198
1249
|
/**
|
|
1199
1250
|
* @internal
|
|
1200
1251
|
*/
|
|
@@ -1204,14 +1255,15 @@ var _KeyUnavailableException = class _KeyUnavailableException extends KMSService
|
|
|
1204
1255
|
$fault: "server",
|
|
1205
1256
|
...opts
|
|
1206
1257
|
});
|
|
1207
|
-
this.name = "KeyUnavailableException";
|
|
1208
|
-
this.$fault = "server";
|
|
1209
1258
|
Object.setPrototypeOf(this, _KeyUnavailableException.prototype);
|
|
1210
1259
|
}
|
|
1211
1260
|
};
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1261
|
+
var InvalidMarkerException = class _InvalidMarkerException extends KMSServiceException {
|
|
1262
|
+
static {
|
|
1263
|
+
__name(this, "InvalidMarkerException");
|
|
1264
|
+
}
|
|
1265
|
+
name = "InvalidMarkerException";
|
|
1266
|
+
$fault = "client";
|
|
1215
1267
|
/**
|
|
1216
1268
|
* @internal
|
|
1217
1269
|
*/
|
|
@@ -1221,14 +1273,15 @@ var _InvalidMarkerException = class _InvalidMarkerException extends KMSServiceEx
|
|
|
1221
1273
|
$fault: "client",
|
|
1222
1274
|
...opts
|
|
1223
1275
|
});
|
|
1224
|
-
this.name = "InvalidMarkerException";
|
|
1225
|
-
this.$fault = "client";
|
|
1226
1276
|
Object.setPrototypeOf(this, _InvalidMarkerException.prototype);
|
|
1227
1277
|
}
|
|
1228
1278
|
};
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1279
|
+
var ExpiredImportTokenException = class _ExpiredImportTokenException extends KMSServiceException {
|
|
1280
|
+
static {
|
|
1281
|
+
__name(this, "ExpiredImportTokenException");
|
|
1282
|
+
}
|
|
1283
|
+
name = "ExpiredImportTokenException";
|
|
1284
|
+
$fault = "client";
|
|
1232
1285
|
/**
|
|
1233
1286
|
* @internal
|
|
1234
1287
|
*/
|
|
@@ -1238,20 +1291,21 @@ var _ExpiredImportTokenException = class _ExpiredImportTokenException extends KM
|
|
|
1238
1291
|
$fault: "client",
|
|
1239
1292
|
...opts
|
|
1240
1293
|
});
|
|
1241
|
-
this.name = "ExpiredImportTokenException";
|
|
1242
|
-
this.$fault = "client";
|
|
1243
1294
|
Object.setPrototypeOf(this, _ExpiredImportTokenException.prototype);
|
|
1244
1295
|
}
|
|
1245
1296
|
};
|
|
1246
|
-
__name(_ExpiredImportTokenException, "ExpiredImportTokenException");
|
|
1247
|
-
var ExpiredImportTokenException = _ExpiredImportTokenException;
|
|
1248
1297
|
var WrappingKeySpec = {
|
|
1249
1298
|
RSA_2048: "RSA_2048",
|
|
1250
1299
|
RSA_3072: "RSA_3072",
|
|
1251
1300
|
RSA_4096: "RSA_4096",
|
|
1252
1301
|
SM2: "SM2"
|
|
1253
1302
|
};
|
|
1254
|
-
var
|
|
1303
|
+
var IncorrectKeyMaterialException = class _IncorrectKeyMaterialException extends KMSServiceException {
|
|
1304
|
+
static {
|
|
1305
|
+
__name(this, "IncorrectKeyMaterialException");
|
|
1306
|
+
}
|
|
1307
|
+
name = "IncorrectKeyMaterialException";
|
|
1308
|
+
$fault = "client";
|
|
1255
1309
|
/**
|
|
1256
1310
|
* @internal
|
|
1257
1311
|
*/
|
|
@@ -1261,14 +1315,15 @@ var _IncorrectKeyMaterialException = class _IncorrectKeyMaterialException extend
|
|
|
1261
1315
|
$fault: "client",
|
|
1262
1316
|
...opts
|
|
1263
1317
|
});
|
|
1264
|
-
this.name = "IncorrectKeyMaterialException";
|
|
1265
|
-
this.$fault = "client";
|
|
1266
1318
|
Object.setPrototypeOf(this, _IncorrectKeyMaterialException.prototype);
|
|
1267
1319
|
}
|
|
1268
1320
|
};
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1321
|
+
var InvalidImportTokenException = class _InvalidImportTokenException extends KMSServiceException {
|
|
1322
|
+
static {
|
|
1323
|
+
__name(this, "InvalidImportTokenException");
|
|
1324
|
+
}
|
|
1325
|
+
name = "InvalidImportTokenException";
|
|
1326
|
+
$fault = "client";
|
|
1272
1327
|
/**
|
|
1273
1328
|
* @internal
|
|
1274
1329
|
*/
|
|
@@ -1278,14 +1333,15 @@ var _InvalidImportTokenException = class _InvalidImportTokenException extends KM
|
|
|
1278
1333
|
$fault: "client",
|
|
1279
1334
|
...opts
|
|
1280
1335
|
});
|
|
1281
|
-
this.name = "InvalidImportTokenException";
|
|
1282
|
-
this.$fault = "client";
|
|
1283
1336
|
Object.setPrototypeOf(this, _InvalidImportTokenException.prototype);
|
|
1284
1337
|
}
|
|
1285
1338
|
};
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1339
|
+
var InvalidGrantIdException = class _InvalidGrantIdException extends KMSServiceException {
|
|
1340
|
+
static {
|
|
1341
|
+
__name(this, "InvalidGrantIdException");
|
|
1342
|
+
}
|
|
1343
|
+
name = "InvalidGrantIdException";
|
|
1344
|
+
$fault = "client";
|
|
1289
1345
|
/**
|
|
1290
1346
|
* @internal
|
|
1291
1347
|
*/
|
|
@@ -1295,14 +1351,15 @@ var _InvalidGrantIdException = class _InvalidGrantIdException extends KMSService
|
|
|
1295
1351
|
$fault: "client",
|
|
1296
1352
|
...opts
|
|
1297
1353
|
});
|
|
1298
|
-
this.name = "InvalidGrantIdException";
|
|
1299
|
-
this.$fault = "client";
|
|
1300
1354
|
Object.setPrototypeOf(this, _InvalidGrantIdException.prototype);
|
|
1301
1355
|
}
|
|
1302
1356
|
};
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1357
|
+
var KMSInvalidMacException = class _KMSInvalidMacException extends KMSServiceException {
|
|
1358
|
+
static {
|
|
1359
|
+
__name(this, "KMSInvalidMacException");
|
|
1360
|
+
}
|
|
1361
|
+
name = "KMSInvalidMacException";
|
|
1362
|
+
$fault = "client";
|
|
1306
1363
|
/**
|
|
1307
1364
|
* @internal
|
|
1308
1365
|
*/
|
|
@@ -1312,14 +1369,15 @@ var _KMSInvalidMacException = class _KMSInvalidMacException extends KMSServiceEx
|
|
|
1312
1369
|
$fault: "client",
|
|
1313
1370
|
...opts
|
|
1314
1371
|
});
|
|
1315
|
-
this.name = "KMSInvalidMacException";
|
|
1316
|
-
this.$fault = "client";
|
|
1317
1372
|
Object.setPrototypeOf(this, _KMSInvalidMacException.prototype);
|
|
1318
1373
|
}
|
|
1319
1374
|
};
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1375
|
+
var KMSInvalidSignatureException = class _KMSInvalidSignatureException extends KMSServiceException {
|
|
1376
|
+
static {
|
|
1377
|
+
__name(this, "KMSInvalidSignatureException");
|
|
1378
|
+
}
|
|
1379
|
+
name = "KMSInvalidSignatureException";
|
|
1380
|
+
$fault = "client";
|
|
1323
1381
|
/**
|
|
1324
1382
|
* @internal
|
|
1325
1383
|
*/
|
|
@@ -1329,13 +1387,9 @@ var _KMSInvalidSignatureException = class _KMSInvalidSignatureException extends
|
|
|
1329
1387
|
$fault: "client",
|
|
1330
1388
|
...opts
|
|
1331
1389
|
});
|
|
1332
|
-
this.name = "KMSInvalidSignatureException";
|
|
1333
|
-
this.$fault = "client";
|
|
1334
1390
|
Object.setPrototypeOf(this, _KMSInvalidSignatureException.prototype);
|
|
1335
1391
|
}
|
|
1336
1392
|
};
|
|
1337
|
-
__name(_KMSInvalidSignatureException, "KMSInvalidSignatureException");
|
|
1338
|
-
var KMSInvalidSignatureException = _KMSInvalidSignatureException;
|
|
1339
1393
|
var RotationType = {
|
|
1340
1394
|
AUTOMATIC: "AUTOMATIC",
|
|
1341
1395
|
ON_DEMAND: "ON_DEMAND"
|
|
@@ -3406,743 +3460,796 @@ function sharedHeaders(operation) {
|
|
|
3406
3460
|
__name(sharedHeaders, "sharedHeaders");
|
|
3407
3461
|
|
|
3408
3462
|
// src/commands/CancelKeyDeletionCommand.ts
|
|
3409
|
-
var
|
|
3463
|
+
var CancelKeyDeletionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3410
3464
|
return [
|
|
3411
3465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3412
3466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3413
3467
|
];
|
|
3414
3468
|
}).s("TrentService", "CancelKeyDeletion", {}).n("KMSClient", "CancelKeyDeletionCommand").f(void 0, void 0).ser(se_CancelKeyDeletionCommand).de(de_CancelKeyDeletionCommand).build() {
|
|
3469
|
+
static {
|
|
3470
|
+
__name(this, "CancelKeyDeletionCommand");
|
|
3471
|
+
}
|
|
3415
3472
|
};
|
|
3416
|
-
__name(_CancelKeyDeletionCommand, "CancelKeyDeletionCommand");
|
|
3417
|
-
var CancelKeyDeletionCommand = _CancelKeyDeletionCommand;
|
|
3418
3473
|
|
|
3419
3474
|
// src/commands/ConnectCustomKeyStoreCommand.ts
|
|
3420
3475
|
|
|
3421
3476
|
|
|
3422
3477
|
|
|
3423
|
-
var
|
|
3478
|
+
var ConnectCustomKeyStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3424
3479
|
return [
|
|
3425
3480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3426
3481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3427
3482
|
];
|
|
3428
3483
|
}).s("TrentService", "ConnectCustomKeyStore", {}).n("KMSClient", "ConnectCustomKeyStoreCommand").f(void 0, void 0).ser(se_ConnectCustomKeyStoreCommand).de(de_ConnectCustomKeyStoreCommand).build() {
|
|
3484
|
+
static {
|
|
3485
|
+
__name(this, "ConnectCustomKeyStoreCommand");
|
|
3486
|
+
}
|
|
3429
3487
|
};
|
|
3430
|
-
__name(_ConnectCustomKeyStoreCommand, "ConnectCustomKeyStoreCommand");
|
|
3431
|
-
var ConnectCustomKeyStoreCommand = _ConnectCustomKeyStoreCommand;
|
|
3432
3488
|
|
|
3433
3489
|
// src/commands/CreateAliasCommand.ts
|
|
3434
3490
|
|
|
3435
3491
|
|
|
3436
3492
|
|
|
3437
|
-
var
|
|
3493
|
+
var CreateAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3438
3494
|
return [
|
|
3439
3495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3440
3496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3441
3497
|
];
|
|
3442
3498
|
}).s("TrentService", "CreateAlias", {}).n("KMSClient", "CreateAliasCommand").f(void 0, void 0).ser(se_CreateAliasCommand).de(de_CreateAliasCommand).build() {
|
|
3499
|
+
static {
|
|
3500
|
+
__name(this, "CreateAliasCommand");
|
|
3501
|
+
}
|
|
3443
3502
|
};
|
|
3444
|
-
__name(_CreateAliasCommand, "CreateAliasCommand");
|
|
3445
|
-
var CreateAliasCommand = _CreateAliasCommand;
|
|
3446
3503
|
|
|
3447
3504
|
// src/commands/CreateCustomKeyStoreCommand.ts
|
|
3448
3505
|
|
|
3449
3506
|
|
|
3450
3507
|
|
|
3451
|
-
var
|
|
3508
|
+
var CreateCustomKeyStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3452
3509
|
return [
|
|
3453
3510
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3454
3511
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3455
3512
|
];
|
|
3456
3513
|
}).s("TrentService", "CreateCustomKeyStore", {}).n("KMSClient", "CreateCustomKeyStoreCommand").f(CreateCustomKeyStoreRequestFilterSensitiveLog, void 0).ser(se_CreateCustomKeyStoreCommand).de(de_CreateCustomKeyStoreCommand).build() {
|
|
3514
|
+
static {
|
|
3515
|
+
__name(this, "CreateCustomKeyStoreCommand");
|
|
3516
|
+
}
|
|
3457
3517
|
};
|
|
3458
|
-
__name(_CreateCustomKeyStoreCommand, "CreateCustomKeyStoreCommand");
|
|
3459
|
-
var CreateCustomKeyStoreCommand = _CreateCustomKeyStoreCommand;
|
|
3460
3518
|
|
|
3461
3519
|
// src/commands/CreateGrantCommand.ts
|
|
3462
3520
|
|
|
3463
3521
|
|
|
3464
3522
|
|
|
3465
|
-
var
|
|
3523
|
+
var CreateGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3466
3524
|
return [
|
|
3467
3525
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3468
3526
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3469
3527
|
];
|
|
3470
3528
|
}).s("TrentService", "CreateGrant", {}).n("KMSClient", "CreateGrantCommand").f(void 0, void 0).ser(se_CreateGrantCommand).de(de_CreateGrantCommand).build() {
|
|
3529
|
+
static {
|
|
3530
|
+
__name(this, "CreateGrantCommand");
|
|
3531
|
+
}
|
|
3471
3532
|
};
|
|
3472
|
-
__name(_CreateGrantCommand, "CreateGrantCommand");
|
|
3473
|
-
var CreateGrantCommand = _CreateGrantCommand;
|
|
3474
3533
|
|
|
3475
3534
|
// src/commands/CreateKeyCommand.ts
|
|
3476
3535
|
|
|
3477
3536
|
|
|
3478
3537
|
|
|
3479
|
-
var
|
|
3538
|
+
var CreateKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3480
3539
|
return [
|
|
3481
3540
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3482
3541
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3483
3542
|
];
|
|
3484
3543
|
}).s("TrentService", "CreateKey", {}).n("KMSClient", "CreateKeyCommand").f(void 0, void 0).ser(se_CreateKeyCommand).de(de_CreateKeyCommand).build() {
|
|
3544
|
+
static {
|
|
3545
|
+
__name(this, "CreateKeyCommand");
|
|
3546
|
+
}
|
|
3485
3547
|
};
|
|
3486
|
-
__name(_CreateKeyCommand, "CreateKeyCommand");
|
|
3487
|
-
var CreateKeyCommand = _CreateKeyCommand;
|
|
3488
3548
|
|
|
3489
3549
|
// src/commands/DecryptCommand.ts
|
|
3490
3550
|
|
|
3491
3551
|
|
|
3492
3552
|
|
|
3493
|
-
var
|
|
3553
|
+
var DecryptCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3494
3554
|
return [
|
|
3495
3555
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3496
3556
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3497
3557
|
];
|
|
3498
3558
|
}).s("TrentService", "Decrypt", {}).n("KMSClient", "DecryptCommand").f(void 0, DecryptResponseFilterSensitiveLog).ser(se_DecryptCommand).de(de_DecryptCommand).build() {
|
|
3559
|
+
static {
|
|
3560
|
+
__name(this, "DecryptCommand");
|
|
3561
|
+
}
|
|
3499
3562
|
};
|
|
3500
|
-
__name(_DecryptCommand, "DecryptCommand");
|
|
3501
|
-
var DecryptCommand = _DecryptCommand;
|
|
3502
3563
|
|
|
3503
3564
|
// src/commands/DeleteAliasCommand.ts
|
|
3504
3565
|
|
|
3505
3566
|
|
|
3506
3567
|
|
|
3507
|
-
var
|
|
3568
|
+
var DeleteAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3508
3569
|
return [
|
|
3509
3570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3510
3571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3511
3572
|
];
|
|
3512
3573
|
}).s("TrentService", "DeleteAlias", {}).n("KMSClient", "DeleteAliasCommand").f(void 0, void 0).ser(se_DeleteAliasCommand).de(de_DeleteAliasCommand).build() {
|
|
3574
|
+
static {
|
|
3575
|
+
__name(this, "DeleteAliasCommand");
|
|
3576
|
+
}
|
|
3513
3577
|
};
|
|
3514
|
-
__name(_DeleteAliasCommand, "DeleteAliasCommand");
|
|
3515
|
-
var DeleteAliasCommand = _DeleteAliasCommand;
|
|
3516
3578
|
|
|
3517
3579
|
// src/commands/DeleteCustomKeyStoreCommand.ts
|
|
3518
3580
|
|
|
3519
3581
|
|
|
3520
3582
|
|
|
3521
|
-
var
|
|
3583
|
+
var DeleteCustomKeyStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3522
3584
|
return [
|
|
3523
3585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3524
3586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3525
3587
|
];
|
|
3526
3588
|
}).s("TrentService", "DeleteCustomKeyStore", {}).n("KMSClient", "DeleteCustomKeyStoreCommand").f(void 0, void 0).ser(se_DeleteCustomKeyStoreCommand).de(de_DeleteCustomKeyStoreCommand).build() {
|
|
3589
|
+
static {
|
|
3590
|
+
__name(this, "DeleteCustomKeyStoreCommand");
|
|
3591
|
+
}
|
|
3527
3592
|
};
|
|
3528
|
-
__name(_DeleteCustomKeyStoreCommand, "DeleteCustomKeyStoreCommand");
|
|
3529
|
-
var DeleteCustomKeyStoreCommand = _DeleteCustomKeyStoreCommand;
|
|
3530
3593
|
|
|
3531
3594
|
// src/commands/DeleteImportedKeyMaterialCommand.ts
|
|
3532
3595
|
|
|
3533
3596
|
|
|
3534
3597
|
|
|
3535
|
-
var
|
|
3598
|
+
var DeleteImportedKeyMaterialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3536
3599
|
return [
|
|
3537
3600
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3538
3601
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3539
3602
|
];
|
|
3540
3603
|
}).s("TrentService", "DeleteImportedKeyMaterial", {}).n("KMSClient", "DeleteImportedKeyMaterialCommand").f(void 0, void 0).ser(se_DeleteImportedKeyMaterialCommand).de(de_DeleteImportedKeyMaterialCommand).build() {
|
|
3604
|
+
static {
|
|
3605
|
+
__name(this, "DeleteImportedKeyMaterialCommand");
|
|
3606
|
+
}
|
|
3541
3607
|
};
|
|
3542
|
-
__name(_DeleteImportedKeyMaterialCommand, "DeleteImportedKeyMaterialCommand");
|
|
3543
|
-
var DeleteImportedKeyMaterialCommand = _DeleteImportedKeyMaterialCommand;
|
|
3544
3608
|
|
|
3545
3609
|
// src/commands/DeriveSharedSecretCommand.ts
|
|
3546
3610
|
|
|
3547
3611
|
|
|
3548
3612
|
|
|
3549
|
-
var
|
|
3613
|
+
var DeriveSharedSecretCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3550
3614
|
return [
|
|
3551
3615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3552
3616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3553
3617
|
];
|
|
3554
3618
|
}).s("TrentService", "DeriveSharedSecret", {}).n("KMSClient", "DeriveSharedSecretCommand").f(void 0, DeriveSharedSecretResponseFilterSensitiveLog).ser(se_DeriveSharedSecretCommand).de(de_DeriveSharedSecretCommand).build() {
|
|
3619
|
+
static {
|
|
3620
|
+
__name(this, "DeriveSharedSecretCommand");
|
|
3621
|
+
}
|
|
3555
3622
|
};
|
|
3556
|
-
__name(_DeriveSharedSecretCommand, "DeriveSharedSecretCommand");
|
|
3557
|
-
var DeriveSharedSecretCommand = _DeriveSharedSecretCommand;
|
|
3558
3623
|
|
|
3559
3624
|
// src/commands/DescribeCustomKeyStoresCommand.ts
|
|
3560
3625
|
|
|
3561
3626
|
|
|
3562
3627
|
|
|
3563
|
-
var
|
|
3628
|
+
var DescribeCustomKeyStoresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3564
3629
|
return [
|
|
3565
3630
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3566
3631
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3567
3632
|
];
|
|
3568
3633
|
}).s("TrentService", "DescribeCustomKeyStores", {}).n("KMSClient", "DescribeCustomKeyStoresCommand").f(void 0, DescribeCustomKeyStoresResponseFilterSensitiveLog).ser(se_DescribeCustomKeyStoresCommand).de(de_DescribeCustomKeyStoresCommand).build() {
|
|
3634
|
+
static {
|
|
3635
|
+
__name(this, "DescribeCustomKeyStoresCommand");
|
|
3636
|
+
}
|
|
3569
3637
|
};
|
|
3570
|
-
__name(_DescribeCustomKeyStoresCommand, "DescribeCustomKeyStoresCommand");
|
|
3571
|
-
var DescribeCustomKeyStoresCommand = _DescribeCustomKeyStoresCommand;
|
|
3572
3638
|
|
|
3573
3639
|
// src/commands/DescribeKeyCommand.ts
|
|
3574
3640
|
|
|
3575
3641
|
|
|
3576
3642
|
|
|
3577
|
-
var
|
|
3643
|
+
var DescribeKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3578
3644
|
return [
|
|
3579
3645
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3580
3646
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3581
3647
|
];
|
|
3582
3648
|
}).s("TrentService", "DescribeKey", {}).n("KMSClient", "DescribeKeyCommand").f(void 0, void 0).ser(se_DescribeKeyCommand).de(de_DescribeKeyCommand).build() {
|
|
3649
|
+
static {
|
|
3650
|
+
__name(this, "DescribeKeyCommand");
|
|
3651
|
+
}
|
|
3583
3652
|
};
|
|
3584
|
-
__name(_DescribeKeyCommand, "DescribeKeyCommand");
|
|
3585
|
-
var DescribeKeyCommand = _DescribeKeyCommand;
|
|
3586
3653
|
|
|
3587
3654
|
// src/commands/DisableKeyCommand.ts
|
|
3588
3655
|
|
|
3589
3656
|
|
|
3590
3657
|
|
|
3591
|
-
var
|
|
3658
|
+
var DisableKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3592
3659
|
return [
|
|
3593
3660
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3594
3661
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3595
3662
|
];
|
|
3596
3663
|
}).s("TrentService", "DisableKey", {}).n("KMSClient", "DisableKeyCommand").f(void 0, void 0).ser(se_DisableKeyCommand).de(de_DisableKeyCommand).build() {
|
|
3664
|
+
static {
|
|
3665
|
+
__name(this, "DisableKeyCommand");
|
|
3666
|
+
}
|
|
3597
3667
|
};
|
|
3598
|
-
__name(_DisableKeyCommand, "DisableKeyCommand");
|
|
3599
|
-
var DisableKeyCommand = _DisableKeyCommand;
|
|
3600
3668
|
|
|
3601
3669
|
// src/commands/DisableKeyRotationCommand.ts
|
|
3602
3670
|
|
|
3603
3671
|
|
|
3604
3672
|
|
|
3605
|
-
var
|
|
3673
|
+
var DisableKeyRotationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3606
3674
|
return [
|
|
3607
3675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3608
3676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3609
3677
|
];
|
|
3610
3678
|
}).s("TrentService", "DisableKeyRotation", {}).n("KMSClient", "DisableKeyRotationCommand").f(void 0, void 0).ser(se_DisableKeyRotationCommand).de(de_DisableKeyRotationCommand).build() {
|
|
3679
|
+
static {
|
|
3680
|
+
__name(this, "DisableKeyRotationCommand");
|
|
3681
|
+
}
|
|
3611
3682
|
};
|
|
3612
|
-
__name(_DisableKeyRotationCommand, "DisableKeyRotationCommand");
|
|
3613
|
-
var DisableKeyRotationCommand = _DisableKeyRotationCommand;
|
|
3614
3683
|
|
|
3615
3684
|
// src/commands/DisconnectCustomKeyStoreCommand.ts
|
|
3616
3685
|
|
|
3617
3686
|
|
|
3618
3687
|
|
|
3619
|
-
var
|
|
3688
|
+
var DisconnectCustomKeyStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3620
3689
|
return [
|
|
3621
3690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3622
3691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3623
3692
|
];
|
|
3624
3693
|
}).s("TrentService", "DisconnectCustomKeyStore", {}).n("KMSClient", "DisconnectCustomKeyStoreCommand").f(void 0, void 0).ser(se_DisconnectCustomKeyStoreCommand).de(de_DisconnectCustomKeyStoreCommand).build() {
|
|
3694
|
+
static {
|
|
3695
|
+
__name(this, "DisconnectCustomKeyStoreCommand");
|
|
3696
|
+
}
|
|
3625
3697
|
};
|
|
3626
|
-
__name(_DisconnectCustomKeyStoreCommand, "DisconnectCustomKeyStoreCommand");
|
|
3627
|
-
var DisconnectCustomKeyStoreCommand = _DisconnectCustomKeyStoreCommand;
|
|
3628
3698
|
|
|
3629
3699
|
// src/commands/EnableKeyCommand.ts
|
|
3630
3700
|
|
|
3631
3701
|
|
|
3632
3702
|
|
|
3633
|
-
var
|
|
3703
|
+
var EnableKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3634
3704
|
return [
|
|
3635
3705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3636
3706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3637
3707
|
];
|
|
3638
3708
|
}).s("TrentService", "EnableKey", {}).n("KMSClient", "EnableKeyCommand").f(void 0, void 0).ser(se_EnableKeyCommand).de(de_EnableKeyCommand).build() {
|
|
3709
|
+
static {
|
|
3710
|
+
__name(this, "EnableKeyCommand");
|
|
3711
|
+
}
|
|
3639
3712
|
};
|
|
3640
|
-
__name(_EnableKeyCommand, "EnableKeyCommand");
|
|
3641
|
-
var EnableKeyCommand = _EnableKeyCommand;
|
|
3642
3713
|
|
|
3643
3714
|
// src/commands/EnableKeyRotationCommand.ts
|
|
3644
3715
|
|
|
3645
3716
|
|
|
3646
3717
|
|
|
3647
|
-
var
|
|
3718
|
+
var EnableKeyRotationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3648
3719
|
return [
|
|
3649
3720
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3650
3721
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3651
3722
|
];
|
|
3652
3723
|
}).s("TrentService", "EnableKeyRotation", {}).n("KMSClient", "EnableKeyRotationCommand").f(void 0, void 0).ser(se_EnableKeyRotationCommand).de(de_EnableKeyRotationCommand).build() {
|
|
3724
|
+
static {
|
|
3725
|
+
__name(this, "EnableKeyRotationCommand");
|
|
3726
|
+
}
|
|
3653
3727
|
};
|
|
3654
|
-
__name(_EnableKeyRotationCommand, "EnableKeyRotationCommand");
|
|
3655
|
-
var EnableKeyRotationCommand = _EnableKeyRotationCommand;
|
|
3656
3728
|
|
|
3657
3729
|
// src/commands/EncryptCommand.ts
|
|
3658
3730
|
|
|
3659
3731
|
|
|
3660
3732
|
|
|
3661
|
-
var
|
|
3733
|
+
var EncryptCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3662
3734
|
return [
|
|
3663
3735
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3664
3736
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3665
3737
|
];
|
|
3666
3738
|
}).s("TrentService", "Encrypt", {}).n("KMSClient", "EncryptCommand").f(EncryptRequestFilterSensitiveLog, void 0).ser(se_EncryptCommand).de(de_EncryptCommand).build() {
|
|
3739
|
+
static {
|
|
3740
|
+
__name(this, "EncryptCommand");
|
|
3741
|
+
}
|
|
3667
3742
|
};
|
|
3668
|
-
__name(_EncryptCommand, "EncryptCommand");
|
|
3669
|
-
var EncryptCommand = _EncryptCommand;
|
|
3670
3743
|
|
|
3671
3744
|
// src/commands/GenerateDataKeyCommand.ts
|
|
3672
3745
|
|
|
3673
3746
|
|
|
3674
3747
|
|
|
3675
|
-
var
|
|
3748
|
+
var GenerateDataKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3676
3749
|
return [
|
|
3677
3750
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3678
3751
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3679
3752
|
];
|
|
3680
3753
|
}).s("TrentService", "GenerateDataKey", {}).n("KMSClient", "GenerateDataKeyCommand").f(void 0, GenerateDataKeyResponseFilterSensitiveLog).ser(se_GenerateDataKeyCommand).de(de_GenerateDataKeyCommand).build() {
|
|
3754
|
+
static {
|
|
3755
|
+
__name(this, "GenerateDataKeyCommand");
|
|
3756
|
+
}
|
|
3681
3757
|
};
|
|
3682
|
-
__name(_GenerateDataKeyCommand, "GenerateDataKeyCommand");
|
|
3683
|
-
var GenerateDataKeyCommand = _GenerateDataKeyCommand;
|
|
3684
3758
|
|
|
3685
3759
|
// src/commands/GenerateDataKeyPairCommand.ts
|
|
3686
3760
|
|
|
3687
3761
|
|
|
3688
3762
|
|
|
3689
|
-
var
|
|
3763
|
+
var GenerateDataKeyPairCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3690
3764
|
return [
|
|
3691
3765
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3692
3766
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3693
3767
|
];
|
|
3694
3768
|
}).s("TrentService", "GenerateDataKeyPair", {}).n("KMSClient", "GenerateDataKeyPairCommand").f(void 0, GenerateDataKeyPairResponseFilterSensitiveLog).ser(se_GenerateDataKeyPairCommand).de(de_GenerateDataKeyPairCommand).build() {
|
|
3769
|
+
static {
|
|
3770
|
+
__name(this, "GenerateDataKeyPairCommand");
|
|
3771
|
+
}
|
|
3695
3772
|
};
|
|
3696
|
-
__name(_GenerateDataKeyPairCommand, "GenerateDataKeyPairCommand");
|
|
3697
|
-
var GenerateDataKeyPairCommand = _GenerateDataKeyPairCommand;
|
|
3698
3773
|
|
|
3699
3774
|
// src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts
|
|
3700
3775
|
|
|
3701
3776
|
|
|
3702
3777
|
|
|
3703
|
-
var
|
|
3778
|
+
var GenerateDataKeyPairWithoutPlaintextCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3704
3779
|
return [
|
|
3705
3780
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3706
3781
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3707
3782
|
];
|
|
3708
3783
|
}).s("TrentService", "GenerateDataKeyPairWithoutPlaintext", {}).n("KMSClient", "GenerateDataKeyPairWithoutPlaintextCommand").f(void 0, void 0).ser(se_GenerateDataKeyPairWithoutPlaintextCommand).de(de_GenerateDataKeyPairWithoutPlaintextCommand).build() {
|
|
3784
|
+
static {
|
|
3785
|
+
__name(this, "GenerateDataKeyPairWithoutPlaintextCommand");
|
|
3786
|
+
}
|
|
3709
3787
|
};
|
|
3710
|
-
__name(_GenerateDataKeyPairWithoutPlaintextCommand, "GenerateDataKeyPairWithoutPlaintextCommand");
|
|
3711
|
-
var GenerateDataKeyPairWithoutPlaintextCommand = _GenerateDataKeyPairWithoutPlaintextCommand;
|
|
3712
3788
|
|
|
3713
3789
|
// src/commands/GenerateDataKeyWithoutPlaintextCommand.ts
|
|
3714
3790
|
|
|
3715
3791
|
|
|
3716
3792
|
|
|
3717
|
-
var
|
|
3793
|
+
var GenerateDataKeyWithoutPlaintextCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3718
3794
|
return [
|
|
3719
3795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3720
3796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3721
3797
|
];
|
|
3722
3798
|
}).s("TrentService", "GenerateDataKeyWithoutPlaintext", {}).n("KMSClient", "GenerateDataKeyWithoutPlaintextCommand").f(void 0, void 0).ser(se_GenerateDataKeyWithoutPlaintextCommand).de(de_GenerateDataKeyWithoutPlaintextCommand).build() {
|
|
3799
|
+
static {
|
|
3800
|
+
__name(this, "GenerateDataKeyWithoutPlaintextCommand");
|
|
3801
|
+
}
|
|
3723
3802
|
};
|
|
3724
|
-
__name(_GenerateDataKeyWithoutPlaintextCommand, "GenerateDataKeyWithoutPlaintextCommand");
|
|
3725
|
-
var GenerateDataKeyWithoutPlaintextCommand = _GenerateDataKeyWithoutPlaintextCommand;
|
|
3726
3803
|
|
|
3727
3804
|
// src/commands/GenerateMacCommand.ts
|
|
3728
3805
|
|
|
3729
3806
|
|
|
3730
3807
|
|
|
3731
|
-
var
|
|
3808
|
+
var GenerateMacCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3732
3809
|
return [
|
|
3733
3810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3734
3811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3735
3812
|
];
|
|
3736
3813
|
}).s("TrentService", "GenerateMac", {}).n("KMSClient", "GenerateMacCommand").f(GenerateMacRequestFilterSensitiveLog, void 0).ser(se_GenerateMacCommand).de(de_GenerateMacCommand).build() {
|
|
3814
|
+
static {
|
|
3815
|
+
__name(this, "GenerateMacCommand");
|
|
3816
|
+
}
|
|
3737
3817
|
};
|
|
3738
|
-
__name(_GenerateMacCommand, "GenerateMacCommand");
|
|
3739
|
-
var GenerateMacCommand = _GenerateMacCommand;
|
|
3740
3818
|
|
|
3741
3819
|
// src/commands/GenerateRandomCommand.ts
|
|
3742
3820
|
|
|
3743
3821
|
|
|
3744
3822
|
|
|
3745
|
-
var
|
|
3823
|
+
var GenerateRandomCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3746
3824
|
return [
|
|
3747
3825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3748
3826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3749
3827
|
];
|
|
3750
3828
|
}).s("TrentService", "GenerateRandom", {}).n("KMSClient", "GenerateRandomCommand").f(void 0, GenerateRandomResponseFilterSensitiveLog).ser(se_GenerateRandomCommand).de(de_GenerateRandomCommand).build() {
|
|
3829
|
+
static {
|
|
3830
|
+
__name(this, "GenerateRandomCommand");
|
|
3831
|
+
}
|
|
3751
3832
|
};
|
|
3752
|
-
__name(_GenerateRandomCommand, "GenerateRandomCommand");
|
|
3753
|
-
var GenerateRandomCommand = _GenerateRandomCommand;
|
|
3754
3833
|
|
|
3755
3834
|
// src/commands/GetKeyPolicyCommand.ts
|
|
3756
3835
|
|
|
3757
3836
|
|
|
3758
3837
|
|
|
3759
|
-
var
|
|
3838
|
+
var GetKeyPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3760
3839
|
return [
|
|
3761
3840
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3762
3841
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3763
3842
|
];
|
|
3764
3843
|
}).s("TrentService", "GetKeyPolicy", {}).n("KMSClient", "GetKeyPolicyCommand").f(void 0, void 0).ser(se_GetKeyPolicyCommand).de(de_GetKeyPolicyCommand).build() {
|
|
3844
|
+
static {
|
|
3845
|
+
__name(this, "GetKeyPolicyCommand");
|
|
3846
|
+
}
|
|
3765
3847
|
};
|
|
3766
|
-
__name(_GetKeyPolicyCommand, "GetKeyPolicyCommand");
|
|
3767
|
-
var GetKeyPolicyCommand = _GetKeyPolicyCommand;
|
|
3768
3848
|
|
|
3769
3849
|
// src/commands/GetKeyRotationStatusCommand.ts
|
|
3770
3850
|
|
|
3771
3851
|
|
|
3772
3852
|
|
|
3773
|
-
var
|
|
3853
|
+
var GetKeyRotationStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3774
3854
|
return [
|
|
3775
3855
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3776
3856
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3777
3857
|
];
|
|
3778
3858
|
}).s("TrentService", "GetKeyRotationStatus", {}).n("KMSClient", "GetKeyRotationStatusCommand").f(void 0, void 0).ser(se_GetKeyRotationStatusCommand).de(de_GetKeyRotationStatusCommand).build() {
|
|
3859
|
+
static {
|
|
3860
|
+
__name(this, "GetKeyRotationStatusCommand");
|
|
3861
|
+
}
|
|
3779
3862
|
};
|
|
3780
|
-
__name(_GetKeyRotationStatusCommand, "GetKeyRotationStatusCommand");
|
|
3781
|
-
var GetKeyRotationStatusCommand = _GetKeyRotationStatusCommand;
|
|
3782
3863
|
|
|
3783
3864
|
// src/commands/GetParametersForImportCommand.ts
|
|
3784
3865
|
|
|
3785
3866
|
|
|
3786
3867
|
|
|
3787
|
-
var
|
|
3868
|
+
var GetParametersForImportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3788
3869
|
return [
|
|
3789
3870
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3790
3871
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3791
3872
|
];
|
|
3792
3873
|
}).s("TrentService", "GetParametersForImport", {}).n("KMSClient", "GetParametersForImportCommand").f(void 0, GetParametersForImportResponseFilterSensitiveLog).ser(se_GetParametersForImportCommand).de(de_GetParametersForImportCommand).build() {
|
|
3874
|
+
static {
|
|
3875
|
+
__name(this, "GetParametersForImportCommand");
|
|
3876
|
+
}
|
|
3793
3877
|
};
|
|
3794
|
-
__name(_GetParametersForImportCommand, "GetParametersForImportCommand");
|
|
3795
|
-
var GetParametersForImportCommand = _GetParametersForImportCommand;
|
|
3796
3878
|
|
|
3797
3879
|
// src/commands/GetPublicKeyCommand.ts
|
|
3798
3880
|
|
|
3799
3881
|
|
|
3800
3882
|
|
|
3801
|
-
var
|
|
3883
|
+
var GetPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3802
3884
|
return [
|
|
3803
3885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3804
3886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3805
3887
|
];
|
|
3806
3888
|
}).s("TrentService", "GetPublicKey", {}).n("KMSClient", "GetPublicKeyCommand").f(void 0, void 0).ser(se_GetPublicKeyCommand).de(de_GetPublicKeyCommand).build() {
|
|
3889
|
+
static {
|
|
3890
|
+
__name(this, "GetPublicKeyCommand");
|
|
3891
|
+
}
|
|
3807
3892
|
};
|
|
3808
|
-
__name(_GetPublicKeyCommand, "GetPublicKeyCommand");
|
|
3809
|
-
var GetPublicKeyCommand = _GetPublicKeyCommand;
|
|
3810
3893
|
|
|
3811
3894
|
// src/commands/ImportKeyMaterialCommand.ts
|
|
3812
3895
|
|
|
3813
3896
|
|
|
3814
3897
|
|
|
3815
|
-
var
|
|
3898
|
+
var ImportKeyMaterialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3816
3899
|
return [
|
|
3817
3900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3818
3901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3819
3902
|
];
|
|
3820
3903
|
}).s("TrentService", "ImportKeyMaterial", {}).n("KMSClient", "ImportKeyMaterialCommand").f(void 0, void 0).ser(se_ImportKeyMaterialCommand).de(de_ImportKeyMaterialCommand).build() {
|
|
3904
|
+
static {
|
|
3905
|
+
__name(this, "ImportKeyMaterialCommand");
|
|
3906
|
+
}
|
|
3821
3907
|
};
|
|
3822
|
-
__name(_ImportKeyMaterialCommand, "ImportKeyMaterialCommand");
|
|
3823
|
-
var ImportKeyMaterialCommand = _ImportKeyMaterialCommand;
|
|
3824
3908
|
|
|
3825
3909
|
// src/commands/ListAliasesCommand.ts
|
|
3826
3910
|
|
|
3827
3911
|
|
|
3828
3912
|
|
|
3829
|
-
var
|
|
3913
|
+
var ListAliasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3830
3914
|
return [
|
|
3831
3915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3832
3916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3833
3917
|
];
|
|
3834
3918
|
}).s("TrentService", "ListAliases", {}).n("KMSClient", "ListAliasesCommand").f(void 0, void 0).ser(se_ListAliasesCommand).de(de_ListAliasesCommand).build() {
|
|
3919
|
+
static {
|
|
3920
|
+
__name(this, "ListAliasesCommand");
|
|
3921
|
+
}
|
|
3835
3922
|
};
|
|
3836
|
-
__name(_ListAliasesCommand, "ListAliasesCommand");
|
|
3837
|
-
var ListAliasesCommand = _ListAliasesCommand;
|
|
3838
3923
|
|
|
3839
3924
|
// src/commands/ListGrantsCommand.ts
|
|
3840
3925
|
|
|
3841
3926
|
|
|
3842
3927
|
|
|
3843
|
-
var
|
|
3928
|
+
var ListGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3844
3929
|
return [
|
|
3845
3930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3846
3931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3847
3932
|
];
|
|
3848
3933
|
}).s("TrentService", "ListGrants", {}).n("KMSClient", "ListGrantsCommand").f(void 0, void 0).ser(se_ListGrantsCommand).de(de_ListGrantsCommand).build() {
|
|
3934
|
+
static {
|
|
3935
|
+
__name(this, "ListGrantsCommand");
|
|
3936
|
+
}
|
|
3849
3937
|
};
|
|
3850
|
-
__name(_ListGrantsCommand, "ListGrantsCommand");
|
|
3851
|
-
var ListGrantsCommand = _ListGrantsCommand;
|
|
3852
3938
|
|
|
3853
3939
|
// src/commands/ListKeyPoliciesCommand.ts
|
|
3854
3940
|
|
|
3855
3941
|
|
|
3856
3942
|
|
|
3857
|
-
var
|
|
3943
|
+
var ListKeyPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3858
3944
|
return [
|
|
3859
3945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3860
3946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3861
3947
|
];
|
|
3862
3948
|
}).s("TrentService", "ListKeyPolicies", {}).n("KMSClient", "ListKeyPoliciesCommand").f(void 0, void 0).ser(se_ListKeyPoliciesCommand).de(de_ListKeyPoliciesCommand).build() {
|
|
3949
|
+
static {
|
|
3950
|
+
__name(this, "ListKeyPoliciesCommand");
|
|
3951
|
+
}
|
|
3863
3952
|
};
|
|
3864
|
-
__name(_ListKeyPoliciesCommand, "ListKeyPoliciesCommand");
|
|
3865
|
-
var ListKeyPoliciesCommand = _ListKeyPoliciesCommand;
|
|
3866
3953
|
|
|
3867
3954
|
// src/commands/ListKeyRotationsCommand.ts
|
|
3868
3955
|
|
|
3869
3956
|
|
|
3870
3957
|
|
|
3871
|
-
var
|
|
3958
|
+
var ListKeyRotationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3872
3959
|
return [
|
|
3873
3960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3874
3961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3875
3962
|
];
|
|
3876
3963
|
}).s("TrentService", "ListKeyRotations", {}).n("KMSClient", "ListKeyRotationsCommand").f(void 0, void 0).ser(se_ListKeyRotationsCommand).de(de_ListKeyRotationsCommand).build() {
|
|
3964
|
+
static {
|
|
3965
|
+
__name(this, "ListKeyRotationsCommand");
|
|
3966
|
+
}
|
|
3877
3967
|
};
|
|
3878
|
-
__name(_ListKeyRotationsCommand, "ListKeyRotationsCommand");
|
|
3879
|
-
var ListKeyRotationsCommand = _ListKeyRotationsCommand;
|
|
3880
3968
|
|
|
3881
3969
|
// src/commands/ListKeysCommand.ts
|
|
3882
3970
|
|
|
3883
3971
|
|
|
3884
3972
|
|
|
3885
|
-
var
|
|
3973
|
+
var ListKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3886
3974
|
return [
|
|
3887
3975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3888
3976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3889
3977
|
];
|
|
3890
3978
|
}).s("TrentService", "ListKeys", {}).n("KMSClient", "ListKeysCommand").f(void 0, void 0).ser(se_ListKeysCommand).de(de_ListKeysCommand).build() {
|
|
3979
|
+
static {
|
|
3980
|
+
__name(this, "ListKeysCommand");
|
|
3981
|
+
}
|
|
3891
3982
|
};
|
|
3892
|
-
__name(_ListKeysCommand, "ListKeysCommand");
|
|
3893
|
-
var ListKeysCommand = _ListKeysCommand;
|
|
3894
3983
|
|
|
3895
3984
|
// src/commands/ListResourceTagsCommand.ts
|
|
3896
3985
|
|
|
3897
3986
|
|
|
3898
3987
|
|
|
3899
|
-
var
|
|
3988
|
+
var ListResourceTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3900
3989
|
return [
|
|
3901
3990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3902
3991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3903
3992
|
];
|
|
3904
3993
|
}).s("TrentService", "ListResourceTags", {}).n("KMSClient", "ListResourceTagsCommand").f(void 0, void 0).ser(se_ListResourceTagsCommand).de(de_ListResourceTagsCommand).build() {
|
|
3994
|
+
static {
|
|
3995
|
+
__name(this, "ListResourceTagsCommand");
|
|
3996
|
+
}
|
|
3905
3997
|
};
|
|
3906
|
-
__name(_ListResourceTagsCommand, "ListResourceTagsCommand");
|
|
3907
|
-
var ListResourceTagsCommand = _ListResourceTagsCommand;
|
|
3908
3998
|
|
|
3909
3999
|
// src/commands/ListRetirableGrantsCommand.ts
|
|
3910
4000
|
|
|
3911
4001
|
|
|
3912
4002
|
|
|
3913
|
-
var
|
|
4003
|
+
var ListRetirableGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3914
4004
|
return [
|
|
3915
4005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3916
4006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3917
4007
|
];
|
|
3918
4008
|
}).s("TrentService", "ListRetirableGrants", {}).n("KMSClient", "ListRetirableGrantsCommand").f(void 0, void 0).ser(se_ListRetirableGrantsCommand).de(de_ListRetirableGrantsCommand).build() {
|
|
4009
|
+
static {
|
|
4010
|
+
__name(this, "ListRetirableGrantsCommand");
|
|
4011
|
+
}
|
|
3919
4012
|
};
|
|
3920
|
-
__name(_ListRetirableGrantsCommand, "ListRetirableGrantsCommand");
|
|
3921
|
-
var ListRetirableGrantsCommand = _ListRetirableGrantsCommand;
|
|
3922
4013
|
|
|
3923
4014
|
// src/commands/PutKeyPolicyCommand.ts
|
|
3924
4015
|
|
|
3925
4016
|
|
|
3926
4017
|
|
|
3927
|
-
var
|
|
4018
|
+
var PutKeyPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3928
4019
|
return [
|
|
3929
4020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3930
4021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3931
4022
|
];
|
|
3932
4023
|
}).s("TrentService", "PutKeyPolicy", {}).n("KMSClient", "PutKeyPolicyCommand").f(void 0, void 0).ser(se_PutKeyPolicyCommand).de(de_PutKeyPolicyCommand).build() {
|
|
4024
|
+
static {
|
|
4025
|
+
__name(this, "PutKeyPolicyCommand");
|
|
4026
|
+
}
|
|
3933
4027
|
};
|
|
3934
|
-
__name(_PutKeyPolicyCommand, "PutKeyPolicyCommand");
|
|
3935
|
-
var PutKeyPolicyCommand = _PutKeyPolicyCommand;
|
|
3936
4028
|
|
|
3937
4029
|
// src/commands/ReEncryptCommand.ts
|
|
3938
4030
|
|
|
3939
4031
|
|
|
3940
4032
|
|
|
3941
|
-
var
|
|
4033
|
+
var ReEncryptCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3942
4034
|
return [
|
|
3943
4035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3944
4036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3945
4037
|
];
|
|
3946
4038
|
}).s("TrentService", "ReEncrypt", {}).n("KMSClient", "ReEncryptCommand").f(void 0, void 0).ser(se_ReEncryptCommand).de(de_ReEncryptCommand).build() {
|
|
4039
|
+
static {
|
|
4040
|
+
__name(this, "ReEncryptCommand");
|
|
4041
|
+
}
|
|
3947
4042
|
};
|
|
3948
|
-
__name(_ReEncryptCommand, "ReEncryptCommand");
|
|
3949
|
-
var ReEncryptCommand = _ReEncryptCommand;
|
|
3950
4043
|
|
|
3951
4044
|
// src/commands/ReplicateKeyCommand.ts
|
|
3952
4045
|
|
|
3953
4046
|
|
|
3954
4047
|
|
|
3955
|
-
var
|
|
4048
|
+
var ReplicateKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3956
4049
|
return [
|
|
3957
4050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3958
4051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3959
4052
|
];
|
|
3960
4053
|
}).s("TrentService", "ReplicateKey", {}).n("KMSClient", "ReplicateKeyCommand").f(void 0, void 0).ser(se_ReplicateKeyCommand).de(de_ReplicateKeyCommand).build() {
|
|
4054
|
+
static {
|
|
4055
|
+
__name(this, "ReplicateKeyCommand");
|
|
4056
|
+
}
|
|
3961
4057
|
};
|
|
3962
|
-
__name(_ReplicateKeyCommand, "ReplicateKeyCommand");
|
|
3963
|
-
var ReplicateKeyCommand = _ReplicateKeyCommand;
|
|
3964
4058
|
|
|
3965
4059
|
// src/commands/RetireGrantCommand.ts
|
|
3966
4060
|
|
|
3967
4061
|
|
|
3968
4062
|
|
|
3969
|
-
var
|
|
4063
|
+
var RetireGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3970
4064
|
return [
|
|
3971
4065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3972
4066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3973
4067
|
];
|
|
3974
4068
|
}).s("TrentService", "RetireGrant", {}).n("KMSClient", "RetireGrantCommand").f(void 0, void 0).ser(se_RetireGrantCommand).de(de_RetireGrantCommand).build() {
|
|
4069
|
+
static {
|
|
4070
|
+
__name(this, "RetireGrantCommand");
|
|
4071
|
+
}
|
|
3975
4072
|
};
|
|
3976
|
-
__name(_RetireGrantCommand, "RetireGrantCommand");
|
|
3977
|
-
var RetireGrantCommand = _RetireGrantCommand;
|
|
3978
4073
|
|
|
3979
4074
|
// src/commands/RevokeGrantCommand.ts
|
|
3980
4075
|
|
|
3981
4076
|
|
|
3982
4077
|
|
|
3983
|
-
var
|
|
4078
|
+
var RevokeGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3984
4079
|
return [
|
|
3985
4080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3986
4081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3987
4082
|
];
|
|
3988
4083
|
}).s("TrentService", "RevokeGrant", {}).n("KMSClient", "RevokeGrantCommand").f(void 0, void 0).ser(se_RevokeGrantCommand).de(de_RevokeGrantCommand).build() {
|
|
4084
|
+
static {
|
|
4085
|
+
__name(this, "RevokeGrantCommand");
|
|
4086
|
+
}
|
|
3989
4087
|
};
|
|
3990
|
-
__name(_RevokeGrantCommand, "RevokeGrantCommand");
|
|
3991
|
-
var RevokeGrantCommand = _RevokeGrantCommand;
|
|
3992
4088
|
|
|
3993
4089
|
// src/commands/RotateKeyOnDemandCommand.ts
|
|
3994
4090
|
|
|
3995
4091
|
|
|
3996
4092
|
|
|
3997
|
-
var
|
|
4093
|
+
var RotateKeyOnDemandCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3998
4094
|
return [
|
|
3999
4095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4000
4096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4001
4097
|
];
|
|
4002
4098
|
}).s("TrentService", "RotateKeyOnDemand", {}).n("KMSClient", "RotateKeyOnDemandCommand").f(void 0, void 0).ser(se_RotateKeyOnDemandCommand).de(de_RotateKeyOnDemandCommand).build() {
|
|
4099
|
+
static {
|
|
4100
|
+
__name(this, "RotateKeyOnDemandCommand");
|
|
4101
|
+
}
|
|
4003
4102
|
};
|
|
4004
|
-
__name(_RotateKeyOnDemandCommand, "RotateKeyOnDemandCommand");
|
|
4005
|
-
var RotateKeyOnDemandCommand = _RotateKeyOnDemandCommand;
|
|
4006
4103
|
|
|
4007
4104
|
// src/commands/ScheduleKeyDeletionCommand.ts
|
|
4008
4105
|
|
|
4009
4106
|
|
|
4010
4107
|
|
|
4011
|
-
var
|
|
4108
|
+
var ScheduleKeyDeletionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4012
4109
|
return [
|
|
4013
4110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4014
4111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4015
4112
|
];
|
|
4016
4113
|
}).s("TrentService", "ScheduleKeyDeletion", {}).n("KMSClient", "ScheduleKeyDeletionCommand").f(void 0, void 0).ser(se_ScheduleKeyDeletionCommand).de(de_ScheduleKeyDeletionCommand).build() {
|
|
4114
|
+
static {
|
|
4115
|
+
__name(this, "ScheduleKeyDeletionCommand");
|
|
4116
|
+
}
|
|
4017
4117
|
};
|
|
4018
|
-
__name(_ScheduleKeyDeletionCommand, "ScheduleKeyDeletionCommand");
|
|
4019
|
-
var ScheduleKeyDeletionCommand = _ScheduleKeyDeletionCommand;
|
|
4020
4118
|
|
|
4021
4119
|
// src/commands/SignCommand.ts
|
|
4022
4120
|
|
|
4023
4121
|
|
|
4024
4122
|
|
|
4025
|
-
var
|
|
4123
|
+
var SignCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4026
4124
|
return [
|
|
4027
4125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4028
4126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4029
4127
|
];
|
|
4030
4128
|
}).s("TrentService", "Sign", {}).n("KMSClient", "SignCommand").f(SignRequestFilterSensitiveLog, void 0).ser(se_SignCommand).de(de_SignCommand).build() {
|
|
4129
|
+
static {
|
|
4130
|
+
__name(this, "SignCommand");
|
|
4131
|
+
}
|
|
4031
4132
|
};
|
|
4032
|
-
__name(_SignCommand, "SignCommand");
|
|
4033
|
-
var SignCommand = _SignCommand;
|
|
4034
4133
|
|
|
4035
4134
|
// src/commands/TagResourceCommand.ts
|
|
4036
4135
|
|
|
4037
4136
|
|
|
4038
4137
|
|
|
4039
|
-
var
|
|
4138
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4040
4139
|
return [
|
|
4041
4140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4042
4141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4043
4142
|
];
|
|
4044
4143
|
}).s("TrentService", "TagResource", {}).n("KMSClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4144
|
+
static {
|
|
4145
|
+
__name(this, "TagResourceCommand");
|
|
4146
|
+
}
|
|
4045
4147
|
};
|
|
4046
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4047
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4048
4148
|
|
|
4049
4149
|
// src/commands/UntagResourceCommand.ts
|
|
4050
4150
|
|
|
4051
4151
|
|
|
4052
4152
|
|
|
4053
|
-
var
|
|
4153
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4054
4154
|
return [
|
|
4055
4155
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4056
4156
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4057
4157
|
];
|
|
4058
4158
|
}).s("TrentService", "UntagResource", {}).n("KMSClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4159
|
+
static {
|
|
4160
|
+
__name(this, "UntagResourceCommand");
|
|
4161
|
+
}
|
|
4059
4162
|
};
|
|
4060
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4061
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4062
4163
|
|
|
4063
4164
|
// src/commands/UpdateAliasCommand.ts
|
|
4064
4165
|
|
|
4065
4166
|
|
|
4066
4167
|
|
|
4067
|
-
var
|
|
4168
|
+
var UpdateAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4068
4169
|
return [
|
|
4069
4170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4070
4171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4071
4172
|
];
|
|
4072
4173
|
}).s("TrentService", "UpdateAlias", {}).n("KMSClient", "UpdateAliasCommand").f(void 0, void 0).ser(se_UpdateAliasCommand).de(de_UpdateAliasCommand).build() {
|
|
4174
|
+
static {
|
|
4175
|
+
__name(this, "UpdateAliasCommand");
|
|
4176
|
+
}
|
|
4073
4177
|
};
|
|
4074
|
-
__name(_UpdateAliasCommand, "UpdateAliasCommand");
|
|
4075
|
-
var UpdateAliasCommand = _UpdateAliasCommand;
|
|
4076
4178
|
|
|
4077
4179
|
// src/commands/UpdateCustomKeyStoreCommand.ts
|
|
4078
4180
|
|
|
4079
4181
|
|
|
4080
4182
|
|
|
4081
|
-
var
|
|
4183
|
+
var UpdateCustomKeyStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4082
4184
|
return [
|
|
4083
4185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4084
4186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4085
4187
|
];
|
|
4086
4188
|
}).s("TrentService", "UpdateCustomKeyStore", {}).n("KMSClient", "UpdateCustomKeyStoreCommand").f(UpdateCustomKeyStoreRequestFilterSensitiveLog, void 0).ser(se_UpdateCustomKeyStoreCommand).de(de_UpdateCustomKeyStoreCommand).build() {
|
|
4189
|
+
static {
|
|
4190
|
+
__name(this, "UpdateCustomKeyStoreCommand");
|
|
4191
|
+
}
|
|
4087
4192
|
};
|
|
4088
|
-
__name(_UpdateCustomKeyStoreCommand, "UpdateCustomKeyStoreCommand");
|
|
4089
|
-
var UpdateCustomKeyStoreCommand = _UpdateCustomKeyStoreCommand;
|
|
4090
4193
|
|
|
4091
4194
|
// src/commands/UpdateKeyDescriptionCommand.ts
|
|
4092
4195
|
|
|
4093
4196
|
|
|
4094
4197
|
|
|
4095
|
-
var
|
|
4198
|
+
var UpdateKeyDescriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4096
4199
|
return [
|
|
4097
4200
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4098
4201
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4099
4202
|
];
|
|
4100
4203
|
}).s("TrentService", "UpdateKeyDescription", {}).n("KMSClient", "UpdateKeyDescriptionCommand").f(void 0, void 0).ser(se_UpdateKeyDescriptionCommand).de(de_UpdateKeyDescriptionCommand).build() {
|
|
4204
|
+
static {
|
|
4205
|
+
__name(this, "UpdateKeyDescriptionCommand");
|
|
4206
|
+
}
|
|
4101
4207
|
};
|
|
4102
|
-
__name(_UpdateKeyDescriptionCommand, "UpdateKeyDescriptionCommand");
|
|
4103
|
-
var UpdateKeyDescriptionCommand = _UpdateKeyDescriptionCommand;
|
|
4104
4208
|
|
|
4105
4209
|
// src/commands/UpdatePrimaryRegionCommand.ts
|
|
4106
4210
|
|
|
4107
4211
|
|
|
4108
4212
|
|
|
4109
|
-
var
|
|
4213
|
+
var UpdatePrimaryRegionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4110
4214
|
return [
|
|
4111
4215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4112
4216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4113
4217
|
];
|
|
4114
4218
|
}).s("TrentService", "UpdatePrimaryRegion", {}).n("KMSClient", "UpdatePrimaryRegionCommand").f(void 0, void 0).ser(se_UpdatePrimaryRegionCommand).de(de_UpdatePrimaryRegionCommand).build() {
|
|
4219
|
+
static {
|
|
4220
|
+
__name(this, "UpdatePrimaryRegionCommand");
|
|
4221
|
+
}
|
|
4115
4222
|
};
|
|
4116
|
-
__name(_UpdatePrimaryRegionCommand, "UpdatePrimaryRegionCommand");
|
|
4117
|
-
var UpdatePrimaryRegionCommand = _UpdatePrimaryRegionCommand;
|
|
4118
4223
|
|
|
4119
4224
|
// src/commands/VerifyCommand.ts
|
|
4120
4225
|
|
|
4121
4226
|
|
|
4122
4227
|
|
|
4123
|
-
var
|
|
4228
|
+
var VerifyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4124
4229
|
return [
|
|
4125
4230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4126
4231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4127
4232
|
];
|
|
4128
4233
|
}).s("TrentService", "Verify", {}).n("KMSClient", "VerifyCommand").f(VerifyRequestFilterSensitiveLog, void 0).ser(se_VerifyCommand).de(de_VerifyCommand).build() {
|
|
4234
|
+
static {
|
|
4235
|
+
__name(this, "VerifyCommand");
|
|
4236
|
+
}
|
|
4129
4237
|
};
|
|
4130
|
-
__name(_VerifyCommand, "VerifyCommand");
|
|
4131
|
-
var VerifyCommand = _VerifyCommand;
|
|
4132
4238
|
|
|
4133
4239
|
// src/commands/VerifyMacCommand.ts
|
|
4134
4240
|
|
|
4135
4241
|
|
|
4136
4242
|
|
|
4137
|
-
var
|
|
4243
|
+
var VerifyMacCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4138
4244
|
return [
|
|
4139
4245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4140
4246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4141
4247
|
];
|
|
4142
4248
|
}).s("TrentService", "VerifyMac", {}).n("KMSClient", "VerifyMacCommand").f(VerifyMacRequestFilterSensitiveLog, void 0).ser(se_VerifyMacCommand).de(de_VerifyMacCommand).build() {
|
|
4249
|
+
static {
|
|
4250
|
+
__name(this, "VerifyMacCommand");
|
|
4251
|
+
}
|
|
4143
4252
|
};
|
|
4144
|
-
__name(_VerifyMacCommand, "VerifyMacCommand");
|
|
4145
|
-
var VerifyMacCommand = _VerifyMacCommand;
|
|
4146
4253
|
|
|
4147
4254
|
// src/KMS.ts
|
|
4148
4255
|
var commands = {
|
|
@@ -4200,10 +4307,11 @@ var commands = {
|
|
|
4200
4307
|
VerifyCommand,
|
|
4201
4308
|
VerifyMacCommand
|
|
4202
4309
|
};
|
|
4203
|
-
var
|
|
4310
|
+
var KMS = class extends KMSClient {
|
|
4311
|
+
static {
|
|
4312
|
+
__name(this, "KMS");
|
|
4313
|
+
}
|
|
4204
4314
|
};
|
|
4205
|
-
__name(_KMS, "KMS");
|
|
4206
|
-
var KMS = _KMS;
|
|
4207
4315
|
(0, import_smithy_client.createAggregatedClient)(commands, KMS);
|
|
4208
4316
|
|
|
4209
4317
|
// src/pagination/DescribeCustomKeyStoresPaginator.ts
|