@aws-sdk/client-payment-cryptography 3.952.0 → 3.954.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 +402 -223
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AddKeyReplicationRegionsCommand.js +2 -2
- package/dist-es/commands/CreateAliasCommand.js +2 -2
- package/dist-es/commands/CreateKeyCommand.js +2 -2
- package/dist-es/commands/DeleteAliasCommand.js +2 -2
- package/dist-es/commands/DeleteKeyCommand.js +2 -2
- package/dist-es/commands/DisableDefaultKeyReplicationRegionsCommand.js +2 -2
- package/dist-es/commands/EnableDefaultKeyReplicationRegionsCommand.js +2 -2
- package/dist-es/commands/ExportKeyCommand.js +2 -2
- package/dist-es/commands/GetAliasCommand.js +2 -2
- package/dist-es/commands/GetCertificateSigningRequestCommand.js +2 -2
- package/dist-es/commands/GetDefaultKeyReplicationRegionsCommand.js +2 -2
- package/dist-es/commands/GetKeyCommand.js +2 -2
- package/dist-es/commands/GetParametersForExportCommand.js +2 -2
- package/dist-es/commands/GetParametersForImportCommand.js +2 -2
- package/dist-es/commands/GetPublicKeyCertificateCommand.js +2 -2
- package/dist-es/commands/ImportKeyCommand.js +2 -2
- package/dist-es/commands/ListAliasesCommand.js +2 -2
- package/dist-es/commands/ListKeysCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RemoveKeyReplicationRegionsCommand.js +2 -2
- package/dist-es/commands/RestoreKeyCommand.js +2 -2
- package/dist-es/commands/StartKeyUsageCommand.js +2 -2
- package/dist-es/commands/StopKeyUsageCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAliasCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +242 -185
- package/dist-types/PaymentCryptographyClient.d.ts +1 -10
- package/dist-types/commands/ExportKeyCommand.d.ts +4 -0
- package/dist-types/commands/ImportKeyCommand.d.ts +18 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +96 -4
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +115 -127
- package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +114 -129
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class PaymentCryptographyClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class PaymentCryptographyServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, PaymentCryptographyServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends PaymentCryptographyServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends PaymentCryptog
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ConflictException extends PaymentCryptographyServiceException {
|
|
135
135
|
name = "ConflictException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends PaymentCryptographySer
|
|
|
144
144
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
145
|
this.Message = opts.Message;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class InternalServerException extends PaymentCryptographyServiceException {
|
|
149
149
|
name = "InternalServerException";
|
|
150
150
|
$fault = "server";
|
|
151
151
|
Message;
|
|
@@ -158,8 +158,8 @@ let InternalServerException$1 = class InternalServerException extends PaymentCry
|
|
|
158
158
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
159
|
this.Message = opts.Message;
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
|
|
161
|
+
}
|
|
162
|
+
class ResourceNotFoundException extends PaymentCryptographyServiceException {
|
|
163
163
|
name = "ResourceNotFoundException";
|
|
164
164
|
$fault = "client";
|
|
165
165
|
ResourceId;
|
|
@@ -172,8 +172,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Paymen
|
|
|
172
172
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
173
|
this.ResourceId = opts.ResourceId;
|
|
174
174
|
}
|
|
175
|
-
}
|
|
176
|
-
|
|
175
|
+
}
|
|
176
|
+
class ServiceQuotaExceededException extends PaymentCryptographyServiceException {
|
|
177
177
|
name = "ServiceQuotaExceededException";
|
|
178
178
|
$fault = "client";
|
|
179
179
|
Message;
|
|
@@ -186,8 +186,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
186
186
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
187
|
this.Message = opts.Message;
|
|
188
188
|
}
|
|
189
|
-
}
|
|
190
|
-
|
|
189
|
+
}
|
|
190
|
+
class ThrottlingException extends PaymentCryptographyServiceException {
|
|
191
191
|
name = "ThrottlingException";
|
|
192
192
|
$fault = "client";
|
|
193
193
|
Message;
|
|
@@ -200,8 +200,8 @@ let ThrottlingException$1 = class ThrottlingException extends PaymentCryptograph
|
|
|
200
200
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
201
|
this.Message = opts.Message;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class ValidationException extends PaymentCryptographyServiceException {
|
|
205
205
|
name = "ValidationException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
Message;
|
|
@@ -214,8 +214,8 @@ let ValidationException$1 = class ValidationException extends PaymentCryptograph
|
|
|
214
214
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
215
215
|
this.Message = opts.Message;
|
|
216
216
|
}
|
|
217
|
-
}
|
|
218
|
-
|
|
217
|
+
}
|
|
218
|
+
class ServiceUnavailableException extends PaymentCryptographyServiceException {
|
|
219
219
|
name = "ServiceUnavailableException";
|
|
220
220
|
$fault = "server";
|
|
221
221
|
Message;
|
|
@@ -228,13 +228,15 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Pa
|
|
|
228
228
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
229
229
|
this.Message = opts.Message;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
231
|
+
}
|
|
232
232
|
|
|
233
233
|
const _A = "Alias";
|
|
234
234
|
const _ADE = "AccessDeniedException";
|
|
235
|
+
const _AKC = "As2805KeyCryptogram";
|
|
235
236
|
const _AKRR = "AddKeyReplicationRegions";
|
|
236
237
|
const _AKRRI = "AddKeyReplicationRegionsInput";
|
|
237
238
|
const _AKRRO = "AddKeyReplicationRegionsOutput";
|
|
239
|
+
const _AKV = "As2805KeyVariant";
|
|
238
240
|
const _AN = "AliasName";
|
|
239
241
|
const _Al = "Aliases";
|
|
240
242
|
const _C = "City";
|
|
@@ -274,6 +276,7 @@ const _DPT = "DeletePendingTimestamp";
|
|
|
274
276
|
const _DT = "DeleteTimestamp";
|
|
275
277
|
const _E = "Exportable";
|
|
276
278
|
const _EA = "EmailAddress";
|
|
279
|
+
const _EAKC = "ExportAs2805KeyCryptogram";
|
|
277
280
|
const _EAx = "ExportAttributes";
|
|
278
281
|
const _EDHTKB = "ExportDiffieHellmanTr31KeyBlock";
|
|
279
282
|
const _EDIK = "ExportDukptInitialKey";
|
|
@@ -314,6 +317,7 @@ const _GPFIO = "GetParametersForImportOutput";
|
|
|
314
317
|
const _GPKC = "GetPublicKeyCertificate";
|
|
315
318
|
const _GPKCI = "GetPublicKeyCertificateInput";
|
|
316
319
|
const _GPKCO = "GetPublicKeyCertificateOutput";
|
|
320
|
+
const _IAKC = "ImportAs2805KeyCryptogram";
|
|
317
321
|
const _IDHTKB = "ImportDiffieHellmanTr31KeyBlock";
|
|
318
322
|
const _IK = "ImportKey";
|
|
319
323
|
const _IKC = "ImportKeyCryptogram";
|
|
@@ -455,12 +459,12 @@ var OptionalBlockValue = [0, n0, _OBV, 8, 0];
|
|
|
455
459
|
var Tr31WrappedKeyBlock = [0, n0, _TWKB, 8, 0];
|
|
456
460
|
var Tr34WrappedKeyBlock = [0, n0, _TWKBr, 8, 0];
|
|
457
461
|
var WrappedKeyCryptogram = [0, n0, _WKC, 8, 0];
|
|
458
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
459
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
460
|
-
var AddKeyReplicationRegionsInput = [3, n0, _AKRRI, 0, [_KI, _RR], [0, 64 | 0]];
|
|
461
|
-
var AddKeyReplicationRegionsOutput = [3, n0, _AKRRO, 0, [_K], [() => Key]];
|
|
462
|
-
var Alias = [3, n0, _A, 0, [_AN, _KA], [0, 0]];
|
|
463
|
-
var CertificateSubjectType = [
|
|
462
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
463
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
464
|
+
var AddKeyReplicationRegionsInput$ = [3, n0, _AKRRI, 0, [_KI, _RR], [0, 64 | 0]];
|
|
465
|
+
var AddKeyReplicationRegionsOutput$ = [3, n0, _AKRRO, 0, [_K], [() => Key$]];
|
|
466
|
+
var Alias$ = [3, n0, _A, 0, [_AN, _KA], [0, 0]];
|
|
467
|
+
var CertificateSubjectType$ = [
|
|
464
468
|
3,
|
|
465
469
|
n0,
|
|
466
470
|
_CST,
|
|
@@ -468,67 +472,82 @@ var CertificateSubjectType = [
|
|
|
468
472
|
[_CN, _OU, _O, _C, _Co, _SOP, _EA],
|
|
469
473
|
[0, 0, 0, 0, 0, 0, 0],
|
|
470
474
|
];
|
|
471
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
472
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
473
|
-
var CreateAliasInput = [3, n0, _CAI, 0, [_AN, _KA], [0, 0]];
|
|
474
|
-
var CreateAliasOutput = [3, n0, _CAO, 0, [_A], [() => Alias]];
|
|
475
|
-
var CreateKeyInput = [
|
|
475
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
476
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
477
|
+
var CreateAliasInput$ = [3, n0, _CAI, 0, [_AN, _KA], [0, 0]];
|
|
478
|
+
var CreateAliasOutput$ = [3, n0, _CAO, 0, [_A], [() => Alias$]];
|
|
479
|
+
var CreateKeyInput$ = [
|
|
476
480
|
3,
|
|
477
481
|
n0,
|
|
478
482
|
_CKI,
|
|
479
483
|
0,
|
|
480
484
|
[_KAe, _KCVA, _E, _En, _T, _DKU, _RR],
|
|
481
|
-
[() => KeyAttributes
|
|
485
|
+
[() => KeyAttributes$, 0, 2, 2, () => Tags, 0, 64 | 0],
|
|
482
486
|
];
|
|
483
|
-
var CreateKeyOutput = [3, n0, _CKO, 0, [_K], [() => Key]];
|
|
484
|
-
var DeleteAliasInput = [3, n0, _DAI, 0, [_AN], [0]];
|
|
485
|
-
var DeleteAliasOutput = [3, n0, _DAO, 0, [], []];
|
|
486
|
-
var DeleteKeyInput = [3, n0, _DKI, 0, [_KI, _DKID], [0, 1]];
|
|
487
|
-
var DeleteKeyOutput = [3, n0, _DKO, 0, [_K], [() => Key]];
|
|
488
|
-
var DisableDefaultKeyReplicationRegionsInput = [3, n0, _DDKRRI, 0, [_RR], [64 | 0]];
|
|
489
|
-
var DisableDefaultKeyReplicationRegionsOutput = [3, n0, _DDKRRO, 0, [_ERR], [64 | 0]];
|
|
490
|
-
var EnableDefaultKeyReplicationRegionsInput = [3, n0, _EDKRRI, 0, [_RR], [64 | 0]];
|
|
491
|
-
var EnableDefaultKeyReplicationRegionsOutput = [3, n0, _EDKRRO, 0, [_ERR], [64 | 0]];
|
|
492
|
-
var
|
|
493
|
-
var
|
|
487
|
+
var CreateKeyOutput$ = [3, n0, _CKO, 0, [_K], [() => Key$]];
|
|
488
|
+
var DeleteAliasInput$ = [3, n0, _DAI, 0, [_AN], [0]];
|
|
489
|
+
var DeleteAliasOutput$ = [3, n0, _DAO, 0, [], []];
|
|
490
|
+
var DeleteKeyInput$ = [3, n0, _DKI, 0, [_KI, _DKID], [0, 1]];
|
|
491
|
+
var DeleteKeyOutput$ = [3, n0, _DKO, 0, [_K], [() => Key$]];
|
|
492
|
+
var DisableDefaultKeyReplicationRegionsInput$ = [3, n0, _DDKRRI, 0, [_RR], [64 | 0]];
|
|
493
|
+
var DisableDefaultKeyReplicationRegionsOutput$ = [3, n0, _DDKRRO, 0, [_ERR], [64 | 0]];
|
|
494
|
+
var EnableDefaultKeyReplicationRegionsInput$ = [3, n0, _EDKRRI, 0, [_RR], [64 | 0]];
|
|
495
|
+
var EnableDefaultKeyReplicationRegionsOutput$ = [3, n0, _EDKRRO, 0, [_ERR], [64 | 0]];
|
|
496
|
+
var ExportAs2805KeyCryptogram$ = [3, n0, _EAKC, 0, [_WKI, _AKV], [0, 0]];
|
|
497
|
+
var ExportAttributes$ = [
|
|
498
|
+
3,
|
|
499
|
+
n0,
|
|
500
|
+
_EAx,
|
|
501
|
+
0,
|
|
502
|
+
[_EDIK, _KCVA],
|
|
503
|
+
[() => ExportDukptInitialKey$, 0],
|
|
504
|
+
];
|
|
505
|
+
var ExportDiffieHellmanTr31KeyBlock$ = [
|
|
494
506
|
3,
|
|
495
507
|
n0,
|
|
496
508
|
_EDHTKB,
|
|
497
509
|
0,
|
|
498
510
|
[_PKI, _CAPKI, _PKC, _DKA, _KDF, _KDHA, _DD, _KBH],
|
|
499
|
-
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData
|
|
511
|
+
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData$, [() => KeyBlockHeaders$, 0]],
|
|
500
512
|
];
|
|
501
|
-
var ExportDukptInitialKey = [3, n0, _EDIK, 0, [_KSN], [0]];
|
|
502
|
-
var ExportKeyCryptogram = [3, n0, _EKC, 0, [_CAPKI, _WKCr, _WS], [0, 0, 0]];
|
|
503
|
-
var ExportKeyInput = [
|
|
513
|
+
var ExportDukptInitialKey$ = [3, n0, _EDIK, 0, [_KSN], [0]];
|
|
514
|
+
var ExportKeyCryptogram$ = [3, n0, _EKC, 0, [_CAPKI, _WKCr, _WS], [0, 0, 0]];
|
|
515
|
+
var ExportKeyInput$ = [
|
|
504
516
|
3,
|
|
505
517
|
n0,
|
|
506
518
|
_EKI,
|
|
507
519
|
0,
|
|
508
520
|
[_KM, _EKIx, _EAx],
|
|
509
|
-
[[() => ExportKeyMaterial
|
|
521
|
+
[[() => ExportKeyMaterial$, 0], 0, () => ExportAttributes$],
|
|
510
522
|
];
|
|
511
|
-
var ExportKeyOutput = [3, n0, _EKO, 0, [_WK], [[() => WrappedKey
|
|
512
|
-
var ExportTr31KeyBlock = [
|
|
513
|
-
|
|
523
|
+
var ExportKeyOutput$ = [3, n0, _EKO, 0, [_WK], [[() => WrappedKey$, 0]]];
|
|
524
|
+
var ExportTr31KeyBlock$ = [
|
|
525
|
+
3,
|
|
526
|
+
n0,
|
|
527
|
+
_ETKB,
|
|
528
|
+
0,
|
|
529
|
+
[_WKI, _KBH],
|
|
530
|
+
[0, [() => KeyBlockHeaders$, 0]],
|
|
531
|
+
];
|
|
532
|
+
var ExportTr34KeyBlock$ = [
|
|
514
533
|
3,
|
|
515
534
|
n0,
|
|
516
535
|
_ETKBx,
|
|
517
536
|
0,
|
|
518
537
|
[_CAPKI, _WKCr, _ET, _SKI, _SKC, _KBF, _RN, _KBH],
|
|
519
|
-
[0, 0, 0, 0, 0, 0, 0, [() => KeyBlockHeaders
|
|
538
|
+
[0, 0, 0, 0, 0, 0, 0, [() => KeyBlockHeaders$, 0]],
|
|
520
539
|
];
|
|
521
|
-
var GetAliasInput = [3, n0, _GAI, 0, [_AN], [0]];
|
|
522
|
-
var GetAliasOutput = [3, n0, _GAO, 0, [_A], [() => Alias]];
|
|
523
|
-
var GetCertificateSigningRequestInput = [
|
|
540
|
+
var GetAliasInput$ = [3, n0, _GAI, 0, [_AN], [0]];
|
|
541
|
+
var GetAliasOutput$ = [3, n0, _GAO, 0, [_A], [() => Alias$]];
|
|
542
|
+
var GetCertificateSigningRequestInput$ = [
|
|
524
543
|
3,
|
|
525
544
|
n0,
|
|
526
545
|
_GCSRI,
|
|
527
546
|
0,
|
|
528
547
|
[_KI, _SA, _CS],
|
|
529
|
-
[0, 0, () => CertificateSubjectType],
|
|
548
|
+
[0, 0, () => CertificateSubjectType$],
|
|
530
549
|
];
|
|
531
|
-
var GetCertificateSigningRequestOutput = [
|
|
550
|
+
var GetCertificateSigningRequestOutput$ = [
|
|
532
551
|
3,
|
|
533
552
|
n0,
|
|
534
553
|
_GCSRO,
|
|
@@ -536,12 +555,12 @@ var GetCertificateSigningRequestOutput = [
|
|
|
536
555
|
[_CSR],
|
|
537
556
|
[[() => CertificateSigningRequestType, 0]],
|
|
538
557
|
];
|
|
539
|
-
var GetDefaultKeyReplicationRegionsInput = [3, n0, _GDKRRI, 0, [], []];
|
|
540
|
-
var GetDefaultKeyReplicationRegionsOutput = [3, n0, _GDKRRO, 0, [_ERR], [64 | 0]];
|
|
541
|
-
var GetKeyInput = [3, n0, _GKI, 0, [_KI], [0]];
|
|
542
|
-
var GetKeyOutput = [3, n0, _GKO, 0, [_K], [() => Key]];
|
|
543
|
-
var GetParametersForExportInput = [3, n0, _GPFEI, 0, [_KMT, _SKA], [0, 0]];
|
|
544
|
-
var GetParametersForExportOutput = [
|
|
558
|
+
var GetDefaultKeyReplicationRegionsInput$ = [3, n0, _GDKRRI, 0, [], []];
|
|
559
|
+
var GetDefaultKeyReplicationRegionsOutput$ = [3, n0, _GDKRRO, 0, [_ERR], [64 | 0]];
|
|
560
|
+
var GetKeyInput$ = [3, n0, _GKI, 0, [_KI], [0]];
|
|
561
|
+
var GetKeyOutput$ = [3, n0, _GKO, 0, [_K], [() => Key$]];
|
|
562
|
+
var GetParametersForExportInput$ = [3, n0, _GPFEI, 0, [_KMT, _SKA], [0, 0]];
|
|
563
|
+
var GetParametersForExportOutput$ = [
|
|
545
564
|
3,
|
|
546
565
|
n0,
|
|
547
566
|
_GPFEO,
|
|
@@ -549,8 +568,8 @@ var GetParametersForExportOutput = [
|
|
|
549
568
|
[_SKC, _SKCC, _SKA, _ET, _PVUT],
|
|
550
569
|
[0, 0, 0, 0, 4],
|
|
551
570
|
];
|
|
552
|
-
var GetParametersForImportInput = [3, n0, _GPFII, 0, [_KMT, _WKA], [0, 0]];
|
|
553
|
-
var GetParametersForImportOutput = [
|
|
571
|
+
var GetParametersForImportInput$ = [3, n0, _GPFII, 0, [_KMT, _WKA], [0, 0]];
|
|
572
|
+
var GetParametersForImportOutput$ = [
|
|
554
573
|
3,
|
|
555
574
|
n0,
|
|
556
575
|
_GPFIO,
|
|
@@ -558,34 +577,42 @@ var GetParametersForImportOutput = [
|
|
|
558
577
|
[_WKCr, _WKCC, _WKA, _IT, _PVUT],
|
|
559
578
|
[0, 0, 0, 0, 4],
|
|
560
579
|
];
|
|
561
|
-
var GetPublicKeyCertificateInput = [3, n0, _GPKCI, 0, [_KI], [0]];
|
|
562
|
-
var GetPublicKeyCertificateOutput = [3, n0, _GPKCO, 0, [_KC, _KCC], [0, 0]];
|
|
563
|
-
var
|
|
580
|
+
var GetPublicKeyCertificateInput$ = [3, n0, _GPKCI, 0, [_KI], [0]];
|
|
581
|
+
var GetPublicKeyCertificateOutput$ = [3, n0, _GPKCO, 0, [_KC, _KCC], [0, 0]];
|
|
582
|
+
var ImportAs2805KeyCryptogram$ = [
|
|
583
|
+
3,
|
|
584
|
+
n0,
|
|
585
|
+
_IAKC,
|
|
586
|
+
0,
|
|
587
|
+
[_AKV, _KMOU, _KAey, _E, _WKI, _WKC],
|
|
588
|
+
[0, () => KeyModesOfUse$, 0, 2, 0, [() => WrappedKeyCryptogram, 0]],
|
|
589
|
+
];
|
|
590
|
+
var ImportDiffieHellmanTr31KeyBlock$ = [
|
|
564
591
|
3,
|
|
565
592
|
n0,
|
|
566
593
|
_IDHTKB,
|
|
567
594
|
0,
|
|
568
595
|
[_PKI, _CAPKI, _PKC, _DKA, _KDF, _KDHA, _DD, _WKB],
|
|
569
|
-
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData
|
|
596
|
+
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData$, [() => Tr31WrappedKeyBlock, 0]],
|
|
570
597
|
];
|
|
571
|
-
var ImportKeyCryptogram = [
|
|
598
|
+
var ImportKeyCryptogram$ = [
|
|
572
599
|
3,
|
|
573
600
|
n0,
|
|
574
601
|
_IKC,
|
|
575
602
|
0,
|
|
576
603
|
[_KAe, _E, _WKC, _IT, _WS],
|
|
577
|
-
[() => KeyAttributes
|
|
604
|
+
[() => KeyAttributes$, 2, [() => WrappedKeyCryptogram, 0], 0, 0],
|
|
578
605
|
];
|
|
579
|
-
var ImportKeyInput = [
|
|
606
|
+
var ImportKeyInput$ = [
|
|
580
607
|
3,
|
|
581
608
|
n0,
|
|
582
609
|
_IKI,
|
|
583
610
|
0,
|
|
584
611
|
[_KM, _KCVA, _En, _T, _RR],
|
|
585
|
-
[[() => ImportKeyMaterial
|
|
612
|
+
[[() => ImportKeyMaterial$, 0], 0, 2, () => Tags, 64 | 0],
|
|
586
613
|
];
|
|
587
|
-
var ImportKeyOutput = [3, n0, _IKO, 0, [_K], [() => Key]];
|
|
588
|
-
var ImportTr31KeyBlock = [
|
|
614
|
+
var ImportKeyOutput$ = [3, n0, _IKO, 0, [_K], [() => Key$]];
|
|
615
|
+
var ImportTr31KeyBlock$ = [
|
|
589
616
|
3,
|
|
590
617
|
n0,
|
|
591
618
|
_ITKB,
|
|
@@ -593,7 +620,7 @@ var ImportTr31KeyBlock = [
|
|
|
593
620
|
[_WKI, _WKB],
|
|
594
621
|
[0, [() => Tr31WrappedKeyBlock, 0]],
|
|
595
622
|
];
|
|
596
|
-
var ImportTr34KeyBlock = [
|
|
623
|
+
var ImportTr34KeyBlock$ = [
|
|
597
624
|
3,
|
|
598
625
|
n0,
|
|
599
626
|
_ITKBm,
|
|
@@ -601,33 +628,33 @@ var ImportTr34KeyBlock = [
|
|
|
601
628
|
[_CAPKI, _SKC, _IT, _WKI, _WKCr, _WKB, _KBF, _RN],
|
|
602
629
|
[0, 0, 0, 0, 0, [() => Tr34WrappedKeyBlock, 0], 0, 0],
|
|
603
630
|
];
|
|
604
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
605
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
606
|
-
var Key = [
|
|
631
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
632
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
633
|
+
var Key$ = [
|
|
607
634
|
3,
|
|
608
635
|
n0,
|
|
609
636
|
_K,
|
|
610
637
|
0,
|
|
611
638
|
[_KA, _KAe, _KCV, _KCVA, _En, _E, _KS, _KO, _CT, _UST, _USTs, _DPT, _DT, _DKU, _MRKT, _PR, _RS, _UDRR],
|
|
612
|
-
[0, () => KeyAttributes
|
|
639
|
+
[0, () => KeyAttributes$, 0, 0, 2, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, () => ReplicationStatus, 2],
|
|
613
640
|
];
|
|
614
|
-
var KeyAttributes = [
|
|
641
|
+
var KeyAttributes$ = [
|
|
615
642
|
3,
|
|
616
643
|
n0,
|
|
617
644
|
_KAe,
|
|
618
645
|
0,
|
|
619
646
|
[_KU, _KCe, _KAey, _KMOU],
|
|
620
|
-
[0, 0, 0, () => KeyModesOfUse],
|
|
647
|
+
[0, 0, 0, () => KeyModesOfUse$],
|
|
621
648
|
];
|
|
622
|
-
var KeyBlockHeaders = [
|
|
649
|
+
var KeyBlockHeaders$ = [
|
|
623
650
|
3,
|
|
624
651
|
n0,
|
|
625
652
|
_KBH,
|
|
626
653
|
0,
|
|
627
654
|
[_KMOU, _KE, _KV, _OB],
|
|
628
|
-
[() => KeyModesOfUse
|
|
655
|
+
[() => KeyModesOfUse$, 0, 0, [() => OptionalBlocks, 0]],
|
|
629
656
|
];
|
|
630
|
-
var KeyModesOfUse = [
|
|
657
|
+
var KeyModesOfUse$ = [
|
|
631
658
|
3,
|
|
632
659
|
n0,
|
|
633
660
|
_KMOU,
|
|
@@ -635,56 +662,63 @@ var KeyModesOfUse = [
|
|
|
635
662
|
[_Enc, _D, _W, _U, _G, _S, _V, _DK, _NR],
|
|
636
663
|
[2, 2, 2, 2, 2, 2, 2, 2, 2],
|
|
637
664
|
];
|
|
638
|
-
var KeySummary = [
|
|
665
|
+
var KeySummary$ = [
|
|
639
666
|
3,
|
|
640
667
|
n0,
|
|
641
668
|
_KSe,
|
|
642
669
|
0,
|
|
643
670
|
[_KA, _KS, _KAe, _KCV, _E, _En, _MRKT, _PR],
|
|
644
|
-
[0, 0, () => KeyAttributes
|
|
671
|
+
[0, 0, () => KeyAttributes$, 0, 2, 2, 0, 0],
|
|
645
672
|
];
|
|
646
|
-
var ListAliasesInput = [3, n0, _LAI, 0, [_KA, _NT, _MR], [0, 0, 1]];
|
|
647
|
-
var ListAliasesOutput = [3, n0, _LAO, 0, [_Al, _NT], [() => Aliases, 0]];
|
|
648
|
-
var ListKeysInput = [3, n0, _LKI, 0, [_KS, _NT, _MR], [0, 0, 1]];
|
|
649
|
-
var ListKeysOutput = [3, n0, _LKO, 0, [_Ke, _NT], [() => KeySummaryList, 0]];
|
|
650
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA, _NT, _MR], [0, 0, 1]];
|
|
651
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T, _NT], [() => Tags, 0]];
|
|
652
|
-
var RemoveKeyReplicationRegionsInput = [3, n0, _RKRRI, 0, [_KI, _RR], [0, 64 | 0]];
|
|
653
|
-
var RemoveKeyReplicationRegionsOutput = [3, n0, _RKRRO, 0, [_K], [() => Key]];
|
|
654
|
-
var ReplicationStatusType = [3, n0, _RST, 0, [_St, _SM], [0, 0]];
|
|
655
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_RI], [0]];
|
|
656
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
657
|
-
var RestoreKeyInput = [3, n0, _RKI, 0, [_KI], [0]];
|
|
658
|
-
var RestoreKeyOutput = [3, n0, _RKO, 0, [_K], [() => Key]];
|
|
659
|
-
var RootCertificatePublicKey = [
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
var
|
|
668
|
-
|
|
669
|
-
var
|
|
670
|
-
|
|
671
|
-
var
|
|
672
|
-
|
|
673
|
-
var
|
|
673
|
+
var ListAliasesInput$ = [3, n0, _LAI, 0, [_KA, _NT, _MR], [0, 0, 1]];
|
|
674
|
+
var ListAliasesOutput$ = [3, n0, _LAO, 0, [_Al, _NT], [() => Aliases, 0]];
|
|
675
|
+
var ListKeysInput$ = [3, n0, _LKI, 0, [_KS, _NT, _MR], [0, 0, 1]];
|
|
676
|
+
var ListKeysOutput$ = [3, n0, _LKO, 0, [_Ke, _NT], [() => KeySummaryList, 0]];
|
|
677
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RA, _NT, _MR], [0, 0, 1]];
|
|
678
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_T, _NT], [() => Tags, 0]];
|
|
679
|
+
var RemoveKeyReplicationRegionsInput$ = [3, n0, _RKRRI, 0, [_KI, _RR], [0, 64 | 0]];
|
|
680
|
+
var RemoveKeyReplicationRegionsOutput$ = [3, n0, _RKRRO, 0, [_K], [() => Key$]];
|
|
681
|
+
var ReplicationStatusType$ = [3, n0, _RST, 0, [_St, _SM], [0, 0]];
|
|
682
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_RI], [0]];
|
|
683
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
684
|
+
var RestoreKeyInput$ = [3, n0, _RKI, 0, [_KI], [0]];
|
|
685
|
+
var RestoreKeyOutput$ = [3, n0, _RKO, 0, [_K], [() => Key$]];
|
|
686
|
+
var RootCertificatePublicKey$ = [
|
|
687
|
+
3,
|
|
688
|
+
n0,
|
|
689
|
+
_RCPK,
|
|
690
|
+
0,
|
|
691
|
+
[_KAe, _PKC],
|
|
692
|
+
[() => KeyAttributes$, 0],
|
|
693
|
+
];
|
|
694
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
695
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
696
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _s, [_hE]: 503 }, [_M], [0]];
|
|
697
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
698
|
+
var StartKeyUsageInput$ = [3, n0, _SKUI, 0, [_KI], [0]];
|
|
699
|
+
var StartKeyUsageOutput$ = [3, n0, _SKUO, 0, [_K], [() => Key$]];
|
|
700
|
+
var StopKeyUsageInput$ = [3, n0, _SKUIt, 0, [_KI], [0]];
|
|
701
|
+
var StopKeyUsageOutput$ = [3, n0, _SKUOt, 0, [_K], [() => Key$]];
|
|
702
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
|
|
703
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_RA, _T], [0, () => Tags]];
|
|
704
|
+
var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
|
|
705
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
706
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
707
|
+
var TrustedCertificatePublicKey$ = [
|
|
674
708
|
3,
|
|
675
709
|
n0,
|
|
676
710
|
_TCPK,
|
|
677
711
|
0,
|
|
678
712
|
[_KAe, _PKC, _CAPKI],
|
|
679
|
-
[() => KeyAttributes
|
|
713
|
+
[() => KeyAttributes$, 0, 0],
|
|
680
714
|
];
|
|
681
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
682
|
-
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
683
|
-
var UpdateAliasInput = [3, n0, _UAI, 0, [_AN, _KA], [0, 0]];
|
|
684
|
-
var UpdateAliasOutput = [3, n0, _UAO, 0, [_A], [() => Alias]];
|
|
685
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
686
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
687
|
-
var WrappedKey = [
|
|
715
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
716
|
+
var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
|
|
717
|
+
var UpdateAliasInput$ = [3, n0, _UAI, 0, [_AN, _KA], [0, 0]];
|
|
718
|
+
var UpdateAliasOutput$ = [3, n0, _UAO, 0, [_A], [() => Alias$]];
|
|
719
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
720
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
721
|
+
var WrappedKey$ = [
|
|
688
722
|
3,
|
|
689
723
|
n0,
|
|
690
724
|
_WK,
|
|
@@ -692,7 +726,7 @@ var WrappedKey = [
|
|
|
692
726
|
[_WKAr, _WKMF, _KM, _KCV, _KCVA],
|
|
693
727
|
[0, 0, [() => KeyMaterial, 0], 0, 0],
|
|
694
728
|
];
|
|
695
|
-
var PaymentCryptographyServiceException = [
|
|
729
|
+
var PaymentCryptographyServiceException$ = [
|
|
696
730
|
-3,
|
|
697
731
|
_sm,
|
|
698
732
|
"PaymentCryptographyServiceException",
|
|
@@ -700,137 +734,160 @@ var PaymentCryptographyServiceException = [
|
|
|
700
734
|
[],
|
|
701
735
|
[],
|
|
702
736
|
];
|
|
703
|
-
schema.TypeRegistry.for(_sm).registerError(PaymentCryptographyServiceException
|
|
704
|
-
var Aliases = [1, n0, _Al, 0, () => Alias];
|
|
705
|
-
var KeySummaryList = [1, n0, _KSL, 0, () => KeySummary];
|
|
706
|
-
var Tags = [1, n0, _T, 0, () => Tag];
|
|
737
|
+
schema.TypeRegistry.for(_sm).registerError(PaymentCryptographyServiceException$, PaymentCryptographyServiceException);
|
|
738
|
+
var Aliases = [1, n0, _Al, 0, () => Alias$];
|
|
739
|
+
var KeySummaryList = [1, n0, _KSL, 0, () => KeySummary$];
|
|
740
|
+
var Tags = [1, n0, _T, 0, () => Tag$];
|
|
707
741
|
var OptionalBlocks = [2, n0, _OB, 0, [() => OptionalBlockId, 0], [() => OptionalBlockValue, 0]];
|
|
708
|
-
var ReplicationStatus = [2, n0, _RS, 0, 0, () => ReplicationStatusType];
|
|
709
|
-
var DiffieHellmanDerivationData = [3, n0, _DHDD, 0, [_SI], [0]];
|
|
710
|
-
var ExportKeyMaterial = [
|
|
742
|
+
var ReplicationStatus = [2, n0, _RS, 0, 0, () => ReplicationStatusType$];
|
|
743
|
+
var DiffieHellmanDerivationData$ = [3, n0, _DHDD, 0, [_SI], [0]];
|
|
744
|
+
var ExportKeyMaterial$ = [
|
|
711
745
|
3,
|
|
712
746
|
n0,
|
|
713
747
|
_EKM,
|
|
714
748
|
0,
|
|
715
|
-
[_TKB, _TKBr, _KCey, _DHTKB],
|
|
749
|
+
[_TKB, _TKBr, _KCey, _DHTKB, _AKC],
|
|
716
750
|
[
|
|
717
|
-
[() => ExportTr31KeyBlock
|
|
718
|
-
[() => ExportTr34KeyBlock
|
|
719
|
-
() => ExportKeyCryptogram
|
|
720
|
-
[() => ExportDiffieHellmanTr31KeyBlock
|
|
751
|
+
[() => ExportTr31KeyBlock$, 0],
|
|
752
|
+
[() => ExportTr34KeyBlock$, 0],
|
|
753
|
+
() => ExportKeyCryptogram$,
|
|
754
|
+
[() => ExportDiffieHellmanTr31KeyBlock$, 0],
|
|
755
|
+
() => ExportAs2805KeyCryptogram$,
|
|
721
756
|
],
|
|
722
757
|
];
|
|
723
|
-
var ImportKeyMaterial = [
|
|
758
|
+
var ImportKeyMaterial$ = [
|
|
724
759
|
3,
|
|
725
760
|
n0,
|
|
726
761
|
_IKM,
|
|
727
762
|
0,
|
|
728
|
-
[_RCPK, _TCPK, _TKB, _TKBr, _KCey, _DHTKB],
|
|
763
|
+
[_RCPK, _TCPK, _TKB, _TKBr, _KCey, _DHTKB, _AKC],
|
|
729
764
|
[
|
|
730
|
-
() => RootCertificatePublicKey
|
|
731
|
-
() => TrustedCertificatePublicKey
|
|
732
|
-
[() => ImportTr31KeyBlock
|
|
733
|
-
[() => ImportTr34KeyBlock
|
|
734
|
-
[() => ImportKeyCryptogram
|
|
735
|
-
[() => ImportDiffieHellmanTr31KeyBlock
|
|
765
|
+
() => RootCertificatePublicKey$,
|
|
766
|
+
() => TrustedCertificatePublicKey$,
|
|
767
|
+
[() => ImportTr31KeyBlock$, 0],
|
|
768
|
+
[() => ImportTr34KeyBlock$, 0],
|
|
769
|
+
[() => ImportKeyCryptogram$, 0],
|
|
770
|
+
[() => ImportDiffieHellmanTr31KeyBlock$, 0],
|
|
771
|
+
[() => ImportAs2805KeyCryptogram$, 0],
|
|
736
772
|
],
|
|
737
773
|
];
|
|
738
|
-
var AddKeyReplicationRegions = [
|
|
774
|
+
var AddKeyReplicationRegions$ = [
|
|
739
775
|
9,
|
|
740
776
|
n0,
|
|
741
777
|
_AKRR,
|
|
742
778
|
0,
|
|
743
|
-
() => AddKeyReplicationRegionsInput
|
|
744
|
-
() => AddKeyReplicationRegionsOutput
|
|
779
|
+
() => AddKeyReplicationRegionsInput$,
|
|
780
|
+
() => AddKeyReplicationRegionsOutput$,
|
|
745
781
|
];
|
|
746
|
-
var CreateAlias = [9, n0, _CA, 2, () => CreateAliasInput
|
|
747
|
-
var CreateKey = [9, n0, _CK, 0, () => CreateKeyInput
|
|
748
|
-
var DeleteAlias = [9, n0, _DA, 2, () => DeleteAliasInput
|
|
749
|
-
var DeleteKey = [9, n0, _DKe, 2, () => DeleteKeyInput
|
|
750
|
-
var DisableDefaultKeyReplicationRegions = [
|
|
782
|
+
var CreateAlias$ = [9, n0, _CA, 2, () => CreateAliasInput$, () => CreateAliasOutput$];
|
|
783
|
+
var CreateKey$ = [9, n0, _CK, 0, () => CreateKeyInput$, () => CreateKeyOutput$];
|
|
784
|
+
var DeleteAlias$ = [9, n0, _DA, 2, () => DeleteAliasInput$, () => DeleteAliasOutput$];
|
|
785
|
+
var DeleteKey$ = [9, n0, _DKe, 2, () => DeleteKeyInput$, () => DeleteKeyOutput$];
|
|
786
|
+
var DisableDefaultKeyReplicationRegions$ = [
|
|
751
787
|
9,
|
|
752
788
|
n0,
|
|
753
789
|
_DDKRR,
|
|
754
790
|
0,
|
|
755
|
-
() => DisableDefaultKeyReplicationRegionsInput
|
|
756
|
-
() => DisableDefaultKeyReplicationRegionsOutput
|
|
791
|
+
() => DisableDefaultKeyReplicationRegionsInput$,
|
|
792
|
+
() => DisableDefaultKeyReplicationRegionsOutput$,
|
|
757
793
|
];
|
|
758
|
-
var EnableDefaultKeyReplicationRegions = [
|
|
794
|
+
var EnableDefaultKeyReplicationRegions$ = [
|
|
759
795
|
9,
|
|
760
796
|
n0,
|
|
761
797
|
_EDKRR,
|
|
762
798
|
0,
|
|
763
|
-
() => EnableDefaultKeyReplicationRegionsInput
|
|
764
|
-
() => EnableDefaultKeyReplicationRegionsOutput
|
|
799
|
+
() => EnableDefaultKeyReplicationRegionsInput$,
|
|
800
|
+
() => EnableDefaultKeyReplicationRegionsOutput$,
|
|
765
801
|
];
|
|
766
|
-
var ExportKey = [9, n0, _EK, 0, () => ExportKeyInput
|
|
767
|
-
var GetAlias = [9, n0, _GA, 0, () => GetAliasInput
|
|
768
|
-
var GetCertificateSigningRequest = [
|
|
802
|
+
var ExportKey$ = [9, n0, _EK, 0, () => ExportKeyInput$, () => ExportKeyOutput$];
|
|
803
|
+
var GetAlias$ = [9, n0, _GA, 0, () => GetAliasInput$, () => GetAliasOutput$];
|
|
804
|
+
var GetCertificateSigningRequest$ = [
|
|
769
805
|
9,
|
|
770
806
|
n0,
|
|
771
807
|
_GCSR,
|
|
772
808
|
0,
|
|
773
|
-
() => GetCertificateSigningRequestInput
|
|
774
|
-
() => GetCertificateSigningRequestOutput
|
|
809
|
+
() => GetCertificateSigningRequestInput$,
|
|
810
|
+
() => GetCertificateSigningRequestOutput$,
|
|
775
811
|
];
|
|
776
|
-
var GetDefaultKeyReplicationRegions = [
|
|
812
|
+
var GetDefaultKeyReplicationRegions$ = [
|
|
777
813
|
9,
|
|
778
814
|
n0,
|
|
779
815
|
_GDKRR,
|
|
780
816
|
0,
|
|
781
|
-
() => GetDefaultKeyReplicationRegionsInput
|
|
782
|
-
() => GetDefaultKeyReplicationRegionsOutput
|
|
817
|
+
() => GetDefaultKeyReplicationRegionsInput$,
|
|
818
|
+
() => GetDefaultKeyReplicationRegionsOutput$,
|
|
783
819
|
];
|
|
784
|
-
var GetKey = [9, n0, _GK, 0, () => GetKeyInput
|
|
785
|
-
var GetParametersForExport = [
|
|
820
|
+
var GetKey$ = [9, n0, _GK, 0, () => GetKeyInput$, () => GetKeyOutput$];
|
|
821
|
+
var GetParametersForExport$ = [
|
|
786
822
|
9,
|
|
787
823
|
n0,
|
|
788
824
|
_GPFE,
|
|
789
825
|
0,
|
|
790
|
-
() => GetParametersForExportInput
|
|
791
|
-
() => GetParametersForExportOutput
|
|
826
|
+
() => GetParametersForExportInput$,
|
|
827
|
+
() => GetParametersForExportOutput$,
|
|
792
828
|
];
|
|
793
|
-
var GetParametersForImport = [
|
|
829
|
+
var GetParametersForImport$ = [
|
|
794
830
|
9,
|
|
795
831
|
n0,
|
|
796
832
|
_GPFI,
|
|
797
833
|
0,
|
|
798
|
-
() => GetParametersForImportInput
|
|
799
|
-
() => GetParametersForImportOutput
|
|
834
|
+
() => GetParametersForImportInput$,
|
|
835
|
+
() => GetParametersForImportOutput$,
|
|
800
836
|
];
|
|
801
|
-
var GetPublicKeyCertificate = [
|
|
837
|
+
var GetPublicKeyCertificate$ = [
|
|
802
838
|
9,
|
|
803
839
|
n0,
|
|
804
840
|
_GPKC,
|
|
805
841
|
0,
|
|
806
|
-
() => GetPublicKeyCertificateInput
|
|
807
|
-
() => GetPublicKeyCertificateOutput
|
|
842
|
+
() => GetPublicKeyCertificateInput$,
|
|
843
|
+
() => GetPublicKeyCertificateOutput$,
|
|
808
844
|
];
|
|
809
|
-
var ImportKey = [9, n0, _IK, 0, () => ImportKeyInput
|
|
810
|
-
var ListAliases = [9, n0, _LA, 0, () => ListAliasesInput
|
|
811
|
-
var ListKeys = [9, n0, _LK, 0, () => ListKeysInput
|
|
812
|
-
var ListTagsForResource = [
|
|
845
|
+
var ImportKey$ = [9, n0, _IK, 0, () => ImportKeyInput$, () => ImportKeyOutput$];
|
|
846
|
+
var ListAliases$ = [9, n0, _LA, 0, () => ListAliasesInput$, () => ListAliasesOutput$];
|
|
847
|
+
var ListKeys$ = [9, n0, _LK, 0, () => ListKeysInput$, () => ListKeysOutput$];
|
|
848
|
+
var ListTagsForResource$ = [
|
|
813
849
|
9,
|
|
814
850
|
n0,
|
|
815
851
|
_LTFR,
|
|
816
852
|
0,
|
|
817
|
-
() => ListTagsForResourceInput
|
|
818
|
-
() => ListTagsForResourceOutput
|
|
853
|
+
() => ListTagsForResourceInput$,
|
|
854
|
+
() => ListTagsForResourceOutput$,
|
|
819
855
|
];
|
|
820
|
-
var RemoveKeyReplicationRegions = [
|
|
856
|
+
var RemoveKeyReplicationRegions$ = [
|
|
821
857
|
9,
|
|
822
858
|
n0,
|
|
823
859
|
_RKRR,
|
|
824
860
|
0,
|
|
825
|
-
() => RemoveKeyReplicationRegionsInput
|
|
826
|
-
() => RemoveKeyReplicationRegionsOutput
|
|
861
|
+
() => RemoveKeyReplicationRegionsInput$,
|
|
862
|
+
() => RemoveKeyReplicationRegionsOutput$,
|
|
827
863
|
];
|
|
828
|
-
var RestoreKey = [9, n0, _RK, 0, () => RestoreKeyInput
|
|
829
|
-
var StartKeyUsage = [
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
864
|
+
var RestoreKey$ = [9, n0, _RK, 0, () => RestoreKeyInput$, () => RestoreKeyOutput$];
|
|
865
|
+
var StartKeyUsage$ = [
|
|
866
|
+
9,
|
|
867
|
+
n0,
|
|
868
|
+
_SKU,
|
|
869
|
+
0,
|
|
870
|
+
() => StartKeyUsageInput$,
|
|
871
|
+
() => StartKeyUsageOutput$,
|
|
872
|
+
];
|
|
873
|
+
var StopKeyUsage$ = [
|
|
874
|
+
9,
|
|
875
|
+
n0,
|
|
876
|
+
_SKUt,
|
|
877
|
+
0,
|
|
878
|
+
() => StopKeyUsageInput$,
|
|
879
|
+
() => StopKeyUsageOutput$,
|
|
880
|
+
];
|
|
881
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => TagResourceOutput$];
|
|
882
|
+
var UntagResource$ = [
|
|
883
|
+
9,
|
|
884
|
+
n0,
|
|
885
|
+
_UR,
|
|
886
|
+
0,
|
|
887
|
+
() => UntagResourceInput$,
|
|
888
|
+
() => UntagResourceOutput$,
|
|
889
|
+
];
|
|
890
|
+
var UpdateAlias$ = [9, n0, _UA, 0, () => UpdateAliasInput$, () => UpdateAliasOutput$];
|
|
834
891
|
|
|
835
892
|
class AddKeyReplicationRegionsCommand extends smithyClient.Command
|
|
836
893
|
.classBuilder()
|
|
@@ -840,7 +897,7 @@ class AddKeyReplicationRegionsCommand extends smithyClient.Command
|
|
|
840
897
|
})
|
|
841
898
|
.s("PaymentCryptographyControlPlane", "AddKeyReplicationRegions", {})
|
|
842
899
|
.n("PaymentCryptographyClient", "AddKeyReplicationRegionsCommand")
|
|
843
|
-
.sc(AddKeyReplicationRegions)
|
|
900
|
+
.sc(AddKeyReplicationRegions$)
|
|
844
901
|
.build() {
|
|
845
902
|
}
|
|
846
903
|
|
|
@@ -852,7 +909,7 @@ class CreateAliasCommand extends smithyClient.Command
|
|
|
852
909
|
})
|
|
853
910
|
.s("PaymentCryptographyControlPlane", "CreateAlias", {})
|
|
854
911
|
.n("PaymentCryptographyClient", "CreateAliasCommand")
|
|
855
|
-
.sc(CreateAlias)
|
|
912
|
+
.sc(CreateAlias$)
|
|
856
913
|
.build() {
|
|
857
914
|
}
|
|
858
915
|
|
|
@@ -864,7 +921,7 @@ class CreateKeyCommand extends smithyClient.Command
|
|
|
864
921
|
})
|
|
865
922
|
.s("PaymentCryptographyControlPlane", "CreateKey", {})
|
|
866
923
|
.n("PaymentCryptographyClient", "CreateKeyCommand")
|
|
867
|
-
.sc(CreateKey)
|
|
924
|
+
.sc(CreateKey$)
|
|
868
925
|
.build() {
|
|
869
926
|
}
|
|
870
927
|
|
|
@@ -876,7 +933,7 @@ class DeleteAliasCommand extends smithyClient.Command
|
|
|
876
933
|
})
|
|
877
934
|
.s("PaymentCryptographyControlPlane", "DeleteAlias", {})
|
|
878
935
|
.n("PaymentCryptographyClient", "DeleteAliasCommand")
|
|
879
|
-
.sc(DeleteAlias)
|
|
936
|
+
.sc(DeleteAlias$)
|
|
880
937
|
.build() {
|
|
881
938
|
}
|
|
882
939
|
|
|
@@ -888,7 +945,7 @@ class DeleteKeyCommand extends smithyClient.Command
|
|
|
888
945
|
})
|
|
889
946
|
.s("PaymentCryptographyControlPlane", "DeleteKey", {})
|
|
890
947
|
.n("PaymentCryptographyClient", "DeleteKeyCommand")
|
|
891
|
-
.sc(DeleteKey)
|
|
948
|
+
.sc(DeleteKey$)
|
|
892
949
|
.build() {
|
|
893
950
|
}
|
|
894
951
|
|
|
@@ -900,7 +957,7 @@ class DisableDefaultKeyReplicationRegionsCommand extends smithyClient.Command
|
|
|
900
957
|
})
|
|
901
958
|
.s("PaymentCryptographyControlPlane", "DisableDefaultKeyReplicationRegions", {})
|
|
902
959
|
.n("PaymentCryptographyClient", "DisableDefaultKeyReplicationRegionsCommand")
|
|
903
|
-
.sc(DisableDefaultKeyReplicationRegions)
|
|
960
|
+
.sc(DisableDefaultKeyReplicationRegions$)
|
|
904
961
|
.build() {
|
|
905
962
|
}
|
|
906
963
|
|
|
@@ -912,7 +969,7 @@ class EnableDefaultKeyReplicationRegionsCommand extends smithyClient.Command
|
|
|
912
969
|
})
|
|
913
970
|
.s("PaymentCryptographyControlPlane", "EnableDefaultKeyReplicationRegions", {})
|
|
914
971
|
.n("PaymentCryptographyClient", "EnableDefaultKeyReplicationRegionsCommand")
|
|
915
|
-
.sc(EnableDefaultKeyReplicationRegions)
|
|
972
|
+
.sc(EnableDefaultKeyReplicationRegions$)
|
|
916
973
|
.build() {
|
|
917
974
|
}
|
|
918
975
|
|
|
@@ -924,7 +981,7 @@ class ExportKeyCommand extends smithyClient.Command
|
|
|
924
981
|
})
|
|
925
982
|
.s("PaymentCryptographyControlPlane", "ExportKey", {})
|
|
926
983
|
.n("PaymentCryptographyClient", "ExportKeyCommand")
|
|
927
|
-
.sc(ExportKey)
|
|
984
|
+
.sc(ExportKey$)
|
|
928
985
|
.build() {
|
|
929
986
|
}
|
|
930
987
|
|
|
@@ -936,7 +993,7 @@ class GetAliasCommand extends smithyClient.Command
|
|
|
936
993
|
})
|
|
937
994
|
.s("PaymentCryptographyControlPlane", "GetAlias", {})
|
|
938
995
|
.n("PaymentCryptographyClient", "GetAliasCommand")
|
|
939
|
-
.sc(GetAlias)
|
|
996
|
+
.sc(GetAlias$)
|
|
940
997
|
.build() {
|
|
941
998
|
}
|
|
942
999
|
|
|
@@ -948,7 +1005,7 @@ class GetCertificateSigningRequestCommand extends smithyClient.Command
|
|
|
948
1005
|
})
|
|
949
1006
|
.s("PaymentCryptographyControlPlane", "GetCertificateSigningRequest", {})
|
|
950
1007
|
.n("PaymentCryptographyClient", "GetCertificateSigningRequestCommand")
|
|
951
|
-
.sc(GetCertificateSigningRequest)
|
|
1008
|
+
.sc(GetCertificateSigningRequest$)
|
|
952
1009
|
.build() {
|
|
953
1010
|
}
|
|
954
1011
|
|
|
@@ -960,7 +1017,7 @@ class GetDefaultKeyReplicationRegionsCommand extends smithyClient.Command
|
|
|
960
1017
|
})
|
|
961
1018
|
.s("PaymentCryptographyControlPlane", "GetDefaultKeyReplicationRegions", {})
|
|
962
1019
|
.n("PaymentCryptographyClient", "GetDefaultKeyReplicationRegionsCommand")
|
|
963
|
-
.sc(GetDefaultKeyReplicationRegions)
|
|
1020
|
+
.sc(GetDefaultKeyReplicationRegions$)
|
|
964
1021
|
.build() {
|
|
965
1022
|
}
|
|
966
1023
|
|
|
@@ -972,7 +1029,7 @@ class GetKeyCommand extends smithyClient.Command
|
|
|
972
1029
|
})
|
|
973
1030
|
.s("PaymentCryptographyControlPlane", "GetKey", {})
|
|
974
1031
|
.n("PaymentCryptographyClient", "GetKeyCommand")
|
|
975
|
-
.sc(GetKey)
|
|
1032
|
+
.sc(GetKey$)
|
|
976
1033
|
.build() {
|
|
977
1034
|
}
|
|
978
1035
|
|
|
@@ -984,7 +1041,7 @@ class GetParametersForExportCommand extends smithyClient.Command
|
|
|
984
1041
|
})
|
|
985
1042
|
.s("PaymentCryptographyControlPlane", "GetParametersForExport", {})
|
|
986
1043
|
.n("PaymentCryptographyClient", "GetParametersForExportCommand")
|
|
987
|
-
.sc(GetParametersForExport)
|
|
1044
|
+
.sc(GetParametersForExport$)
|
|
988
1045
|
.build() {
|
|
989
1046
|
}
|
|
990
1047
|
|
|
@@ -996,7 +1053,7 @@ class GetParametersForImportCommand extends smithyClient.Command
|
|
|
996
1053
|
})
|
|
997
1054
|
.s("PaymentCryptographyControlPlane", "GetParametersForImport", {})
|
|
998
1055
|
.n("PaymentCryptographyClient", "GetParametersForImportCommand")
|
|
999
|
-
.sc(GetParametersForImport)
|
|
1056
|
+
.sc(GetParametersForImport$)
|
|
1000
1057
|
.build() {
|
|
1001
1058
|
}
|
|
1002
1059
|
|
|
@@ -1008,7 +1065,7 @@ class GetPublicKeyCertificateCommand extends smithyClient.Command
|
|
|
1008
1065
|
})
|
|
1009
1066
|
.s("PaymentCryptographyControlPlane", "GetPublicKeyCertificate", {})
|
|
1010
1067
|
.n("PaymentCryptographyClient", "GetPublicKeyCertificateCommand")
|
|
1011
|
-
.sc(GetPublicKeyCertificate)
|
|
1068
|
+
.sc(GetPublicKeyCertificate$)
|
|
1012
1069
|
.build() {
|
|
1013
1070
|
}
|
|
1014
1071
|
|
|
@@ -1020,7 +1077,7 @@ class ImportKeyCommand extends smithyClient.Command
|
|
|
1020
1077
|
})
|
|
1021
1078
|
.s("PaymentCryptographyControlPlane", "ImportKey", {})
|
|
1022
1079
|
.n("PaymentCryptographyClient", "ImportKeyCommand")
|
|
1023
|
-
.sc(ImportKey)
|
|
1080
|
+
.sc(ImportKey$)
|
|
1024
1081
|
.build() {
|
|
1025
1082
|
}
|
|
1026
1083
|
|
|
@@ -1032,7 +1089,7 @@ class ListAliasesCommand extends smithyClient.Command
|
|
|
1032
1089
|
})
|
|
1033
1090
|
.s("PaymentCryptographyControlPlane", "ListAliases", {})
|
|
1034
1091
|
.n("PaymentCryptographyClient", "ListAliasesCommand")
|
|
1035
|
-
.sc(ListAliases)
|
|
1092
|
+
.sc(ListAliases$)
|
|
1036
1093
|
.build() {
|
|
1037
1094
|
}
|
|
1038
1095
|
|
|
@@ -1044,7 +1101,7 @@ class ListKeysCommand extends smithyClient.Command
|
|
|
1044
1101
|
})
|
|
1045
1102
|
.s("PaymentCryptographyControlPlane", "ListKeys", {})
|
|
1046
1103
|
.n("PaymentCryptographyClient", "ListKeysCommand")
|
|
1047
|
-
.sc(ListKeys)
|
|
1104
|
+
.sc(ListKeys$)
|
|
1048
1105
|
.build() {
|
|
1049
1106
|
}
|
|
1050
1107
|
|
|
@@ -1056,7 +1113,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1056
1113
|
})
|
|
1057
1114
|
.s("PaymentCryptographyControlPlane", "ListTagsForResource", {})
|
|
1058
1115
|
.n("PaymentCryptographyClient", "ListTagsForResourceCommand")
|
|
1059
|
-
.sc(ListTagsForResource)
|
|
1116
|
+
.sc(ListTagsForResource$)
|
|
1060
1117
|
.build() {
|
|
1061
1118
|
}
|
|
1062
1119
|
|
|
@@ -1068,7 +1125,7 @@ class RemoveKeyReplicationRegionsCommand extends smithyClient.Command
|
|
|
1068
1125
|
})
|
|
1069
1126
|
.s("PaymentCryptographyControlPlane", "RemoveKeyReplicationRegions", {})
|
|
1070
1127
|
.n("PaymentCryptographyClient", "RemoveKeyReplicationRegionsCommand")
|
|
1071
|
-
.sc(RemoveKeyReplicationRegions)
|
|
1128
|
+
.sc(RemoveKeyReplicationRegions$)
|
|
1072
1129
|
.build() {
|
|
1073
1130
|
}
|
|
1074
1131
|
|
|
@@ -1080,7 +1137,7 @@ class RestoreKeyCommand extends smithyClient.Command
|
|
|
1080
1137
|
})
|
|
1081
1138
|
.s("PaymentCryptographyControlPlane", "RestoreKey", {})
|
|
1082
1139
|
.n("PaymentCryptographyClient", "RestoreKeyCommand")
|
|
1083
|
-
.sc(RestoreKey)
|
|
1140
|
+
.sc(RestoreKey$)
|
|
1084
1141
|
.build() {
|
|
1085
1142
|
}
|
|
1086
1143
|
|
|
@@ -1092,7 +1149,7 @@ class StartKeyUsageCommand extends smithyClient.Command
|
|
|
1092
1149
|
})
|
|
1093
1150
|
.s("PaymentCryptographyControlPlane", "StartKeyUsage", {})
|
|
1094
1151
|
.n("PaymentCryptographyClient", "StartKeyUsageCommand")
|
|
1095
|
-
.sc(StartKeyUsage)
|
|
1152
|
+
.sc(StartKeyUsage$)
|
|
1096
1153
|
.build() {
|
|
1097
1154
|
}
|
|
1098
1155
|
|
|
@@ -1104,7 +1161,7 @@ class StopKeyUsageCommand extends smithyClient.Command
|
|
|
1104
1161
|
})
|
|
1105
1162
|
.s("PaymentCryptographyControlPlane", "StopKeyUsage", {})
|
|
1106
1163
|
.n("PaymentCryptographyClient", "StopKeyUsageCommand")
|
|
1107
|
-
.sc(StopKeyUsage)
|
|
1164
|
+
.sc(StopKeyUsage$)
|
|
1108
1165
|
.build() {
|
|
1109
1166
|
}
|
|
1110
1167
|
|
|
@@ -1116,7 +1173,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1116
1173
|
})
|
|
1117
1174
|
.s("PaymentCryptographyControlPlane", "TagResource", {})
|
|
1118
1175
|
.n("PaymentCryptographyClient", "TagResourceCommand")
|
|
1119
|
-
.sc(TagResource)
|
|
1176
|
+
.sc(TagResource$)
|
|
1120
1177
|
.build() {
|
|
1121
1178
|
}
|
|
1122
1179
|
|
|
@@ -1128,7 +1185,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1128
1185
|
})
|
|
1129
1186
|
.s("PaymentCryptographyControlPlane", "UntagResource", {})
|
|
1130
1187
|
.n("PaymentCryptographyClient", "UntagResourceCommand")
|
|
1131
|
-
.sc(UntagResource)
|
|
1188
|
+
.sc(UntagResource$)
|
|
1132
1189
|
.build() {
|
|
1133
1190
|
}
|
|
1134
1191
|
|
|
@@ -1140,7 +1197,7 @@ class UpdateAliasCommand extends smithyClient.Command
|
|
|
1140
1197
|
})
|
|
1141
1198
|
.s("PaymentCryptographyControlPlane", "UpdateAlias", {})
|
|
1142
1199
|
.n("PaymentCryptographyClient", "UpdateAliasCommand")
|
|
1143
|
-
.sc(UpdateAlias)
|
|
1200
|
+
.sc(UpdateAlias$)
|
|
1144
1201
|
.build() {
|
|
1145
1202
|
}
|
|
1146
1203
|
|
|
@@ -1241,6 +1298,7 @@ const KeyUsage = {
|
|
|
1241
1298
|
TR31_K1_KEY_BLOCK_PROTECTION_KEY: "TR31_K1_KEY_BLOCK_PROTECTION_KEY",
|
|
1242
1299
|
TR31_K2_TR34_ASYMMETRIC_KEY: "TR31_K2_TR34_ASYMMETRIC_KEY",
|
|
1243
1300
|
TR31_K3_ASYMMETRIC_KEY_FOR_KEY_AGREEMENT: "TR31_K3_ASYMMETRIC_KEY_FOR_KEY_AGREEMENT",
|
|
1301
|
+
TR31_M0_ISO_16609_MAC_KEY: "TR31_M0_ISO_16609_MAC_KEY",
|
|
1244
1302
|
TR31_M1_ISO_9797_1_MAC_KEY: "TR31_M1_ISO_9797_1_MAC_KEY",
|
|
1245
1303
|
TR31_M3_ISO_9797_3_MAC_KEY: "TR31_M3_ISO_9797_3_MAC_KEY",
|
|
1246
1304
|
TR31_M6_ISO_9797_5_CMAC_KEY: "TR31_M6_ISO_9797_5_CMAC_KEY",
|
|
@@ -1277,6 +1335,12 @@ const KeyReplicationState = {
|
|
|
1277
1335
|
IN_PROGRESS: "IN_PROGRESS",
|
|
1278
1336
|
SYNCHRONIZED: "SYNCHRONIZED",
|
|
1279
1337
|
};
|
|
1338
|
+
const As2805KeyVariant = {
|
|
1339
|
+
DATA_ENCRYPTION_KEY_VARIANT_22: "DATA_ENCRYPTION_KEY_VARIANT_22",
|
|
1340
|
+
MESSAGE_AUTHENTICATION_KEY_VARIANT_24: "MESSAGE_AUTHENTICATION_KEY_VARIANT_24",
|
|
1341
|
+
PIN_ENCRYPTION_KEY_VARIANT_28: "PIN_ENCRYPTION_KEY_VARIANT_28",
|
|
1342
|
+
TERMINAL_MAJOR_KEY_VARIANT_00: "TERMINAL_MAJOR_KEY_VARIANT_00",
|
|
1343
|
+
};
|
|
1280
1344
|
const SymmetricKeyAlgorithm = {
|
|
1281
1345
|
AES_128: "AES_128",
|
|
1282
1346
|
AES_192: "AES_192",
|
|
@@ -1336,59 +1400,174 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1336
1400
|
enumerable: true,
|
|
1337
1401
|
get: function () { return smithyClient.Client; }
|
|
1338
1402
|
});
|
|
1339
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1403
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1404
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1405
|
+
exports.AddKeyReplicationRegions$ = AddKeyReplicationRegions$;
|
|
1340
1406
|
exports.AddKeyReplicationRegionsCommand = AddKeyReplicationRegionsCommand;
|
|
1341
|
-
exports.
|
|
1407
|
+
exports.AddKeyReplicationRegionsInput$ = AddKeyReplicationRegionsInput$;
|
|
1408
|
+
exports.AddKeyReplicationRegionsOutput$ = AddKeyReplicationRegionsOutput$;
|
|
1409
|
+
exports.Alias$ = Alias$;
|
|
1410
|
+
exports.As2805KeyVariant = As2805KeyVariant;
|
|
1411
|
+
exports.CertificateSubjectType$ = CertificateSubjectType$;
|
|
1412
|
+
exports.ConflictException = ConflictException;
|
|
1413
|
+
exports.ConflictException$ = ConflictException$;
|
|
1414
|
+
exports.CreateAlias$ = CreateAlias$;
|
|
1342
1415
|
exports.CreateAliasCommand = CreateAliasCommand;
|
|
1416
|
+
exports.CreateAliasInput$ = CreateAliasInput$;
|
|
1417
|
+
exports.CreateAliasOutput$ = CreateAliasOutput$;
|
|
1418
|
+
exports.CreateKey$ = CreateKey$;
|
|
1343
1419
|
exports.CreateKeyCommand = CreateKeyCommand;
|
|
1420
|
+
exports.CreateKeyInput$ = CreateKeyInput$;
|
|
1421
|
+
exports.CreateKeyOutput$ = CreateKeyOutput$;
|
|
1422
|
+
exports.DeleteAlias$ = DeleteAlias$;
|
|
1344
1423
|
exports.DeleteAliasCommand = DeleteAliasCommand;
|
|
1424
|
+
exports.DeleteAliasInput$ = DeleteAliasInput$;
|
|
1425
|
+
exports.DeleteAliasOutput$ = DeleteAliasOutput$;
|
|
1426
|
+
exports.DeleteKey$ = DeleteKey$;
|
|
1345
1427
|
exports.DeleteKeyCommand = DeleteKeyCommand;
|
|
1428
|
+
exports.DeleteKeyInput$ = DeleteKeyInput$;
|
|
1429
|
+
exports.DeleteKeyOutput$ = DeleteKeyOutput$;
|
|
1346
1430
|
exports.DeriveKeyUsage = DeriveKeyUsage;
|
|
1431
|
+
exports.DiffieHellmanDerivationData$ = DiffieHellmanDerivationData$;
|
|
1432
|
+
exports.DisableDefaultKeyReplicationRegions$ = DisableDefaultKeyReplicationRegions$;
|
|
1347
1433
|
exports.DisableDefaultKeyReplicationRegionsCommand = DisableDefaultKeyReplicationRegionsCommand;
|
|
1434
|
+
exports.DisableDefaultKeyReplicationRegionsInput$ = DisableDefaultKeyReplicationRegionsInput$;
|
|
1435
|
+
exports.DisableDefaultKeyReplicationRegionsOutput$ = DisableDefaultKeyReplicationRegionsOutput$;
|
|
1436
|
+
exports.EnableDefaultKeyReplicationRegions$ = EnableDefaultKeyReplicationRegions$;
|
|
1348
1437
|
exports.EnableDefaultKeyReplicationRegionsCommand = EnableDefaultKeyReplicationRegionsCommand;
|
|
1438
|
+
exports.EnableDefaultKeyReplicationRegionsInput$ = EnableDefaultKeyReplicationRegionsInput$;
|
|
1439
|
+
exports.EnableDefaultKeyReplicationRegionsOutput$ = EnableDefaultKeyReplicationRegionsOutput$;
|
|
1440
|
+
exports.ExportAs2805KeyCryptogram$ = ExportAs2805KeyCryptogram$;
|
|
1441
|
+
exports.ExportAttributes$ = ExportAttributes$;
|
|
1442
|
+
exports.ExportDiffieHellmanTr31KeyBlock$ = ExportDiffieHellmanTr31KeyBlock$;
|
|
1443
|
+
exports.ExportDukptInitialKey$ = ExportDukptInitialKey$;
|
|
1444
|
+
exports.ExportKey$ = ExportKey$;
|
|
1349
1445
|
exports.ExportKeyCommand = ExportKeyCommand;
|
|
1446
|
+
exports.ExportKeyCryptogram$ = ExportKeyCryptogram$;
|
|
1447
|
+
exports.ExportKeyInput$ = ExportKeyInput$;
|
|
1448
|
+
exports.ExportKeyMaterial$ = ExportKeyMaterial$;
|
|
1449
|
+
exports.ExportKeyOutput$ = ExportKeyOutput$;
|
|
1450
|
+
exports.ExportTr31KeyBlock$ = ExportTr31KeyBlock$;
|
|
1451
|
+
exports.ExportTr34KeyBlock$ = ExportTr34KeyBlock$;
|
|
1452
|
+
exports.GetAlias$ = GetAlias$;
|
|
1350
1453
|
exports.GetAliasCommand = GetAliasCommand;
|
|
1454
|
+
exports.GetAliasInput$ = GetAliasInput$;
|
|
1455
|
+
exports.GetAliasOutput$ = GetAliasOutput$;
|
|
1456
|
+
exports.GetCertificateSigningRequest$ = GetCertificateSigningRequest$;
|
|
1351
1457
|
exports.GetCertificateSigningRequestCommand = GetCertificateSigningRequestCommand;
|
|
1458
|
+
exports.GetCertificateSigningRequestInput$ = GetCertificateSigningRequestInput$;
|
|
1459
|
+
exports.GetCertificateSigningRequestOutput$ = GetCertificateSigningRequestOutput$;
|
|
1460
|
+
exports.GetDefaultKeyReplicationRegions$ = GetDefaultKeyReplicationRegions$;
|
|
1352
1461
|
exports.GetDefaultKeyReplicationRegionsCommand = GetDefaultKeyReplicationRegionsCommand;
|
|
1462
|
+
exports.GetDefaultKeyReplicationRegionsInput$ = GetDefaultKeyReplicationRegionsInput$;
|
|
1463
|
+
exports.GetDefaultKeyReplicationRegionsOutput$ = GetDefaultKeyReplicationRegionsOutput$;
|
|
1464
|
+
exports.GetKey$ = GetKey$;
|
|
1353
1465
|
exports.GetKeyCommand = GetKeyCommand;
|
|
1466
|
+
exports.GetKeyInput$ = GetKeyInput$;
|
|
1467
|
+
exports.GetKeyOutput$ = GetKeyOutput$;
|
|
1468
|
+
exports.GetParametersForExport$ = GetParametersForExport$;
|
|
1354
1469
|
exports.GetParametersForExportCommand = GetParametersForExportCommand;
|
|
1470
|
+
exports.GetParametersForExportInput$ = GetParametersForExportInput$;
|
|
1471
|
+
exports.GetParametersForExportOutput$ = GetParametersForExportOutput$;
|
|
1472
|
+
exports.GetParametersForImport$ = GetParametersForImport$;
|
|
1355
1473
|
exports.GetParametersForImportCommand = GetParametersForImportCommand;
|
|
1474
|
+
exports.GetParametersForImportInput$ = GetParametersForImportInput$;
|
|
1475
|
+
exports.GetParametersForImportOutput$ = GetParametersForImportOutput$;
|
|
1476
|
+
exports.GetPublicKeyCertificate$ = GetPublicKeyCertificate$;
|
|
1356
1477
|
exports.GetPublicKeyCertificateCommand = GetPublicKeyCertificateCommand;
|
|
1478
|
+
exports.GetPublicKeyCertificateInput$ = GetPublicKeyCertificateInput$;
|
|
1479
|
+
exports.GetPublicKeyCertificateOutput$ = GetPublicKeyCertificateOutput$;
|
|
1480
|
+
exports.ImportAs2805KeyCryptogram$ = ImportAs2805KeyCryptogram$;
|
|
1481
|
+
exports.ImportDiffieHellmanTr31KeyBlock$ = ImportDiffieHellmanTr31KeyBlock$;
|
|
1482
|
+
exports.ImportKey$ = ImportKey$;
|
|
1357
1483
|
exports.ImportKeyCommand = ImportKeyCommand;
|
|
1358
|
-
exports.
|
|
1484
|
+
exports.ImportKeyCryptogram$ = ImportKeyCryptogram$;
|
|
1485
|
+
exports.ImportKeyInput$ = ImportKeyInput$;
|
|
1486
|
+
exports.ImportKeyMaterial$ = ImportKeyMaterial$;
|
|
1487
|
+
exports.ImportKeyOutput$ = ImportKeyOutput$;
|
|
1488
|
+
exports.ImportTr31KeyBlock$ = ImportTr31KeyBlock$;
|
|
1489
|
+
exports.ImportTr34KeyBlock$ = ImportTr34KeyBlock$;
|
|
1490
|
+
exports.InternalServerException = InternalServerException;
|
|
1491
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1492
|
+
exports.Key$ = Key$;
|
|
1359
1493
|
exports.KeyAlgorithm = KeyAlgorithm;
|
|
1494
|
+
exports.KeyAttributes$ = KeyAttributes$;
|
|
1495
|
+
exports.KeyBlockHeaders$ = KeyBlockHeaders$;
|
|
1360
1496
|
exports.KeyCheckValueAlgorithm = KeyCheckValueAlgorithm;
|
|
1361
1497
|
exports.KeyClass = KeyClass;
|
|
1362
1498
|
exports.KeyDerivationFunction = KeyDerivationFunction;
|
|
1363
1499
|
exports.KeyDerivationHashAlgorithm = KeyDerivationHashAlgorithm;
|
|
1364
1500
|
exports.KeyExportability = KeyExportability;
|
|
1365
1501
|
exports.KeyMaterialType = KeyMaterialType;
|
|
1502
|
+
exports.KeyModesOfUse$ = KeyModesOfUse$;
|
|
1366
1503
|
exports.KeyOrigin = KeyOrigin;
|
|
1367
1504
|
exports.KeyReplicationState = KeyReplicationState;
|
|
1368
1505
|
exports.KeyState = KeyState;
|
|
1506
|
+
exports.KeySummary$ = KeySummary$;
|
|
1369
1507
|
exports.KeyUsage = KeyUsage;
|
|
1508
|
+
exports.ListAliases$ = ListAliases$;
|
|
1370
1509
|
exports.ListAliasesCommand = ListAliasesCommand;
|
|
1510
|
+
exports.ListAliasesInput$ = ListAliasesInput$;
|
|
1511
|
+
exports.ListAliasesOutput$ = ListAliasesOutput$;
|
|
1512
|
+
exports.ListKeys$ = ListKeys$;
|
|
1371
1513
|
exports.ListKeysCommand = ListKeysCommand;
|
|
1514
|
+
exports.ListKeysInput$ = ListKeysInput$;
|
|
1515
|
+
exports.ListKeysOutput$ = ListKeysOutput$;
|
|
1516
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1372
1517
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1518
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1519
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1373
1520
|
exports.MultiRegionKeyType = MultiRegionKeyType;
|
|
1374
1521
|
exports.PaymentCryptography = PaymentCryptography;
|
|
1375
1522
|
exports.PaymentCryptographyClient = PaymentCryptographyClient;
|
|
1376
|
-
exports.PaymentCryptographyServiceException = PaymentCryptographyServiceException
|
|
1523
|
+
exports.PaymentCryptographyServiceException = PaymentCryptographyServiceException;
|
|
1524
|
+
exports.PaymentCryptographyServiceException$ = PaymentCryptographyServiceException$;
|
|
1525
|
+
exports.RemoveKeyReplicationRegions$ = RemoveKeyReplicationRegions$;
|
|
1377
1526
|
exports.RemoveKeyReplicationRegionsCommand = RemoveKeyReplicationRegionsCommand;
|
|
1378
|
-
exports.
|
|
1527
|
+
exports.RemoveKeyReplicationRegionsInput$ = RemoveKeyReplicationRegionsInput$;
|
|
1528
|
+
exports.RemoveKeyReplicationRegionsOutput$ = RemoveKeyReplicationRegionsOutput$;
|
|
1529
|
+
exports.ReplicationStatusType$ = ReplicationStatusType$;
|
|
1530
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1531
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1532
|
+
exports.RestoreKey$ = RestoreKey$;
|
|
1379
1533
|
exports.RestoreKeyCommand = RestoreKeyCommand;
|
|
1380
|
-
exports.
|
|
1381
|
-
exports.
|
|
1534
|
+
exports.RestoreKeyInput$ = RestoreKeyInput$;
|
|
1535
|
+
exports.RestoreKeyOutput$ = RestoreKeyOutput$;
|
|
1536
|
+
exports.RootCertificatePublicKey$ = RootCertificatePublicKey$;
|
|
1537
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1538
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1539
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1540
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1382
1541
|
exports.SigningAlgorithmType = SigningAlgorithmType;
|
|
1542
|
+
exports.StartKeyUsage$ = StartKeyUsage$;
|
|
1383
1543
|
exports.StartKeyUsageCommand = StartKeyUsageCommand;
|
|
1544
|
+
exports.StartKeyUsageInput$ = StartKeyUsageInput$;
|
|
1545
|
+
exports.StartKeyUsageOutput$ = StartKeyUsageOutput$;
|
|
1546
|
+
exports.StopKeyUsage$ = StopKeyUsage$;
|
|
1384
1547
|
exports.StopKeyUsageCommand = StopKeyUsageCommand;
|
|
1548
|
+
exports.StopKeyUsageInput$ = StopKeyUsageInput$;
|
|
1549
|
+
exports.StopKeyUsageOutput$ = StopKeyUsageOutput$;
|
|
1385
1550
|
exports.SymmetricKeyAlgorithm = SymmetricKeyAlgorithm;
|
|
1551
|
+
exports.Tag$ = Tag$;
|
|
1552
|
+
exports.TagResource$ = TagResource$;
|
|
1386
1553
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1387
|
-
exports.
|
|
1554
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1555
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1556
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1557
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1388
1558
|
exports.Tr34KeyBlockFormat = Tr34KeyBlockFormat;
|
|
1559
|
+
exports.TrustedCertificatePublicKey$ = TrustedCertificatePublicKey$;
|
|
1560
|
+
exports.UntagResource$ = UntagResource$;
|
|
1389
1561
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1562
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1563
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1564
|
+
exports.UpdateAlias$ = UpdateAlias$;
|
|
1390
1565
|
exports.UpdateAliasCommand = UpdateAliasCommand;
|
|
1391
|
-
exports.
|
|
1566
|
+
exports.UpdateAliasInput$ = UpdateAliasInput$;
|
|
1567
|
+
exports.UpdateAliasOutput$ = UpdateAliasOutput$;
|
|
1568
|
+
exports.ValidationException = ValidationException;
|
|
1569
|
+
exports.ValidationException$ = ValidationException$;
|
|
1570
|
+
exports.WrappedKey$ = WrappedKey$;
|
|
1392
1571
|
exports.WrappedKeyMaterialFormat = WrappedKeyMaterialFormat;
|
|
1393
1572
|
exports.WrappingKeySpec = WrappingKeySpec;
|
|
1394
1573
|
exports.paginateListAliases = paginateListAliases;
|