@aws-sdk/client-payment-cryptography 3.1075.0 → 3.1077.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 +1362 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/PaymentCryptographyServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -127
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1009
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultPaymentCryptographyHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "payment-cryptography",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultPaymentCryptographyHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1170 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://controlplane.payment-cryptography-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://controlplane.payment-cryptography-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://controlplane.payment-cryptography.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://controlplane.payment-cryptography.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class PaymentCryptographyServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, PaymentCryptographyServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends PaymentCryptographyServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessDeniedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
|
+
this.Message = opts.Message;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class ConflictException extends PaymentCryptographyServiceException {
|
|
155
|
+
name = "ConflictException";
|
|
156
|
+
$fault = "client";
|
|
157
|
+
Message;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "ConflictException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class InternalServerException extends PaymentCryptographyServiceException {
|
|
169
|
+
name = "InternalServerException";
|
|
170
|
+
$fault = "server";
|
|
171
|
+
Message;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InternalServerException",
|
|
175
|
+
$fault: "server",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
179
|
+
this.Message = opts.Message;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends PaymentCryptographyServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
ResourceId;
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "ResourceNotFoundException",
|
|
189
|
+
$fault: "client",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
193
|
+
this.ResourceId = opts.ResourceId;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
class ServiceQuotaExceededException extends PaymentCryptographyServiceException {
|
|
197
|
+
name = "ServiceQuotaExceededException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
Message;
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "ServiceQuotaExceededException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
207
|
+
this.Message = opts.Message;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
class ThrottlingException extends PaymentCryptographyServiceException {
|
|
211
|
+
name = "ThrottlingException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "ThrottlingException",
|
|
217
|
+
$fault: "client",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
221
|
+
this.Message = opts.Message;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
class ValidationException extends PaymentCryptographyServiceException {
|
|
225
|
+
name = "ValidationException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
Message;
|
|
228
|
+
constructor(opts) {
|
|
229
|
+
super({
|
|
230
|
+
name: "ValidationException",
|
|
231
|
+
$fault: "client",
|
|
232
|
+
...opts,
|
|
233
|
+
});
|
|
234
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
235
|
+
this.Message = opts.Message;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
class ServiceUnavailableException extends PaymentCryptographyServiceException {
|
|
239
|
+
name = "ServiceUnavailableException";
|
|
240
|
+
$fault = "server";
|
|
241
|
+
Message;
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "ServiceUnavailableException",
|
|
245
|
+
$fault: "server",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
249
|
+
this.Message = opts.Message;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
class PublicPolicyException extends PaymentCryptographyServiceException {
|
|
253
|
+
name = "PublicPolicyException";
|
|
254
|
+
$fault = "client";
|
|
255
|
+
Message;
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "PublicPolicyException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, PublicPolicyException.prototype);
|
|
263
|
+
this.Message = opts.Message;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
const _A = "Alias";
|
|
268
|
+
const _ADE = "AccessDeniedException";
|
|
269
|
+
const _AKC = "As2805KeyCryptogram";
|
|
270
|
+
const _AKRR = "AddKeyReplicationRegions";
|
|
271
|
+
const _AKRRI = "AddKeyReplicationRegionsInput";
|
|
272
|
+
const _AKRRO = "AddKeyReplicationRegionsOutput";
|
|
273
|
+
const _AKV = "As2805KeyVariant";
|
|
274
|
+
const _AMT = "AssociateMpaTeam";
|
|
275
|
+
const _AMTI = "AssociateMpaTeamInput";
|
|
276
|
+
const _AMTO = "AssociateMpaTeamOutput";
|
|
277
|
+
const _AN = "AliasName";
|
|
278
|
+
const _AS = "AssociationState";
|
|
279
|
+
const _Ac = "Action";
|
|
280
|
+
const _Al = "Aliases";
|
|
281
|
+
const _C = "City";
|
|
282
|
+
const _CA = "CreateAlias";
|
|
283
|
+
const _CAI = "CreateAliasInput";
|
|
284
|
+
const _CAO = "CreateAliasOutput";
|
|
285
|
+
const _CAPKI = "CertificateAuthorityPublicKeyIdentifier";
|
|
286
|
+
const _CE = "ConflictException";
|
|
287
|
+
const _CK = "CreateKey";
|
|
288
|
+
const _CKI = "CreateKeyInput";
|
|
289
|
+
const _CKO = "CreateKeyOutput";
|
|
290
|
+
const _CN = "CommonName";
|
|
291
|
+
const _CS = "CertificateSubject";
|
|
292
|
+
const _CSR = "CertificateSigningRequest";
|
|
293
|
+
const _CSRT = "CertificateSigningRequestType";
|
|
294
|
+
const _CST = "CertificateSubjectType";
|
|
295
|
+
const _CT = "CreateTimestamp";
|
|
296
|
+
const _Co = "Country";
|
|
297
|
+
const _D = "Decrypt";
|
|
298
|
+
const _DA = "DeleteAlias";
|
|
299
|
+
const _DAI = "DeleteAliasInput";
|
|
300
|
+
const _DAO = "DeleteAliasOutput";
|
|
301
|
+
const _DD = "DerivationData";
|
|
302
|
+
const _DDKRR = "DisableDefaultKeyReplicationRegions";
|
|
303
|
+
const _DDKRRI = "DisableDefaultKeyReplicationRegionsInput";
|
|
304
|
+
const _DDKRRO = "DisableDefaultKeyReplicationRegionsOutput";
|
|
305
|
+
const _DHDD = "DiffieHellmanDerivationData";
|
|
306
|
+
const _DHTKB = "DiffieHellmanTr31KeyBlock";
|
|
307
|
+
const _DK = "DeriveKey";
|
|
308
|
+
const _DKA = "DeriveKeyAlgorithm";
|
|
309
|
+
const _DKI = "DeleteKeyInput";
|
|
310
|
+
const _DKID = "DeleteKeyInDays";
|
|
311
|
+
const _DKO = "DeleteKeyOutput";
|
|
312
|
+
const _DKU = "DeriveKeyUsage";
|
|
313
|
+
const _DKe = "DeleteKey";
|
|
314
|
+
const _DMT = "DisassociateMpaTeam";
|
|
315
|
+
const _DMTI = "DisassociateMpaTeamInput";
|
|
316
|
+
const _DMTO = "DisassociateMpaTeamOutput";
|
|
317
|
+
const _DPT = "DeletePendingTimestamp";
|
|
318
|
+
const _DRP = "DeleteResourcePolicy";
|
|
319
|
+
const _DRPI = "DeleteResourcePolicyInput";
|
|
320
|
+
const _DRPO = "DeleteResourcePolicyOutput";
|
|
321
|
+
const _DT = "DeleteTimestamp";
|
|
322
|
+
const _E = "Exportable";
|
|
323
|
+
const _EA = "EmailAddress";
|
|
324
|
+
const _EAKC = "ExportAs2805KeyCryptogram";
|
|
325
|
+
const _EAx = "ExportAttributes";
|
|
326
|
+
const _EDHTKB = "ExportDiffieHellmanTr31KeyBlock";
|
|
327
|
+
const _EDIK = "ExportDukptInitialKey";
|
|
328
|
+
const _EDKRR = "EnableDefaultKeyReplicationRegions";
|
|
329
|
+
const _EDKRRI = "EnableDefaultKeyReplicationRegionsInput";
|
|
330
|
+
const _EDKRRO = "EnableDefaultKeyReplicationRegionsOutput";
|
|
331
|
+
const _EK = "ExportKey";
|
|
332
|
+
const _EKC = "ExportKeyCryptogram";
|
|
333
|
+
const _EKI = "ExportKeyInput";
|
|
334
|
+
const _EKIx = "ExportKeyIdentifier";
|
|
335
|
+
const _EKM = "ExportKeyMaterial";
|
|
336
|
+
const _EKO = "ExportKeyOutput";
|
|
337
|
+
const _ERR = "EnabledReplicationRegions";
|
|
338
|
+
const _ET = "ExportToken";
|
|
339
|
+
const _ETKB = "ExportTr31KeyBlock";
|
|
340
|
+
const _ETKBx = "ExportTr34KeyBlock";
|
|
341
|
+
const _En = "Enabled";
|
|
342
|
+
const _Enc = "Encrypt";
|
|
343
|
+
const _G = "Generate";
|
|
344
|
+
const _GA = "GetAlias";
|
|
345
|
+
const _GAI = "GetAliasInput";
|
|
346
|
+
const _GAO = "GetAliasOutput";
|
|
347
|
+
const _GCSR = "GetCertificateSigningRequest";
|
|
348
|
+
const _GCSRI = "GetCertificateSigningRequestInput";
|
|
349
|
+
const _GCSRO = "GetCertificateSigningRequestOutput";
|
|
350
|
+
const _GDKRR = "GetDefaultKeyReplicationRegions";
|
|
351
|
+
const _GDKRRI = "GetDefaultKeyReplicationRegionsInput";
|
|
352
|
+
const _GDKRRO = "GetDefaultKeyReplicationRegionsOutput";
|
|
353
|
+
const _GK = "GetKey";
|
|
354
|
+
const _GKI = "GetKeyInput";
|
|
355
|
+
const _GKO = "GetKeyOutput";
|
|
356
|
+
const _GMTA = "GetMpaTeamAssociation";
|
|
357
|
+
const _GMTAI = "GetMpaTeamAssociationInput";
|
|
358
|
+
const _GMTAO = "GetMpaTeamAssociationOutput";
|
|
359
|
+
const _GPFE = "GetParametersForExport";
|
|
360
|
+
const _GPFEI = "GetParametersForExportInput";
|
|
361
|
+
const _GPFEO = "GetParametersForExportOutput";
|
|
362
|
+
const _GPFI = "GetParametersForImport";
|
|
363
|
+
const _GPFII = "GetParametersForImportInput";
|
|
364
|
+
const _GPFIO = "GetParametersForImportOutput";
|
|
365
|
+
const _GPKC = "GetPublicKeyCertificate";
|
|
366
|
+
const _GPKCI = "GetPublicKeyCertificateInput";
|
|
367
|
+
const _GPKCO = "GetPublicKeyCertificateOutput";
|
|
368
|
+
const _GRP = "GetResourcePolicy";
|
|
369
|
+
const _GRPI = "GetResourcePolicyInput";
|
|
370
|
+
const _GRPO = "GetResourcePolicyOutput";
|
|
371
|
+
const _IAKC = "ImportAs2805KeyCryptogram";
|
|
372
|
+
const _ID = "InitiationDate";
|
|
373
|
+
const _IDHTKB = "ImportDiffieHellmanTr31KeyBlock";
|
|
374
|
+
const _IK = "ImportKey";
|
|
375
|
+
const _IKC = "ImportKeyCryptogram";
|
|
376
|
+
const _IKI = "ImportKeyInput";
|
|
377
|
+
const _IKM = "ImportKeyMaterial";
|
|
378
|
+
const _IKO = "ImportKeyOutput";
|
|
379
|
+
const _ISE = "InternalServerException";
|
|
380
|
+
const _IT = "ImportToken";
|
|
381
|
+
const _ITKB = "ImportTr31KeyBlock";
|
|
382
|
+
const _ITKBm = "ImportTr34KeyBlock";
|
|
383
|
+
const _K = "Key";
|
|
384
|
+
const _KA = "KeyArn";
|
|
385
|
+
const _KAe = "KeyAttributes";
|
|
386
|
+
const _KAey = "KeyAlgorithm";
|
|
387
|
+
const _KBF = "KeyBlockFormat";
|
|
388
|
+
const _KBH = "KeyBlockHeaders";
|
|
389
|
+
const _KC = "KeyCertificate";
|
|
390
|
+
const _KCC = "KeyCertificateChain";
|
|
391
|
+
const _KCV = "KeyCheckValue";
|
|
392
|
+
const _KCVA = "KeyCheckValueAlgorithm";
|
|
393
|
+
const _KCe = "KeyClass";
|
|
394
|
+
const _KCey = "KeyCryptogram";
|
|
395
|
+
const _KDF = "KeyDerivationFunction";
|
|
396
|
+
const _KDHA = "KeyDerivationHashAlgorithm";
|
|
397
|
+
const _KE = "KeyExportability";
|
|
398
|
+
const _KI = "KeyIdentifier";
|
|
399
|
+
const _KM = "KeyMaterial";
|
|
400
|
+
const _KMOU = "KeyModesOfUse";
|
|
401
|
+
const _KMT = "KeyMaterialType";
|
|
402
|
+
const _KO = "KeyOrigin";
|
|
403
|
+
const _KS = "KeyState";
|
|
404
|
+
const _KSL = "KeySummaryList";
|
|
405
|
+
const _KSN = "KeySerialNumber";
|
|
406
|
+
const _KSe = "KeySummary";
|
|
407
|
+
const _KU = "KeyUsage";
|
|
408
|
+
const _KV = "KeyVersion";
|
|
409
|
+
const _Ke = "Keys";
|
|
410
|
+
const _LA = "ListAliases";
|
|
411
|
+
const _LAI = "ListAliasesInput";
|
|
412
|
+
const _LAO = "ListAliasesOutput";
|
|
413
|
+
const _LK = "ListKeys";
|
|
414
|
+
const _LKI = "ListKeysInput";
|
|
415
|
+
const _LKO = "ListKeysOutput";
|
|
416
|
+
const _LTFR = "ListTagsForResource";
|
|
417
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
418
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
419
|
+
const _M = "Message";
|
|
420
|
+
const _MR = "MaxResults";
|
|
421
|
+
const _MRC = "MpaRequesterComment";
|
|
422
|
+
const _MRKT = "MultiRegionKeyType";
|
|
423
|
+
const _MS = "MpaStatus";
|
|
424
|
+
const _MSA = "MpaSessionArn";
|
|
425
|
+
const _MTA = "MpaTeamArn";
|
|
426
|
+
const _MTAp = "MpaTeamAssociation";
|
|
427
|
+
const _NR = "NoRestrictions";
|
|
428
|
+
const _NT = "NextToken";
|
|
429
|
+
const _O = "Organization";
|
|
430
|
+
const _OB = "OptionalBlocks";
|
|
431
|
+
const _OBI = "OptionalBlockId";
|
|
432
|
+
const _OBV = "OptionalBlockValue";
|
|
433
|
+
const _OU = "OrganizationUnit";
|
|
434
|
+
const _P = "Policy";
|
|
435
|
+
const _PKC = "PublicKeyCertificate";
|
|
436
|
+
const _PKI = "PrivateKeyIdentifier";
|
|
437
|
+
const _PPE = "PublicPolicyException";
|
|
438
|
+
const _PR = "PrimaryRegion";
|
|
439
|
+
const _PRP = "PutResourcePolicy";
|
|
440
|
+
const _PRPI = "PutResourcePolicyInput";
|
|
441
|
+
const _PRPO = "PutResourcePolicyOutput";
|
|
442
|
+
const _PVUT = "ParametersValidUntilTimestamp";
|
|
443
|
+
const _RA = "ResourceArn";
|
|
444
|
+
const _RC = "RequesterComment";
|
|
445
|
+
const _RCPK = "RootCertificatePublicKey";
|
|
446
|
+
const _RI = "ResourceId";
|
|
447
|
+
const _RK = "RestoreKey";
|
|
448
|
+
const _RKI = "RestoreKeyInput";
|
|
449
|
+
const _RKO = "RestoreKeyOutput";
|
|
450
|
+
const _RKRR = "RemoveKeyReplicationRegions";
|
|
451
|
+
const _RKRRI = "RemoveKeyReplicationRegionsInput";
|
|
452
|
+
const _RKRRO = "RemoveKeyReplicationRegionsOutput";
|
|
453
|
+
const _RLGT = "ReuseLastGeneratedToken";
|
|
454
|
+
const _RN = "RandomNonce";
|
|
455
|
+
const _RNFE = "ResourceNotFoundException";
|
|
456
|
+
const _RR = "ReplicationRegions";
|
|
457
|
+
const _RS = "ReplicationStatus";
|
|
458
|
+
const _RST = "ReplicationStatusType";
|
|
459
|
+
const _S = "Sign";
|
|
460
|
+
const _SA = "SigningAlgorithm";
|
|
461
|
+
const _SI = "SharedInformation";
|
|
462
|
+
const _SKA = "SigningKeyAlgorithm";
|
|
463
|
+
const _SKC = "SigningKeyCertificate";
|
|
464
|
+
const _SKCC = "SigningKeyCertificateChain";
|
|
465
|
+
const _SKI = "SigningKeyIdentifier";
|
|
466
|
+
const _SKU = "StartKeyUsage";
|
|
467
|
+
const _SKUI = "StartKeyUsageInput";
|
|
468
|
+
const _SKUIt = "StopKeyUsageInput";
|
|
469
|
+
const _SKUO = "StartKeyUsageOutput";
|
|
470
|
+
const _SKUOt = "StopKeyUsageOutput";
|
|
471
|
+
const _SKUt = "StopKeyUsage";
|
|
472
|
+
const _SM = "StatusMessage";
|
|
473
|
+
const _SOP = "StateOrProvince";
|
|
474
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
475
|
+
const _SUE = "ServiceUnavailableException";
|
|
476
|
+
const _St = "Status";
|
|
477
|
+
const _T = "Tags";
|
|
478
|
+
const _TCPK = "TrustedCertificatePublicKey";
|
|
479
|
+
const _TE = "ThrottlingException";
|
|
480
|
+
const _TK = "TagKeys";
|
|
481
|
+
const _TKB = "Tr31KeyBlock";
|
|
482
|
+
const _TKBr = "Tr34KeyBlock";
|
|
483
|
+
const _TR = "TagResource";
|
|
484
|
+
const _TRI = "TagResourceInput";
|
|
485
|
+
const _TRO = "TagResourceOutput";
|
|
486
|
+
const _TWKB = "Tr31WrappedKeyBlock";
|
|
487
|
+
const _TWKBr = "Tr34WrappedKeyBlock";
|
|
488
|
+
const _Ta = "Tag";
|
|
489
|
+
const _U = "Unwrap";
|
|
490
|
+
const _UA = "UpdateAlias";
|
|
491
|
+
const _UAI = "UpdateAliasInput";
|
|
492
|
+
const _UAO = "UpdateAliasOutput";
|
|
493
|
+
const _UDRR = "UsingDefaultReplicationRegions";
|
|
494
|
+
const _UR = "UntagResource";
|
|
495
|
+
const _URI = "UntagResourceInput";
|
|
496
|
+
const _URO = "UntagResourceOutput";
|
|
497
|
+
const _UST = "UsageStartTimestamp";
|
|
498
|
+
const _USTs = "UsageStopTimestamp";
|
|
499
|
+
const _V = "Verify";
|
|
500
|
+
const _VE = "ValidationException";
|
|
501
|
+
const _Va = "Value";
|
|
502
|
+
const _W = "Wrap";
|
|
503
|
+
const _WK = "WrappedKey";
|
|
504
|
+
const _WKA = "WrappingKeyAlgorithm";
|
|
505
|
+
const _WKAr = "WrappingKeyArn";
|
|
506
|
+
const _WKB = "WrappedKeyBlock";
|
|
507
|
+
const _WKC = "WrappedKeyCryptogram";
|
|
508
|
+
const _WKCC = "WrappingKeyCertificateChain";
|
|
509
|
+
const _WKCr = "WrappingKeyCertificate";
|
|
510
|
+
const _WKI = "WrappingKeyIdentifier";
|
|
511
|
+
const _WKMF = "WrappedKeyMaterialFormat";
|
|
512
|
+
const _WS = "WrappingSpec";
|
|
513
|
+
const _c = "client";
|
|
514
|
+
const _e = "error";
|
|
515
|
+
const _hE = "httpError";
|
|
516
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.paymentcryptography";
|
|
517
|
+
const _se = "server";
|
|
518
|
+
const n0 = "com.amazonaws.paymentcryptography";
|
|
519
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
520
|
+
var PaymentCryptographyServiceException$ = [-3, _s, "PaymentCryptographyServiceException", 0, [], []];
|
|
521
|
+
_s_registry.registerError(PaymentCryptographyServiceException$, PaymentCryptographyServiceException);
|
|
522
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
523
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
524
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
525
|
+
[_M],
|
|
526
|
+
[0]
|
|
527
|
+
];
|
|
528
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
529
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
530
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
531
|
+
[_M],
|
|
532
|
+
[0]
|
|
533
|
+
];
|
|
534
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
535
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
536
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
537
|
+
[_M],
|
|
538
|
+
[0]
|
|
539
|
+
];
|
|
540
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
541
|
+
var PublicPolicyException$ = [-3, n0, _PPE,
|
|
542
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
543
|
+
[_M],
|
|
544
|
+
[0]
|
|
545
|
+
];
|
|
546
|
+
n0_registry.registerError(PublicPolicyException$, PublicPolicyException);
|
|
547
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
548
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
549
|
+
[_RI],
|
|
550
|
+
[0]
|
|
551
|
+
];
|
|
552
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
553
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
554
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
555
|
+
[_M],
|
|
556
|
+
[0]
|
|
557
|
+
];
|
|
558
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
559
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
560
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
561
|
+
[_M],
|
|
562
|
+
[0]
|
|
563
|
+
];
|
|
564
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
565
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
566
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
567
|
+
[_M],
|
|
568
|
+
[0]
|
|
569
|
+
];
|
|
570
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
571
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
572
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
573
|
+
[_M],
|
|
574
|
+
[0]
|
|
575
|
+
];
|
|
576
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
577
|
+
const errorTypeRegistries = [
|
|
578
|
+
_s_registry,
|
|
579
|
+
n0_registry,
|
|
580
|
+
];
|
|
581
|
+
var CertificateSigningRequestType = [0, n0, _CSRT, 8, 0];
|
|
582
|
+
var KeyMaterial = [0, n0, _KM, 8, 0];
|
|
583
|
+
var MpaRequesterComment = [0, n0, _MRC, 8, 0];
|
|
584
|
+
var OptionalBlockId = [0, n0, _OBI, 8, 0];
|
|
585
|
+
var OptionalBlockValue = [0, n0, _OBV, 8, 0];
|
|
586
|
+
var Tr31WrappedKeyBlock = [0, n0, _TWKB, 8, 0];
|
|
587
|
+
var Tr34WrappedKeyBlock = [0, n0, _TWKBr, 8, 0];
|
|
588
|
+
var WrappedKeyCryptogram = [0, n0, _WKC, 8, 0];
|
|
589
|
+
var AddKeyReplicationRegionsInput$ = [3, n0, _AKRRI,
|
|
590
|
+
0,
|
|
591
|
+
[_KI, _RR],
|
|
592
|
+
[0, 64 | 0], 2
|
|
593
|
+
];
|
|
594
|
+
var AddKeyReplicationRegionsOutput$ = [3, n0, _AKRRO,
|
|
595
|
+
0,
|
|
596
|
+
[_K],
|
|
597
|
+
[() => Key$], 1
|
|
598
|
+
];
|
|
599
|
+
var Alias$ = [3, n0, _A,
|
|
600
|
+
0,
|
|
601
|
+
[_AN, _KA],
|
|
602
|
+
[0, 0], 1
|
|
603
|
+
];
|
|
604
|
+
var AssociateMpaTeamInput$ = [3, n0, _AMTI,
|
|
605
|
+
0,
|
|
606
|
+
[_Ac, _MTA, _RC],
|
|
607
|
+
[0, 0, [() => MpaRequesterComment, 0]], 2
|
|
608
|
+
];
|
|
609
|
+
var AssociateMpaTeamOutput$ = [3, n0, _AMTO,
|
|
610
|
+
0,
|
|
611
|
+
[_MTAp],
|
|
612
|
+
[() => MpaTeamAssociation$], 1
|
|
613
|
+
];
|
|
614
|
+
var CertificateSubjectType$ = [3, n0, _CST,
|
|
615
|
+
0,
|
|
616
|
+
[_CN, _OU, _O, _C, _Co, _SOP, _EA],
|
|
617
|
+
[0, 0, 0, 0, 0, 0, 0], 1
|
|
618
|
+
];
|
|
619
|
+
var CreateAliasInput$ = [3, n0, _CAI,
|
|
620
|
+
0,
|
|
621
|
+
[_AN, _KA],
|
|
622
|
+
[0, 0], 1
|
|
623
|
+
];
|
|
624
|
+
var CreateAliasOutput$ = [3, n0, _CAO,
|
|
625
|
+
0,
|
|
626
|
+
[_A],
|
|
627
|
+
[() => Alias$], 1
|
|
628
|
+
];
|
|
629
|
+
var CreateKeyInput$ = [3, n0, _CKI,
|
|
630
|
+
0,
|
|
631
|
+
[_KAe, _E, _KCVA, _En, _T, _DKU, _RR],
|
|
632
|
+
[() => KeyAttributes$, 2, 0, 2, () => Tags, 0, 64 | 0], 2
|
|
633
|
+
];
|
|
634
|
+
var CreateKeyOutput$ = [3, n0, _CKO,
|
|
635
|
+
0,
|
|
636
|
+
[_K],
|
|
637
|
+
[() => Key$], 1
|
|
638
|
+
];
|
|
639
|
+
var DeleteAliasInput$ = [3, n0, _DAI,
|
|
640
|
+
0,
|
|
641
|
+
[_AN],
|
|
642
|
+
[0], 1
|
|
643
|
+
];
|
|
644
|
+
var DeleteAliasOutput$ = [3, n0, _DAO,
|
|
645
|
+
0,
|
|
646
|
+
[],
|
|
647
|
+
[]
|
|
648
|
+
];
|
|
649
|
+
var DeleteKeyInput$ = [3, n0, _DKI,
|
|
650
|
+
0,
|
|
651
|
+
[_KI, _DKID],
|
|
652
|
+
[0, 1], 1
|
|
653
|
+
];
|
|
654
|
+
var DeleteKeyOutput$ = [3, n0, _DKO,
|
|
655
|
+
0,
|
|
656
|
+
[_K],
|
|
657
|
+
[() => Key$], 1
|
|
658
|
+
];
|
|
659
|
+
var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
|
|
660
|
+
0,
|
|
661
|
+
[_RA],
|
|
662
|
+
[0], 1
|
|
663
|
+
];
|
|
664
|
+
var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
|
|
665
|
+
0,
|
|
666
|
+
[],
|
|
667
|
+
[]
|
|
668
|
+
];
|
|
669
|
+
var DisableDefaultKeyReplicationRegionsInput$ = [3, n0, _DDKRRI,
|
|
670
|
+
0,
|
|
671
|
+
[_RR],
|
|
672
|
+
[64 | 0], 1
|
|
673
|
+
];
|
|
674
|
+
var DisableDefaultKeyReplicationRegionsOutput$ = [3, n0, _DDKRRO,
|
|
675
|
+
0,
|
|
676
|
+
[_ERR],
|
|
677
|
+
[64 | 0], 1
|
|
678
|
+
];
|
|
679
|
+
var DisassociateMpaTeamInput$ = [3, n0, _DMTI,
|
|
680
|
+
0,
|
|
681
|
+
[_Ac, _RC],
|
|
682
|
+
[0, [() => MpaRequesterComment, 0]], 1
|
|
683
|
+
];
|
|
684
|
+
var DisassociateMpaTeamOutput$ = [3, n0, _DMTO,
|
|
685
|
+
0,
|
|
686
|
+
[_MTAp],
|
|
687
|
+
[() => MpaTeamAssociation$], 1
|
|
688
|
+
];
|
|
689
|
+
var EnableDefaultKeyReplicationRegionsInput$ = [3, n0, _EDKRRI,
|
|
690
|
+
0,
|
|
691
|
+
[_RR],
|
|
692
|
+
[64 | 0], 1
|
|
693
|
+
];
|
|
694
|
+
var EnableDefaultKeyReplicationRegionsOutput$ = [3, n0, _EDKRRO,
|
|
695
|
+
0,
|
|
696
|
+
[_ERR],
|
|
697
|
+
[64 | 0], 1
|
|
698
|
+
];
|
|
699
|
+
var ExportAs2805KeyCryptogram$ = [3, n0, _EAKC,
|
|
700
|
+
0,
|
|
701
|
+
[_WKI, _AKV],
|
|
702
|
+
[0, 0], 2
|
|
703
|
+
];
|
|
704
|
+
var ExportAttributes$ = [3, n0, _EAx,
|
|
705
|
+
0,
|
|
706
|
+
[_EDIK, _KCVA],
|
|
707
|
+
[() => ExportDukptInitialKey$, 0]
|
|
708
|
+
];
|
|
709
|
+
var ExportDiffieHellmanTr31KeyBlock$ = [3, n0, _EDHTKB,
|
|
710
|
+
0,
|
|
711
|
+
[_PKI, _CAPKI, _PKC, _DKA, _KDF, _KDHA, _DD, _KBH],
|
|
712
|
+
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData$, [() => KeyBlockHeaders$, 0]], 7
|
|
713
|
+
];
|
|
714
|
+
var ExportDukptInitialKey$ = [3, n0, _EDIK,
|
|
715
|
+
0,
|
|
716
|
+
[_KSN],
|
|
717
|
+
[0], 1
|
|
718
|
+
];
|
|
719
|
+
var ExportKeyCryptogram$ = [3, n0, _EKC,
|
|
720
|
+
0,
|
|
721
|
+
[_CAPKI, _WKCr, _WS],
|
|
722
|
+
[0, 0, 0], 2
|
|
723
|
+
];
|
|
724
|
+
var ExportKeyInput$ = [3, n0, _EKI,
|
|
725
|
+
0,
|
|
726
|
+
[_KM, _EKIx, _EAx],
|
|
727
|
+
[[() => ExportKeyMaterial$, 0], 0, () => ExportAttributes$], 2
|
|
728
|
+
];
|
|
729
|
+
var ExportKeyOutput$ = [3, n0, _EKO,
|
|
730
|
+
0,
|
|
731
|
+
[_WK],
|
|
732
|
+
[[() => WrappedKey$, 0]]
|
|
733
|
+
];
|
|
734
|
+
var ExportTr31KeyBlock$ = [3, n0, _ETKB,
|
|
735
|
+
0,
|
|
736
|
+
[_WKI, _KBH],
|
|
737
|
+
[0, [() => KeyBlockHeaders$, 0]], 1
|
|
738
|
+
];
|
|
739
|
+
var ExportTr34KeyBlock$ = [3, n0, _ETKBx,
|
|
740
|
+
0,
|
|
741
|
+
[_CAPKI, _WKCr, _KBF, _ET, _SKI, _SKC, _RN, _KBH],
|
|
742
|
+
[0, 0, 0, 0, 0, 0, 0, [() => KeyBlockHeaders$, 0]], 3
|
|
743
|
+
];
|
|
744
|
+
var GetAliasInput$ = [3, n0, _GAI,
|
|
745
|
+
0,
|
|
746
|
+
[_AN],
|
|
747
|
+
[0], 1
|
|
748
|
+
];
|
|
749
|
+
var GetAliasOutput$ = [3, n0, _GAO,
|
|
750
|
+
0,
|
|
751
|
+
[_A],
|
|
752
|
+
[() => Alias$], 1
|
|
753
|
+
];
|
|
754
|
+
var GetCertificateSigningRequestInput$ = [3, n0, _GCSRI,
|
|
755
|
+
0,
|
|
756
|
+
[_KI, _SA, _CS],
|
|
757
|
+
[0, 0, () => CertificateSubjectType$], 3
|
|
758
|
+
];
|
|
759
|
+
var GetCertificateSigningRequestOutput$ = [3, n0, _GCSRO,
|
|
760
|
+
0,
|
|
761
|
+
[_CSR],
|
|
762
|
+
[[() => CertificateSigningRequestType, 0]], 1
|
|
763
|
+
];
|
|
764
|
+
var GetDefaultKeyReplicationRegionsInput$ = [3, n0, _GDKRRI,
|
|
765
|
+
0,
|
|
766
|
+
[],
|
|
767
|
+
[]
|
|
768
|
+
];
|
|
769
|
+
var GetDefaultKeyReplicationRegionsOutput$ = [3, n0, _GDKRRO,
|
|
770
|
+
0,
|
|
771
|
+
[_ERR],
|
|
772
|
+
[64 | 0], 1
|
|
773
|
+
];
|
|
774
|
+
var GetKeyInput$ = [3, n0, _GKI,
|
|
775
|
+
0,
|
|
776
|
+
[_KI],
|
|
777
|
+
[0], 1
|
|
778
|
+
];
|
|
779
|
+
var GetKeyOutput$ = [3, n0, _GKO,
|
|
780
|
+
0,
|
|
781
|
+
[_K],
|
|
782
|
+
[() => Key$], 1
|
|
783
|
+
];
|
|
784
|
+
var GetMpaTeamAssociationInput$ = [3, n0, _GMTAI,
|
|
785
|
+
0,
|
|
786
|
+
[_Ac],
|
|
787
|
+
[0], 1
|
|
788
|
+
];
|
|
789
|
+
var GetMpaTeamAssociationOutput$ = [3, n0, _GMTAO,
|
|
790
|
+
0,
|
|
791
|
+
[_MTAp],
|
|
792
|
+
[() => MpaTeamAssociation$], 1
|
|
793
|
+
];
|
|
794
|
+
var GetParametersForExportInput$ = [3, n0, _GPFEI,
|
|
795
|
+
0,
|
|
796
|
+
[_KMT, _SKA, _RLGT],
|
|
797
|
+
[0, 0, 2], 2
|
|
798
|
+
];
|
|
799
|
+
var GetParametersForExportOutput$ = [3, n0, _GPFEO,
|
|
800
|
+
0,
|
|
801
|
+
[_SKC, _SKCC, _SKA, _ET, _PVUT],
|
|
802
|
+
[0, 0, 0, 0, 4], 5
|
|
803
|
+
];
|
|
804
|
+
var GetParametersForImportInput$ = [3, n0, _GPFII,
|
|
805
|
+
0,
|
|
806
|
+
[_KMT, _WKA, _RLGT],
|
|
807
|
+
[0, 0, 2], 2
|
|
808
|
+
];
|
|
809
|
+
var GetParametersForImportOutput$ = [3, n0, _GPFIO,
|
|
810
|
+
0,
|
|
811
|
+
[_WKCr, _WKCC, _WKA, _IT, _PVUT],
|
|
812
|
+
[0, 0, 0, 0, 4], 5
|
|
813
|
+
];
|
|
814
|
+
var GetPublicKeyCertificateInput$ = [3, n0, _GPKCI,
|
|
815
|
+
0,
|
|
816
|
+
[_KI],
|
|
817
|
+
[0], 1
|
|
818
|
+
];
|
|
819
|
+
var GetPublicKeyCertificateOutput$ = [3, n0, _GPKCO,
|
|
820
|
+
0,
|
|
821
|
+
[_KC, _KCC],
|
|
822
|
+
[0, 0], 2
|
|
823
|
+
];
|
|
824
|
+
var GetResourcePolicyInput$ = [3, n0, _GRPI,
|
|
825
|
+
0,
|
|
826
|
+
[_RA],
|
|
827
|
+
[0], 1
|
|
828
|
+
];
|
|
829
|
+
var GetResourcePolicyOutput$ = [3, n0, _GRPO,
|
|
830
|
+
0,
|
|
831
|
+
[_RA, _P],
|
|
832
|
+
[0, 0], 2
|
|
833
|
+
];
|
|
834
|
+
var ImportAs2805KeyCryptogram$ = [3, n0, _IAKC,
|
|
835
|
+
0,
|
|
836
|
+
[_AKV, _KMOU, _KAey, _E, _WKI, _WKC],
|
|
837
|
+
[0, () => KeyModesOfUse$, 0, 2, 0, [() => WrappedKeyCryptogram, 0]], 6
|
|
838
|
+
];
|
|
839
|
+
var ImportDiffieHellmanTr31KeyBlock$ = [3, n0, _IDHTKB,
|
|
840
|
+
0,
|
|
841
|
+
[_PKI, _CAPKI, _PKC, _DKA, _KDF, _KDHA, _DD, _WKB],
|
|
842
|
+
[0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData$, [() => Tr31WrappedKeyBlock, 0]], 8
|
|
843
|
+
];
|
|
844
|
+
var ImportKeyCryptogram$ = [3, n0, _IKC,
|
|
845
|
+
0,
|
|
846
|
+
[_KAe, _E, _WKC, _IT, _WS],
|
|
847
|
+
[() => KeyAttributes$, 2, [() => WrappedKeyCryptogram, 0], 0, 0], 4
|
|
848
|
+
];
|
|
849
|
+
var ImportKeyInput$ = [3, n0, _IKI,
|
|
850
|
+
0,
|
|
851
|
+
[_KM, _KCVA, _En, _T, _RR, _RC],
|
|
852
|
+
[[() => ImportKeyMaterial$, 0], 0, 2, () => Tags, 64 | 0, [() => MpaRequesterComment, 0]], 1
|
|
853
|
+
];
|
|
854
|
+
var ImportKeyOutput$ = [3, n0, _IKO,
|
|
855
|
+
0,
|
|
856
|
+
[_K],
|
|
857
|
+
[() => Key$], 1
|
|
858
|
+
];
|
|
859
|
+
var ImportTr31KeyBlock$ = [3, n0, _ITKB,
|
|
860
|
+
0,
|
|
861
|
+
[_WKI, _WKB],
|
|
862
|
+
[0, [() => Tr31WrappedKeyBlock, 0]], 2
|
|
863
|
+
];
|
|
864
|
+
var ImportTr34KeyBlock$ = [3, n0, _ITKBm,
|
|
865
|
+
0,
|
|
866
|
+
[_CAPKI, _SKC, _WKB, _KBF, _IT, _WKI, _WKCr, _RN],
|
|
867
|
+
[0, 0, [() => Tr34WrappedKeyBlock, 0], 0, 0, 0, 0, 0], 4
|
|
868
|
+
];
|
|
869
|
+
var Key$ = [3, n0, _K,
|
|
870
|
+
0,
|
|
871
|
+
[_KA, _KAe, _KCV, _KCVA, _En, _E, _KS, _KO, _CT, _UST, _USTs, _DPT, _DT, _DKU, _MRKT, _PR, _RS, _UDRR, _MS],
|
|
872
|
+
[0, () => KeyAttributes$, 0, 0, 2, 2, 0, 0, 4, 4, 4, 4, 4, 0, 0, 0, () => ReplicationStatus, 2, () => MpaStatus$], 9
|
|
873
|
+
];
|
|
874
|
+
var KeyAttributes$ = [3, n0, _KAe,
|
|
875
|
+
0,
|
|
876
|
+
[_KU, _KCe, _KAey, _KMOU],
|
|
877
|
+
[0, 0, 0, () => KeyModesOfUse$], 4
|
|
878
|
+
];
|
|
879
|
+
var KeyBlockHeaders$ = [3, n0, _KBH,
|
|
880
|
+
0,
|
|
881
|
+
[_KMOU, _KE, _KV, _OB],
|
|
882
|
+
[() => KeyModesOfUse$, 0, 0, [() => OptionalBlocks, 0]]
|
|
883
|
+
];
|
|
884
|
+
var KeyModesOfUse$ = [3, n0, _KMOU,
|
|
885
|
+
0,
|
|
886
|
+
[_Enc, _D, _W, _U, _G, _S, _V, _DK, _NR],
|
|
887
|
+
[2, 2, 2, 2, 2, 2, 2, 2, 2]
|
|
888
|
+
];
|
|
889
|
+
var KeySummary$ = [3, n0, _KSe,
|
|
890
|
+
0,
|
|
891
|
+
[_KA, _KS, _KAe, _KCV, _E, _En, _MRKT, _PR],
|
|
892
|
+
[0, 0, () => KeyAttributes$, 0, 2, 2, 0, 0], 6
|
|
893
|
+
];
|
|
894
|
+
var ListAliasesInput$ = [3, n0, _LAI,
|
|
895
|
+
0,
|
|
896
|
+
[_KA, _NT, _MR],
|
|
897
|
+
[0, 0, 1]
|
|
898
|
+
];
|
|
899
|
+
var ListAliasesOutput$ = [3, n0, _LAO,
|
|
900
|
+
0,
|
|
901
|
+
[_Al, _NT],
|
|
902
|
+
[() => Aliases, 0], 1
|
|
903
|
+
];
|
|
904
|
+
var ListKeysInput$ = [3, n0, _LKI,
|
|
905
|
+
0,
|
|
906
|
+
[_KS, _NT, _MR],
|
|
907
|
+
[0, 0, 1]
|
|
908
|
+
];
|
|
909
|
+
var ListKeysOutput$ = [3, n0, _LKO,
|
|
910
|
+
0,
|
|
911
|
+
[_Ke, _NT],
|
|
912
|
+
[() => KeySummaryList, 0], 1
|
|
913
|
+
];
|
|
914
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
915
|
+
0,
|
|
916
|
+
[_RA, _NT, _MR],
|
|
917
|
+
[0, 0, 1], 1
|
|
918
|
+
];
|
|
919
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
920
|
+
0,
|
|
921
|
+
[_T, _NT],
|
|
922
|
+
[() => Tags, 0], 1
|
|
923
|
+
];
|
|
924
|
+
var MpaStatus$ = [3, n0, _MS,
|
|
925
|
+
0,
|
|
926
|
+
[_MSA, _St, _ID, _SM],
|
|
927
|
+
[0, 0, 4, 0], 3
|
|
928
|
+
];
|
|
929
|
+
var MpaTeamAssociation$ = [3, n0, _MTAp,
|
|
930
|
+
0,
|
|
931
|
+
[_Ac, _MTA, _AS, _MS],
|
|
932
|
+
[0, 0, 0, () => MpaStatus$], 3
|
|
933
|
+
];
|
|
934
|
+
var PutResourcePolicyInput$ = [3, n0, _PRPI,
|
|
935
|
+
0,
|
|
936
|
+
[_RA, _P],
|
|
937
|
+
[0, 0], 2
|
|
938
|
+
];
|
|
939
|
+
var PutResourcePolicyOutput$ = [3, n0, _PRPO,
|
|
940
|
+
0,
|
|
941
|
+
[_RA, _P],
|
|
942
|
+
[0, 0], 2
|
|
943
|
+
];
|
|
944
|
+
var RemoveKeyReplicationRegionsInput$ = [3, n0, _RKRRI,
|
|
945
|
+
0,
|
|
946
|
+
[_KI, _RR],
|
|
947
|
+
[0, 64 | 0], 2
|
|
948
|
+
];
|
|
949
|
+
var RemoveKeyReplicationRegionsOutput$ = [3, n0, _RKRRO,
|
|
950
|
+
0,
|
|
951
|
+
[_K],
|
|
952
|
+
[() => Key$], 1
|
|
953
|
+
];
|
|
954
|
+
var ReplicationStatusType$ = [3, n0, _RST,
|
|
955
|
+
0,
|
|
956
|
+
[_St, _SM],
|
|
957
|
+
[0, 0], 1
|
|
958
|
+
];
|
|
959
|
+
var RestoreKeyInput$ = [3, n0, _RKI,
|
|
960
|
+
0,
|
|
961
|
+
[_KI],
|
|
962
|
+
[0], 1
|
|
963
|
+
];
|
|
964
|
+
var RestoreKeyOutput$ = [3, n0, _RKO,
|
|
965
|
+
0,
|
|
966
|
+
[_K],
|
|
967
|
+
[() => Key$], 1
|
|
968
|
+
];
|
|
969
|
+
var RootCertificatePublicKey$ = [3, n0, _RCPK,
|
|
970
|
+
0,
|
|
971
|
+
[_KAe, _PKC],
|
|
972
|
+
[() => KeyAttributes$, 0], 2
|
|
973
|
+
];
|
|
974
|
+
var StartKeyUsageInput$ = [3, n0, _SKUI,
|
|
975
|
+
0,
|
|
976
|
+
[_KI],
|
|
977
|
+
[0], 1
|
|
978
|
+
];
|
|
979
|
+
var StartKeyUsageOutput$ = [3, n0, _SKUO,
|
|
980
|
+
0,
|
|
981
|
+
[_K],
|
|
982
|
+
[() => Key$], 1
|
|
983
|
+
];
|
|
984
|
+
var StopKeyUsageInput$ = [3, n0, _SKUIt,
|
|
985
|
+
0,
|
|
986
|
+
[_KI],
|
|
987
|
+
[0], 1
|
|
988
|
+
];
|
|
989
|
+
var StopKeyUsageOutput$ = [3, n0, _SKUOt,
|
|
990
|
+
0,
|
|
991
|
+
[_K],
|
|
992
|
+
[() => Key$], 1
|
|
993
|
+
];
|
|
994
|
+
var Tag$ = [3, n0, _Ta,
|
|
995
|
+
0,
|
|
996
|
+
[_K, _Va],
|
|
997
|
+
[0, 0], 2
|
|
998
|
+
];
|
|
999
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1000
|
+
0,
|
|
1001
|
+
[_RA, _T],
|
|
1002
|
+
[0, () => Tags], 2
|
|
1003
|
+
];
|
|
1004
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1005
|
+
0,
|
|
1006
|
+
[],
|
|
1007
|
+
[]
|
|
1008
|
+
];
|
|
1009
|
+
var TrustedCertificatePublicKey$ = [3, n0, _TCPK,
|
|
1010
|
+
0,
|
|
1011
|
+
[_KAe, _PKC, _CAPKI],
|
|
1012
|
+
[() => KeyAttributes$, 0, 0], 3
|
|
1013
|
+
];
|
|
1014
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1015
|
+
0,
|
|
1016
|
+
[_RA, _TK],
|
|
1017
|
+
[0, 64 | 0], 2
|
|
1018
|
+
];
|
|
1019
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1020
|
+
0,
|
|
1021
|
+
[],
|
|
1022
|
+
[]
|
|
1023
|
+
];
|
|
1024
|
+
var UpdateAliasInput$ = [3, n0, _UAI,
|
|
1025
|
+
0,
|
|
1026
|
+
[_AN, _KA],
|
|
1027
|
+
[0, 0], 1
|
|
1028
|
+
];
|
|
1029
|
+
var UpdateAliasOutput$ = [3, n0, _UAO,
|
|
1030
|
+
0,
|
|
1031
|
+
[_A],
|
|
1032
|
+
[() => Alias$], 1
|
|
1033
|
+
];
|
|
1034
|
+
var WrappedKey$ = [3, n0, _WK,
|
|
1035
|
+
0,
|
|
1036
|
+
[_WKAr, _WKMF, _KM, _KCV, _KCVA],
|
|
1037
|
+
[0, 0, [() => KeyMaterial, 0], 0, 0], 3
|
|
1038
|
+
];
|
|
1039
|
+
var Aliases = [1, n0, _Al,
|
|
1040
|
+
0, () => Alias$
|
|
1041
|
+
];
|
|
1042
|
+
var KeySummaryList = [1, n0, _KSL,
|
|
1043
|
+
0, () => KeySummary$
|
|
1044
|
+
];
|
|
1045
|
+
var Tags = [1, n0, _T,
|
|
1046
|
+
0, () => Tag$
|
|
1047
|
+
];
|
|
1048
|
+
var OptionalBlocks = [2, n0, _OB,
|
|
1049
|
+
0, [() => OptionalBlockId,
|
|
1050
|
+
0],
|
|
1051
|
+
[() => OptionalBlockValue,
|
|
1052
|
+
0]
|
|
1053
|
+
];
|
|
1054
|
+
var ReplicationStatus = [2, n0, _RS,
|
|
1055
|
+
0, 0, () => ReplicationStatusType$
|
|
1056
|
+
];
|
|
1057
|
+
var DiffieHellmanDerivationData$ = [4, n0, _DHDD,
|
|
1058
|
+
0,
|
|
1059
|
+
[_SI],
|
|
1060
|
+
[0]
|
|
1061
|
+
];
|
|
1062
|
+
var ExportKeyMaterial$ = [4, n0, _EKM,
|
|
1063
|
+
0,
|
|
1064
|
+
[_TKB, _TKBr, _KCey, _DHTKB, _AKC],
|
|
1065
|
+
[[() => ExportTr31KeyBlock$, 0], [() => ExportTr34KeyBlock$, 0], () => ExportKeyCryptogram$, [() => ExportDiffieHellmanTr31KeyBlock$, 0], () => ExportAs2805KeyCryptogram$]
|
|
1066
|
+
];
|
|
1067
|
+
var ImportKeyMaterial$ = [4, n0, _IKM,
|
|
1068
|
+
0,
|
|
1069
|
+
[_RCPK, _TCPK, _TKB, _TKBr, _KCey, _DHTKB, _AKC],
|
|
1070
|
+
[() => RootCertificatePublicKey$, () => TrustedCertificatePublicKey$, [() => ImportTr31KeyBlock$, 0], [() => ImportTr34KeyBlock$, 0], [() => ImportKeyCryptogram$, 0], [() => ImportDiffieHellmanTr31KeyBlock$, 0], [() => ImportAs2805KeyCryptogram$, 0]]
|
|
1071
|
+
];
|
|
1072
|
+
var AddKeyReplicationRegions$ = [9, n0, _AKRR,
|
|
1073
|
+
0, () => AddKeyReplicationRegionsInput$, () => AddKeyReplicationRegionsOutput$
|
|
1074
|
+
];
|
|
1075
|
+
var AssociateMpaTeam$ = [9, n0, _AMT,
|
|
1076
|
+
0, () => AssociateMpaTeamInput$, () => AssociateMpaTeamOutput$
|
|
1077
|
+
];
|
|
1078
|
+
var CreateAlias$ = [9, n0, _CA,
|
|
1079
|
+
2, () => CreateAliasInput$, () => CreateAliasOutput$
|
|
1080
|
+
];
|
|
1081
|
+
var CreateKey$ = [9, n0, _CK,
|
|
1082
|
+
0, () => CreateKeyInput$, () => CreateKeyOutput$
|
|
1083
|
+
];
|
|
1084
|
+
var DeleteAlias$ = [9, n0, _DA,
|
|
1085
|
+
2, () => DeleteAliasInput$, () => DeleteAliasOutput$
|
|
1086
|
+
];
|
|
1087
|
+
var DeleteKey$ = [9, n0, _DKe,
|
|
1088
|
+
2, () => DeleteKeyInput$, () => DeleteKeyOutput$
|
|
1089
|
+
];
|
|
1090
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1091
|
+
2, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
|
|
1092
|
+
];
|
|
1093
|
+
var DisableDefaultKeyReplicationRegions$ = [9, n0, _DDKRR,
|
|
1094
|
+
0, () => DisableDefaultKeyReplicationRegionsInput$, () => DisableDefaultKeyReplicationRegionsOutput$
|
|
1095
|
+
];
|
|
1096
|
+
var DisassociateMpaTeam$ = [9, n0, _DMT,
|
|
1097
|
+
0, () => DisassociateMpaTeamInput$, () => DisassociateMpaTeamOutput$
|
|
1098
|
+
];
|
|
1099
|
+
var EnableDefaultKeyReplicationRegions$ = [9, n0, _EDKRR,
|
|
1100
|
+
0, () => EnableDefaultKeyReplicationRegionsInput$, () => EnableDefaultKeyReplicationRegionsOutput$
|
|
1101
|
+
];
|
|
1102
|
+
var ExportKey$ = [9, n0, _EK,
|
|
1103
|
+
0, () => ExportKeyInput$, () => ExportKeyOutput$
|
|
1104
|
+
];
|
|
1105
|
+
var GetAlias$ = [9, n0, _GA,
|
|
1106
|
+
0, () => GetAliasInput$, () => GetAliasOutput$
|
|
1107
|
+
];
|
|
1108
|
+
var GetCertificateSigningRequest$ = [9, n0, _GCSR,
|
|
1109
|
+
0, () => GetCertificateSigningRequestInput$, () => GetCertificateSigningRequestOutput$
|
|
1110
|
+
];
|
|
1111
|
+
var GetDefaultKeyReplicationRegions$ = [9, n0, _GDKRR,
|
|
1112
|
+
0, () => GetDefaultKeyReplicationRegionsInput$, () => GetDefaultKeyReplicationRegionsOutput$
|
|
1113
|
+
];
|
|
1114
|
+
var GetKey$ = [9, n0, _GK,
|
|
1115
|
+
0, () => GetKeyInput$, () => GetKeyOutput$
|
|
1116
|
+
];
|
|
1117
|
+
var GetMpaTeamAssociation$ = [9, n0, _GMTA,
|
|
1118
|
+
0, () => GetMpaTeamAssociationInput$, () => GetMpaTeamAssociationOutput$
|
|
1119
|
+
];
|
|
1120
|
+
var GetParametersForExport$ = [9, n0, _GPFE,
|
|
1121
|
+
0, () => GetParametersForExportInput$, () => GetParametersForExportOutput$
|
|
1122
|
+
];
|
|
1123
|
+
var GetParametersForImport$ = [9, n0, _GPFI,
|
|
1124
|
+
0, () => GetParametersForImportInput$, () => GetParametersForImportOutput$
|
|
1125
|
+
];
|
|
1126
|
+
var GetPublicKeyCertificate$ = [9, n0, _GPKC,
|
|
1127
|
+
0, () => GetPublicKeyCertificateInput$, () => GetPublicKeyCertificateOutput$
|
|
1128
|
+
];
|
|
1129
|
+
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
1130
|
+
0, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
|
|
1131
|
+
];
|
|
1132
|
+
var ImportKey$ = [9, n0, _IK,
|
|
1133
|
+
0, () => ImportKeyInput$, () => ImportKeyOutput$
|
|
1134
|
+
];
|
|
1135
|
+
var ListAliases$ = [9, n0, _LA,
|
|
1136
|
+
0, () => ListAliasesInput$, () => ListAliasesOutput$
|
|
1137
|
+
];
|
|
1138
|
+
var ListKeys$ = [9, n0, _LK,
|
|
1139
|
+
0, () => ListKeysInput$, () => ListKeysOutput$
|
|
1140
|
+
];
|
|
1141
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1142
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1143
|
+
];
|
|
1144
|
+
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1145
|
+
2, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
|
|
1146
|
+
];
|
|
1147
|
+
var RemoveKeyReplicationRegions$ = [9, n0, _RKRR,
|
|
1148
|
+
0, () => RemoveKeyReplicationRegionsInput$, () => RemoveKeyReplicationRegionsOutput$
|
|
1149
|
+
];
|
|
1150
|
+
var RestoreKey$ = [9, n0, _RK,
|
|
1151
|
+
0, () => RestoreKeyInput$, () => RestoreKeyOutput$
|
|
1152
|
+
];
|
|
1153
|
+
var StartKeyUsage$ = [9, n0, _SKU,
|
|
1154
|
+
0, () => StartKeyUsageInput$, () => StartKeyUsageOutput$
|
|
1155
|
+
];
|
|
1156
|
+
var StopKeyUsage$ = [9, n0, _SKUt,
|
|
1157
|
+
0, () => StopKeyUsageInput$, () => StopKeyUsageOutput$
|
|
1158
|
+
];
|
|
1159
|
+
var TagResource$ = [9, n0, _TR,
|
|
1160
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
1161
|
+
];
|
|
1162
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1163
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1164
|
+
];
|
|
1165
|
+
var UpdateAlias$ = [9, n0, _UA,
|
|
1166
|
+
0, () => UpdateAliasInput$, () => UpdateAliasOutput$
|
|
1167
|
+
];
|
|
1168
|
+
|
|
1169
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1170
|
+
return {
|
|
1171
|
+
apiVersion: "2021-09-14",
|
|
1172
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1173
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1174
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1175
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1176
|
+
extensions: config?.extensions ?? [],
|
|
1177
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultPaymentCryptographyHttpAuthSchemeProvider,
|
|
1178
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1179
|
+
{
|
|
1180
|
+
schemeId: "aws.auth#sigv4",
|
|
1181
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1182
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1183
|
+
},
|
|
1184
|
+
],
|
|
1185
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1186
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1187
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1188
|
+
defaultNamespace: "com.amazonaws.paymentcryptography",
|
|
1189
|
+
errorTypeRegistries,
|
|
1190
|
+
version: "2021-09-14",
|
|
1191
|
+
serviceTarget: "PaymentCryptographyControlPlane",
|
|
1192
|
+
},
|
|
1193
|
+
serviceId: config?.serviceId ?? "Payment Cryptography",
|
|
1194
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1195
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1196
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1197
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1198
|
+
};
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
const getRuntimeConfig = (config) => {
|
|
1202
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1203
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1204
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1205
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1206
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1207
|
+
const loaderConfig = {
|
|
1208
|
+
profile: config?.profile,
|
|
1209
|
+
logger: clientSharedValues.logger,
|
|
1210
|
+
};
|
|
1211
|
+
return {
|
|
1212
|
+
...clientSharedValues,
|
|
1213
|
+
...config,
|
|
1214
|
+
runtime: "node",
|
|
1215
|
+
defaultsMode,
|
|
1216
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1217
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1218
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1219
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1220
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1221
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1222
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1223
|
+
retryMode: config?.retryMode ??
|
|
1224
|
+
loadConfig({
|
|
1225
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1226
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1227
|
+
}, config),
|
|
1228
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1229
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1230
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1231
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
|
|
34
1235
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1236
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1237
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -711,62 +1912,208 @@ const KeyMaterialType = {
|
|
|
711
1912
|
TRUSTED_PUBLIC_KEY_CERTIFICATE: "TRUSTED_PUBLIC_KEY_CERTIFICATE",
|
|
712
1913
|
};
|
|
713
1914
|
|
|
1915
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1916
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1917
|
+
exports.AddKeyReplicationRegions$ = AddKeyReplicationRegions$;
|
|
714
1918
|
exports.AddKeyReplicationRegionsCommand = AddKeyReplicationRegionsCommand;
|
|
1919
|
+
exports.AddKeyReplicationRegionsInput$ = AddKeyReplicationRegionsInput$;
|
|
1920
|
+
exports.AddKeyReplicationRegionsOutput$ = AddKeyReplicationRegionsOutput$;
|
|
1921
|
+
exports.Alias$ = Alias$;
|
|
715
1922
|
exports.As2805KeyVariant = As2805KeyVariant;
|
|
1923
|
+
exports.AssociateMpaTeam$ = AssociateMpaTeam$;
|
|
716
1924
|
exports.AssociateMpaTeamCommand = AssociateMpaTeamCommand;
|
|
1925
|
+
exports.AssociateMpaTeamInput$ = AssociateMpaTeamInput$;
|
|
1926
|
+
exports.AssociateMpaTeamOutput$ = AssociateMpaTeamOutput$;
|
|
717
1927
|
exports.AssociationState = AssociationState;
|
|
1928
|
+
exports.CertificateSubjectType$ = CertificateSubjectType$;
|
|
1929
|
+
exports.ConflictException = ConflictException;
|
|
1930
|
+
exports.ConflictException$ = ConflictException$;
|
|
1931
|
+
exports.CreateAlias$ = CreateAlias$;
|
|
718
1932
|
exports.CreateAliasCommand = CreateAliasCommand;
|
|
1933
|
+
exports.CreateAliasInput$ = CreateAliasInput$;
|
|
1934
|
+
exports.CreateAliasOutput$ = CreateAliasOutput$;
|
|
1935
|
+
exports.CreateKey$ = CreateKey$;
|
|
719
1936
|
exports.CreateKeyCommand = CreateKeyCommand;
|
|
1937
|
+
exports.CreateKeyInput$ = CreateKeyInput$;
|
|
1938
|
+
exports.CreateKeyOutput$ = CreateKeyOutput$;
|
|
1939
|
+
exports.DeleteAlias$ = DeleteAlias$;
|
|
720
1940
|
exports.DeleteAliasCommand = DeleteAliasCommand;
|
|
1941
|
+
exports.DeleteAliasInput$ = DeleteAliasInput$;
|
|
1942
|
+
exports.DeleteAliasOutput$ = DeleteAliasOutput$;
|
|
1943
|
+
exports.DeleteKey$ = DeleteKey$;
|
|
721
1944
|
exports.DeleteKeyCommand = DeleteKeyCommand;
|
|
1945
|
+
exports.DeleteKeyInput$ = DeleteKeyInput$;
|
|
1946
|
+
exports.DeleteKeyOutput$ = DeleteKeyOutput$;
|
|
1947
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
722
1948
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1949
|
+
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
1950
|
+
exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
|
|
723
1951
|
exports.DeriveKeyUsage = DeriveKeyUsage;
|
|
1952
|
+
exports.DiffieHellmanDerivationData$ = DiffieHellmanDerivationData$;
|
|
1953
|
+
exports.DisableDefaultKeyReplicationRegions$ = DisableDefaultKeyReplicationRegions$;
|
|
724
1954
|
exports.DisableDefaultKeyReplicationRegionsCommand = DisableDefaultKeyReplicationRegionsCommand;
|
|
1955
|
+
exports.DisableDefaultKeyReplicationRegionsInput$ = DisableDefaultKeyReplicationRegionsInput$;
|
|
1956
|
+
exports.DisableDefaultKeyReplicationRegionsOutput$ = DisableDefaultKeyReplicationRegionsOutput$;
|
|
1957
|
+
exports.DisassociateMpaTeam$ = DisassociateMpaTeam$;
|
|
725
1958
|
exports.DisassociateMpaTeamCommand = DisassociateMpaTeamCommand;
|
|
1959
|
+
exports.DisassociateMpaTeamInput$ = DisassociateMpaTeamInput$;
|
|
1960
|
+
exports.DisassociateMpaTeamOutput$ = DisassociateMpaTeamOutput$;
|
|
1961
|
+
exports.EnableDefaultKeyReplicationRegions$ = EnableDefaultKeyReplicationRegions$;
|
|
726
1962
|
exports.EnableDefaultKeyReplicationRegionsCommand = EnableDefaultKeyReplicationRegionsCommand;
|
|
1963
|
+
exports.EnableDefaultKeyReplicationRegionsInput$ = EnableDefaultKeyReplicationRegionsInput$;
|
|
1964
|
+
exports.EnableDefaultKeyReplicationRegionsOutput$ = EnableDefaultKeyReplicationRegionsOutput$;
|
|
1965
|
+
exports.ExportAs2805KeyCryptogram$ = ExportAs2805KeyCryptogram$;
|
|
1966
|
+
exports.ExportAttributes$ = ExportAttributes$;
|
|
1967
|
+
exports.ExportDiffieHellmanTr31KeyBlock$ = ExportDiffieHellmanTr31KeyBlock$;
|
|
1968
|
+
exports.ExportDukptInitialKey$ = ExportDukptInitialKey$;
|
|
1969
|
+
exports.ExportKey$ = ExportKey$;
|
|
727
1970
|
exports.ExportKeyCommand = ExportKeyCommand;
|
|
1971
|
+
exports.ExportKeyCryptogram$ = ExportKeyCryptogram$;
|
|
1972
|
+
exports.ExportKeyInput$ = ExportKeyInput$;
|
|
1973
|
+
exports.ExportKeyMaterial$ = ExportKeyMaterial$;
|
|
1974
|
+
exports.ExportKeyOutput$ = ExportKeyOutput$;
|
|
1975
|
+
exports.ExportTr31KeyBlock$ = ExportTr31KeyBlock$;
|
|
1976
|
+
exports.ExportTr34KeyBlock$ = ExportTr34KeyBlock$;
|
|
1977
|
+
exports.GetAlias$ = GetAlias$;
|
|
728
1978
|
exports.GetAliasCommand = GetAliasCommand;
|
|
1979
|
+
exports.GetAliasInput$ = GetAliasInput$;
|
|
1980
|
+
exports.GetAliasOutput$ = GetAliasOutput$;
|
|
1981
|
+
exports.GetCertificateSigningRequest$ = GetCertificateSigningRequest$;
|
|
729
1982
|
exports.GetCertificateSigningRequestCommand = GetCertificateSigningRequestCommand;
|
|
1983
|
+
exports.GetCertificateSigningRequestInput$ = GetCertificateSigningRequestInput$;
|
|
1984
|
+
exports.GetCertificateSigningRequestOutput$ = GetCertificateSigningRequestOutput$;
|
|
1985
|
+
exports.GetDefaultKeyReplicationRegions$ = GetDefaultKeyReplicationRegions$;
|
|
730
1986
|
exports.GetDefaultKeyReplicationRegionsCommand = GetDefaultKeyReplicationRegionsCommand;
|
|
1987
|
+
exports.GetDefaultKeyReplicationRegionsInput$ = GetDefaultKeyReplicationRegionsInput$;
|
|
1988
|
+
exports.GetDefaultKeyReplicationRegionsOutput$ = GetDefaultKeyReplicationRegionsOutput$;
|
|
1989
|
+
exports.GetKey$ = GetKey$;
|
|
731
1990
|
exports.GetKeyCommand = GetKeyCommand;
|
|
1991
|
+
exports.GetKeyInput$ = GetKeyInput$;
|
|
1992
|
+
exports.GetKeyOutput$ = GetKeyOutput$;
|
|
1993
|
+
exports.GetMpaTeamAssociation$ = GetMpaTeamAssociation$;
|
|
732
1994
|
exports.GetMpaTeamAssociationCommand = GetMpaTeamAssociationCommand;
|
|
1995
|
+
exports.GetMpaTeamAssociationInput$ = GetMpaTeamAssociationInput$;
|
|
1996
|
+
exports.GetMpaTeamAssociationOutput$ = GetMpaTeamAssociationOutput$;
|
|
1997
|
+
exports.GetParametersForExport$ = GetParametersForExport$;
|
|
733
1998
|
exports.GetParametersForExportCommand = GetParametersForExportCommand;
|
|
1999
|
+
exports.GetParametersForExportInput$ = GetParametersForExportInput$;
|
|
2000
|
+
exports.GetParametersForExportOutput$ = GetParametersForExportOutput$;
|
|
2001
|
+
exports.GetParametersForImport$ = GetParametersForImport$;
|
|
734
2002
|
exports.GetParametersForImportCommand = GetParametersForImportCommand;
|
|
2003
|
+
exports.GetParametersForImportInput$ = GetParametersForImportInput$;
|
|
2004
|
+
exports.GetParametersForImportOutput$ = GetParametersForImportOutput$;
|
|
2005
|
+
exports.GetPublicKeyCertificate$ = GetPublicKeyCertificate$;
|
|
735
2006
|
exports.GetPublicKeyCertificateCommand = GetPublicKeyCertificateCommand;
|
|
2007
|
+
exports.GetPublicKeyCertificateInput$ = GetPublicKeyCertificateInput$;
|
|
2008
|
+
exports.GetPublicKeyCertificateOutput$ = GetPublicKeyCertificateOutput$;
|
|
2009
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
736
2010
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
2011
|
+
exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
|
|
2012
|
+
exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
|
|
2013
|
+
exports.ImportAs2805KeyCryptogram$ = ImportAs2805KeyCryptogram$;
|
|
2014
|
+
exports.ImportDiffieHellmanTr31KeyBlock$ = ImportDiffieHellmanTr31KeyBlock$;
|
|
2015
|
+
exports.ImportKey$ = ImportKey$;
|
|
737
2016
|
exports.ImportKeyCommand = ImportKeyCommand;
|
|
2017
|
+
exports.ImportKeyCryptogram$ = ImportKeyCryptogram$;
|
|
2018
|
+
exports.ImportKeyInput$ = ImportKeyInput$;
|
|
2019
|
+
exports.ImportKeyMaterial$ = ImportKeyMaterial$;
|
|
2020
|
+
exports.ImportKeyOutput$ = ImportKeyOutput$;
|
|
2021
|
+
exports.ImportTr31KeyBlock$ = ImportTr31KeyBlock$;
|
|
2022
|
+
exports.ImportTr34KeyBlock$ = ImportTr34KeyBlock$;
|
|
2023
|
+
exports.InternalServerException = InternalServerException;
|
|
2024
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2025
|
+
exports.Key$ = Key$;
|
|
738
2026
|
exports.KeyAlgorithm = KeyAlgorithm;
|
|
2027
|
+
exports.KeyAttributes$ = KeyAttributes$;
|
|
2028
|
+
exports.KeyBlockHeaders$ = KeyBlockHeaders$;
|
|
739
2029
|
exports.KeyCheckValueAlgorithm = KeyCheckValueAlgorithm;
|
|
740
2030
|
exports.KeyClass = KeyClass;
|
|
741
2031
|
exports.KeyDerivationFunction = KeyDerivationFunction;
|
|
742
2032
|
exports.KeyDerivationHashAlgorithm = KeyDerivationHashAlgorithm;
|
|
743
2033
|
exports.KeyExportability = KeyExportability;
|
|
744
2034
|
exports.KeyMaterialType = KeyMaterialType;
|
|
2035
|
+
exports.KeyModesOfUse$ = KeyModesOfUse$;
|
|
745
2036
|
exports.KeyOrigin = KeyOrigin;
|
|
746
2037
|
exports.KeyReplicationState = KeyReplicationState;
|
|
747
2038
|
exports.KeyState = KeyState;
|
|
2039
|
+
exports.KeySummary$ = KeySummary$;
|
|
748
2040
|
exports.KeyUsage = KeyUsage;
|
|
2041
|
+
exports.ListAliases$ = ListAliases$;
|
|
749
2042
|
exports.ListAliasesCommand = ListAliasesCommand;
|
|
2043
|
+
exports.ListAliasesInput$ = ListAliasesInput$;
|
|
2044
|
+
exports.ListAliasesOutput$ = ListAliasesOutput$;
|
|
2045
|
+
exports.ListKeys$ = ListKeys$;
|
|
750
2046
|
exports.ListKeysCommand = ListKeysCommand;
|
|
2047
|
+
exports.ListKeysInput$ = ListKeysInput$;
|
|
2048
|
+
exports.ListKeysOutput$ = ListKeysOutput$;
|
|
2049
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
751
2050
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2051
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2052
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
752
2053
|
exports.MpaOperation = MpaOperation;
|
|
2054
|
+
exports.MpaStatus$ = MpaStatus$;
|
|
2055
|
+
exports.MpaTeamAssociation$ = MpaTeamAssociation$;
|
|
753
2056
|
exports.MultiRegionKeyType = MultiRegionKeyType;
|
|
754
2057
|
exports.PaymentCryptography = PaymentCryptography;
|
|
755
2058
|
exports.PaymentCryptographyClient = PaymentCryptographyClient;
|
|
2059
|
+
exports.PaymentCryptographyServiceException = PaymentCryptographyServiceException;
|
|
2060
|
+
exports.PaymentCryptographyServiceException$ = PaymentCryptographyServiceException$;
|
|
2061
|
+
exports.PublicPolicyException = PublicPolicyException;
|
|
2062
|
+
exports.PublicPolicyException$ = PublicPolicyException$;
|
|
2063
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
756
2064
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2065
|
+
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
2066
|
+
exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
|
|
2067
|
+
exports.RemoveKeyReplicationRegions$ = RemoveKeyReplicationRegions$;
|
|
757
2068
|
exports.RemoveKeyReplicationRegionsCommand = RemoveKeyReplicationRegionsCommand;
|
|
2069
|
+
exports.RemoveKeyReplicationRegionsInput$ = RemoveKeyReplicationRegionsInput$;
|
|
2070
|
+
exports.RemoveKeyReplicationRegionsOutput$ = RemoveKeyReplicationRegionsOutput$;
|
|
2071
|
+
exports.ReplicationStatusType$ = ReplicationStatusType$;
|
|
2072
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2073
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2074
|
+
exports.RestoreKey$ = RestoreKey$;
|
|
758
2075
|
exports.RestoreKeyCommand = RestoreKeyCommand;
|
|
2076
|
+
exports.RestoreKeyInput$ = RestoreKeyInput$;
|
|
2077
|
+
exports.RestoreKeyOutput$ = RestoreKeyOutput$;
|
|
2078
|
+
exports.RootCertificatePublicKey$ = RootCertificatePublicKey$;
|
|
2079
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2080
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2081
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2082
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
759
2083
|
exports.SessionStatus = SessionStatus;
|
|
760
2084
|
exports.SigningAlgorithmType = SigningAlgorithmType;
|
|
2085
|
+
exports.StartKeyUsage$ = StartKeyUsage$;
|
|
761
2086
|
exports.StartKeyUsageCommand = StartKeyUsageCommand;
|
|
2087
|
+
exports.StartKeyUsageInput$ = StartKeyUsageInput$;
|
|
2088
|
+
exports.StartKeyUsageOutput$ = StartKeyUsageOutput$;
|
|
2089
|
+
exports.StopKeyUsage$ = StopKeyUsage$;
|
|
762
2090
|
exports.StopKeyUsageCommand = StopKeyUsageCommand;
|
|
2091
|
+
exports.StopKeyUsageInput$ = StopKeyUsageInput$;
|
|
2092
|
+
exports.StopKeyUsageOutput$ = StopKeyUsageOutput$;
|
|
763
2093
|
exports.SymmetricKeyAlgorithm = SymmetricKeyAlgorithm;
|
|
2094
|
+
exports.Tag$ = Tag$;
|
|
2095
|
+
exports.TagResource$ = TagResource$;
|
|
764
2096
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2097
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2098
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2099
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2100
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
765
2101
|
exports.Tr34KeyBlockFormat = Tr34KeyBlockFormat;
|
|
2102
|
+
exports.TrustedCertificatePublicKey$ = TrustedCertificatePublicKey$;
|
|
2103
|
+
exports.UntagResource$ = UntagResource$;
|
|
766
2104
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2105
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2106
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2107
|
+
exports.UpdateAlias$ = UpdateAlias$;
|
|
767
2108
|
exports.UpdateAliasCommand = UpdateAliasCommand;
|
|
2109
|
+
exports.UpdateAliasInput$ = UpdateAliasInput$;
|
|
2110
|
+
exports.UpdateAliasOutput$ = UpdateAliasOutput$;
|
|
2111
|
+
exports.ValidationException = ValidationException;
|
|
2112
|
+
exports.ValidationException$ = ValidationException$;
|
|
2113
|
+
exports.WrappedKey$ = WrappedKey$;
|
|
768
2114
|
exports.WrappedKeyMaterialFormat = WrappedKeyMaterialFormat;
|
|
769
2115
|
exports.WrappingKeySpec = WrappingKeySpec;
|
|
2116
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
770
2117
|
exports.paginateListAliases = paginateListAliases;
|
|
771
2118
|
exports.paginateListKeys = paginateListKeys;
|
|
772
2119
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|