@aws-sdk/client-account 3.1075.0 → 3.1076.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 +714 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- 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/AccountServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -105
- 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 -402
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
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
|
-
|
|
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, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAccountHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "account",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAccountHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,609 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = { "authSchemes": [{ "name": "sigv4", "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, {}],
|
|
91
|
+
["https://account-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://account-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://account.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://account.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class AccountServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, AccountServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends AccountServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
errorType;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.errorType = opts.errorType;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConflictException extends AccountServiceException {
|
|
154
|
+
name = "ConflictException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
errorType;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "ConflictException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
164
|
+
this.errorType = opts.errorType;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServerException extends AccountServiceException {
|
|
168
|
+
name = "InternalServerException";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
$retryable = {};
|
|
171
|
+
errorType;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InternalServerException",
|
|
175
|
+
$fault: "server",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
179
|
+
this.errorType = opts.errorType;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends AccountServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
errorType;
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "ResourceNotFoundException",
|
|
189
|
+
$fault: "client",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
193
|
+
this.errorType = opts.errorType;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
class TooManyRequestsException extends AccountServiceException {
|
|
197
|
+
name = "TooManyRequestsException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
$retryable = {
|
|
200
|
+
throttling: true,
|
|
201
|
+
};
|
|
202
|
+
errorType;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "TooManyRequestsException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
210
|
+
this.errorType = opts.errorType;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class ValidationException extends AccountServiceException {
|
|
214
|
+
name = "ValidationException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
reason;
|
|
217
|
+
fieldList;
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "ValidationException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
225
|
+
this.reason = opts.reason;
|
|
226
|
+
this.fieldList = opts.fieldList;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
class ResourceUnavailableException extends AccountServiceException {
|
|
230
|
+
name = "ResourceUnavailableException";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
errorType;
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "ResourceUnavailableException",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
240
|
+
this.errorType = opts.errorType;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const _AC = "AlternateContact";
|
|
245
|
+
const _ACD = "AccountCreatedDate";
|
|
246
|
+
const _ACT = "AlternateContactType";
|
|
247
|
+
const _ADE = "AccessDeniedException";
|
|
248
|
+
const _AI = "AccountId";
|
|
249
|
+
const _AL = "AddressLine";
|
|
250
|
+
const _ALd = "AddressLine1";
|
|
251
|
+
const _ALdd = "AddressLine2";
|
|
252
|
+
const _ALddr = "AddressLine3";
|
|
253
|
+
const _AN = "AccountName";
|
|
254
|
+
const _APEU = "AcceptPrimaryEmailUpdate";
|
|
255
|
+
const _APEUR = "AcceptPrimaryEmailUpdateRequest";
|
|
256
|
+
const _APEURc = "AcceptPrimaryEmailUpdateResponse";
|
|
257
|
+
const _AS = "AccountState";
|
|
258
|
+
const _C = "City";
|
|
259
|
+
const _CC = "CountryCode";
|
|
260
|
+
const _CE = "ConflictException";
|
|
261
|
+
const _CI = "ContactInformation";
|
|
262
|
+
const _CIPN = "ContactInformationPhoneNumber";
|
|
263
|
+
const _CN = "CompanyName";
|
|
264
|
+
const _DAC = "DeleteAlternateContact";
|
|
265
|
+
const _DACR = "DeleteAlternateContactRequest";
|
|
266
|
+
const _DOC = "DistrictOrCounty";
|
|
267
|
+
const _DR = "DisableRegion";
|
|
268
|
+
const _DRR = "DisableRegionRequest";
|
|
269
|
+
const _EA = "EmailAddress";
|
|
270
|
+
const _ER = "EnableRegion";
|
|
271
|
+
const _ERR = "EnableRegionRequest";
|
|
272
|
+
const _FN = "FullName";
|
|
273
|
+
const _GAC = "GetAlternateContact";
|
|
274
|
+
const _GACR = "GetAlternateContactRequest";
|
|
275
|
+
const _GACRe = "GetAlternateContactResponse";
|
|
276
|
+
const _GAI = "GetAccountInformation";
|
|
277
|
+
const _GAIR = "GetAccountInformationRequest";
|
|
278
|
+
const _GAIRe = "GetAccountInformationResponse";
|
|
279
|
+
const _GCAI = "GovCloudAccountId";
|
|
280
|
+
const _GCI = "GetContactInformation";
|
|
281
|
+
const _GCIR = "GetContactInformationRequest";
|
|
282
|
+
const _GCIRe = "GetContactInformationResponse";
|
|
283
|
+
const _GGCAI = "GetGovCloudAccountInformation";
|
|
284
|
+
const _GGCAIR = "GetGovCloudAccountInformationRequest";
|
|
285
|
+
const _GGCAIRe = "GetGovCloudAccountInformationResponse";
|
|
286
|
+
const _GPE = "GetPrimaryEmail";
|
|
287
|
+
const _GPER = "GetPrimaryEmailRequest";
|
|
288
|
+
const _GPERe = "GetPrimaryEmailResponse";
|
|
289
|
+
const _GROS = "GetRegionOptStatus";
|
|
290
|
+
const _GROSR = "GetRegionOptStatusRequest";
|
|
291
|
+
const _GROSRe = "GetRegionOptStatusResponse";
|
|
292
|
+
const _ISE = "InternalServerException";
|
|
293
|
+
const _LR = "ListRegions";
|
|
294
|
+
const _LRR = "ListRegionsRequest";
|
|
295
|
+
const _LRRi = "ListRegionsResponse";
|
|
296
|
+
const _MR = "MaxResults";
|
|
297
|
+
const _N = "Name";
|
|
298
|
+
const _NT = "NextToken";
|
|
299
|
+
const _O = "Otp";
|
|
300
|
+
const _PAC = "PutAlternateContact";
|
|
301
|
+
const _PACR = "PutAlternateContactRequest";
|
|
302
|
+
const _PAN = "PutAccountName";
|
|
303
|
+
const _PANR = "PutAccountNameRequest";
|
|
304
|
+
const _PC = "PostalCode";
|
|
305
|
+
const _PCI = "PutContactInformation";
|
|
306
|
+
const _PCIR = "PutContactInformationRequest";
|
|
307
|
+
const _PE = "PrimaryEmail";
|
|
308
|
+
const _PEA = "PrimaryEmailAddress";
|
|
309
|
+
const _PN = "PhoneNumber";
|
|
310
|
+
const _R = "Regions";
|
|
311
|
+
const _RN = "RegionName";
|
|
312
|
+
const _RNFE = "ResourceNotFoundException";
|
|
313
|
+
const _ROL = "RegionOptList";
|
|
314
|
+
const _ROS = "RegionOptStatus";
|
|
315
|
+
const _ROSC = "RegionOptStatusContains";
|
|
316
|
+
const _RUE = "ResourceUnavailableException";
|
|
317
|
+
const _Re = "Region";
|
|
318
|
+
const _S = "Status";
|
|
319
|
+
const _SAI = "StandardAccountId";
|
|
320
|
+
const _SOR = "StateOrRegion";
|
|
321
|
+
const _SPEU = "StartPrimaryEmailUpdate";
|
|
322
|
+
const _SPEUR = "StartPrimaryEmailUpdateRequest";
|
|
323
|
+
const _SPEURt = "StartPrimaryEmailUpdateResponse";
|
|
324
|
+
const _SS = "SensitiveString";
|
|
325
|
+
const _T = "Title";
|
|
326
|
+
const _TMRE = "TooManyRequestsException";
|
|
327
|
+
const _VE = "ValidationException";
|
|
328
|
+
const _VEF = "ValidationExceptionField";
|
|
329
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
330
|
+
const _WU = "WebsiteUrl";
|
|
331
|
+
const _c = "client";
|
|
332
|
+
const _e = "error";
|
|
333
|
+
const _eT = "errorType";
|
|
334
|
+
const _fL = "fieldList";
|
|
335
|
+
const _h = "http";
|
|
336
|
+
const _hE = "httpError";
|
|
337
|
+
const _hH = "httpHeader";
|
|
338
|
+
const _m = "message";
|
|
339
|
+
const _n = "name";
|
|
340
|
+
const _r = "reason";
|
|
341
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.account";
|
|
342
|
+
const _se = "server";
|
|
343
|
+
const _xaE = "x-amzn-ErrorType";
|
|
344
|
+
const n0 = "com.amazonaws.account";
|
|
345
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
346
|
+
var AccountServiceException$ = [-3, _s, "AccountServiceException", 0, [], []];
|
|
347
|
+
_s_registry.registerError(AccountServiceException$, AccountServiceException);
|
|
348
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
349
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
350
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
351
|
+
[_m, _eT],
|
|
352
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
353
|
+
];
|
|
354
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
355
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
356
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
357
|
+
[_m, _eT],
|
|
358
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
359
|
+
];
|
|
360
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
361
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
362
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
363
|
+
[_m, _eT],
|
|
364
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
365
|
+
];
|
|
366
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
367
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
368
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
369
|
+
[_m, _eT],
|
|
370
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
371
|
+
];
|
|
372
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
373
|
+
var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
374
|
+
{ [_e]: _c, [_hE]: 424 },
|
|
375
|
+
[_m, _eT],
|
|
376
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
377
|
+
];
|
|
378
|
+
n0_registry.registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
379
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
380
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
381
|
+
[_m, _eT],
|
|
382
|
+
[0, [0, { [_hH]: _xaE }]], 1
|
|
383
|
+
];
|
|
384
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
385
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
386
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
387
|
+
[_m, _r, _fL],
|
|
388
|
+
[[() => SensitiveString, 0], 0, [() => ValidationExceptionFieldList, 0]], 1
|
|
389
|
+
];
|
|
390
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
391
|
+
const errorTypeRegistries = [
|
|
392
|
+
_s_registry,
|
|
393
|
+
n0_registry,
|
|
394
|
+
];
|
|
395
|
+
var AccountName = [0, n0, _AN, 8, 0];
|
|
396
|
+
var AddressLine = [0, n0, _AL, 8, 0];
|
|
397
|
+
var City = [0, n0, _C, 8, 0];
|
|
398
|
+
var CompanyName = [0, n0, _CN, 8, 0];
|
|
399
|
+
var ContactInformationPhoneNumber = [0, n0, _CIPN, 8, 0];
|
|
400
|
+
var CountryCode = [0, n0, _CC, 8, 0];
|
|
401
|
+
var DistrictOrCounty = [0, n0, _DOC, 8, 0];
|
|
402
|
+
var EmailAddress = [0, n0, _EA, 8, 0];
|
|
403
|
+
var FullName = [0, n0, _FN, 8, 0];
|
|
404
|
+
var Name = [0, n0, _N, 8, 0];
|
|
405
|
+
var Otp = [0, n0, _O, 8, 0];
|
|
406
|
+
var PhoneNumber = [0, n0, _PN, 8, 0];
|
|
407
|
+
var PostalCode = [0, n0, _PC, 8, 0];
|
|
408
|
+
var PrimaryEmailAddress = [0, n0, _PEA, 8, 0];
|
|
409
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
410
|
+
var StateOrRegion = [0, n0, _SOR, 8, 0];
|
|
411
|
+
var Title = [0, n0, _T, 8, 0];
|
|
412
|
+
var WebsiteUrl = [0, n0, _WU, 8, 0];
|
|
413
|
+
var AcceptPrimaryEmailUpdateRequest$ = [3, n0, _APEUR,
|
|
414
|
+
0,
|
|
415
|
+
[_AI, _PE, _O],
|
|
416
|
+
[0, [() => PrimaryEmailAddress, 0], [() => Otp, 0]], 3
|
|
417
|
+
];
|
|
418
|
+
var AcceptPrimaryEmailUpdateResponse$ = [3, n0, _APEURc,
|
|
419
|
+
0,
|
|
420
|
+
[_S],
|
|
421
|
+
[0]
|
|
422
|
+
];
|
|
423
|
+
var AlternateContact$ = [3, n0, _AC,
|
|
424
|
+
0,
|
|
425
|
+
[_N, _T, _EA, _PN, _ACT],
|
|
426
|
+
[[() => Name, 0], [() => Title, 0], [() => EmailAddress, 0], [() => PhoneNumber, 0], 0]
|
|
427
|
+
];
|
|
428
|
+
var ContactInformation$ = [3, n0, _CI,
|
|
429
|
+
0,
|
|
430
|
+
[_FN, _ALd, _C, _PC, _CC, _PN, _ALdd, _ALddr, _SOR, _DOC, _CN, _WU],
|
|
431
|
+
[[() => FullName, 0], [() => AddressLine, 0], [() => City, 0], [() => PostalCode, 0], [() => CountryCode, 0], [() => ContactInformationPhoneNumber, 0], [() => AddressLine, 0], [() => AddressLine, 0], [() => StateOrRegion, 0], [() => DistrictOrCounty, 0], [() => CompanyName, 0], [() => WebsiteUrl, 0]], 6
|
|
432
|
+
];
|
|
433
|
+
var DeleteAlternateContactRequest$ = [3, n0, _DACR,
|
|
434
|
+
0,
|
|
435
|
+
[_ACT, _AI],
|
|
436
|
+
[0, 0], 1
|
|
437
|
+
];
|
|
438
|
+
var DisableRegionRequest$ = [3, n0, _DRR,
|
|
439
|
+
0,
|
|
440
|
+
[_RN, _AI],
|
|
441
|
+
[0, 0], 1
|
|
442
|
+
];
|
|
443
|
+
var EnableRegionRequest$ = [3, n0, _ERR,
|
|
444
|
+
0,
|
|
445
|
+
[_RN, _AI],
|
|
446
|
+
[0, 0], 1
|
|
447
|
+
];
|
|
448
|
+
var GetAccountInformationRequest$ = [3, n0, _GAIR,
|
|
449
|
+
0,
|
|
450
|
+
[_AI],
|
|
451
|
+
[0]
|
|
452
|
+
];
|
|
453
|
+
var GetAccountInformationResponse$ = [3, n0, _GAIRe,
|
|
454
|
+
0,
|
|
455
|
+
[_AI, _AN, _ACD, _AS],
|
|
456
|
+
[0, [() => AccountName, 0], 5, 0]
|
|
457
|
+
];
|
|
458
|
+
var GetAlternateContactRequest$ = [3, n0, _GACR,
|
|
459
|
+
0,
|
|
460
|
+
[_ACT, _AI],
|
|
461
|
+
[0, 0], 1
|
|
462
|
+
];
|
|
463
|
+
var GetAlternateContactResponse$ = [3, n0, _GACRe,
|
|
464
|
+
0,
|
|
465
|
+
[_AC],
|
|
466
|
+
[[() => AlternateContact$, 0]]
|
|
467
|
+
];
|
|
468
|
+
var GetContactInformationRequest$ = [3, n0, _GCIR,
|
|
469
|
+
0,
|
|
470
|
+
[_AI],
|
|
471
|
+
[0]
|
|
472
|
+
];
|
|
473
|
+
var GetContactInformationResponse$ = [3, n0, _GCIRe,
|
|
474
|
+
0,
|
|
475
|
+
[_CI],
|
|
476
|
+
[[() => ContactInformation$, 0]]
|
|
477
|
+
];
|
|
478
|
+
var GetGovCloudAccountInformationRequest$ = [3, n0, _GGCAIR,
|
|
479
|
+
0,
|
|
480
|
+
[_SAI],
|
|
481
|
+
[0]
|
|
482
|
+
];
|
|
483
|
+
var GetGovCloudAccountInformationResponse$ = [3, n0, _GGCAIRe,
|
|
484
|
+
0,
|
|
485
|
+
[_GCAI, _AS],
|
|
486
|
+
[0, 0], 2
|
|
487
|
+
];
|
|
488
|
+
var GetPrimaryEmailRequest$ = [3, n0, _GPER,
|
|
489
|
+
0,
|
|
490
|
+
[_AI],
|
|
491
|
+
[0], 1
|
|
492
|
+
];
|
|
493
|
+
var GetPrimaryEmailResponse$ = [3, n0, _GPERe,
|
|
494
|
+
0,
|
|
495
|
+
[_PE],
|
|
496
|
+
[[() => PrimaryEmailAddress, 0]]
|
|
497
|
+
];
|
|
498
|
+
var GetRegionOptStatusRequest$ = [3, n0, _GROSR,
|
|
499
|
+
0,
|
|
500
|
+
[_RN, _AI],
|
|
501
|
+
[0, 0], 1
|
|
502
|
+
];
|
|
503
|
+
var GetRegionOptStatusResponse$ = [3, n0, _GROSRe,
|
|
504
|
+
0,
|
|
505
|
+
[_RN, _ROS],
|
|
506
|
+
[0, 0]
|
|
507
|
+
];
|
|
508
|
+
var ListRegionsRequest$ = [3, n0, _LRR,
|
|
509
|
+
0,
|
|
510
|
+
[_AI, _MR, _NT, _ROSC],
|
|
511
|
+
[0, 1, 0, 64 | 0]
|
|
512
|
+
];
|
|
513
|
+
var ListRegionsResponse$ = [3, n0, _LRRi,
|
|
514
|
+
0,
|
|
515
|
+
[_NT, _R],
|
|
516
|
+
[0, () => RegionOptList]
|
|
517
|
+
];
|
|
518
|
+
var PutAccountNameRequest$ = [3, n0, _PANR,
|
|
519
|
+
0,
|
|
520
|
+
[_AN, _AI],
|
|
521
|
+
[[() => AccountName, 0], 0], 1
|
|
522
|
+
];
|
|
523
|
+
var PutAlternateContactRequest$ = [3, n0, _PACR,
|
|
524
|
+
0,
|
|
525
|
+
[_N, _T, _EA, _PN, _ACT, _AI],
|
|
526
|
+
[[() => Name, 0], [() => Title, 0], [() => EmailAddress, 0], [() => PhoneNumber, 0], 0, 0], 5
|
|
527
|
+
];
|
|
528
|
+
var PutContactInformationRequest$ = [3, n0, _PCIR,
|
|
529
|
+
0,
|
|
530
|
+
[_CI, _AI],
|
|
531
|
+
[[() => ContactInformation$, 0], 0], 1
|
|
532
|
+
];
|
|
533
|
+
var Region$ = [3, n0, _Re,
|
|
534
|
+
0,
|
|
535
|
+
[_RN, _ROS],
|
|
536
|
+
[0, 0]
|
|
537
|
+
];
|
|
538
|
+
var StartPrimaryEmailUpdateRequest$ = [3, n0, _SPEUR,
|
|
539
|
+
0,
|
|
540
|
+
[_AI, _PE],
|
|
541
|
+
[0, [() => PrimaryEmailAddress, 0]], 2
|
|
542
|
+
];
|
|
543
|
+
var StartPrimaryEmailUpdateResponse$ = [3, n0, _SPEURt,
|
|
544
|
+
0,
|
|
545
|
+
[_S],
|
|
546
|
+
[0]
|
|
547
|
+
];
|
|
548
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
549
|
+
0,
|
|
550
|
+
[_n, _m],
|
|
551
|
+
[0, [() => SensitiveString, 0]], 2
|
|
552
|
+
];
|
|
553
|
+
var __Unit = "unit";
|
|
554
|
+
var RegionOptList = [1, n0, _ROL,
|
|
555
|
+
0, () => Region$
|
|
556
|
+
];
|
|
557
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
558
|
+
0, [() => ValidationExceptionField$,
|
|
559
|
+
0]
|
|
560
|
+
];
|
|
561
|
+
var AcceptPrimaryEmailUpdate$ = [9, n0, _APEU,
|
|
562
|
+
{ [_h]: ["POST", "/acceptPrimaryEmailUpdate", 200] }, () => AcceptPrimaryEmailUpdateRequest$, () => AcceptPrimaryEmailUpdateResponse$
|
|
563
|
+
];
|
|
564
|
+
var DeleteAlternateContact$ = [9, n0, _DAC,
|
|
565
|
+
{ [_h]: ["POST", "/deleteAlternateContact", 200] }, () => DeleteAlternateContactRequest$, () => __Unit
|
|
566
|
+
];
|
|
567
|
+
var DisableRegion$ = [9, n0, _DR,
|
|
568
|
+
{ [_h]: ["POST", "/disableRegion", 200] }, () => DisableRegionRequest$, () => __Unit
|
|
569
|
+
];
|
|
570
|
+
var EnableRegion$ = [9, n0, _ER,
|
|
571
|
+
{ [_h]: ["POST", "/enableRegion", 200] }, () => EnableRegionRequest$, () => __Unit
|
|
572
|
+
];
|
|
573
|
+
var GetAccountInformation$ = [9, n0, _GAI,
|
|
574
|
+
{ [_h]: ["POST", "/getAccountInformation", 200] }, () => GetAccountInformationRequest$, () => GetAccountInformationResponse$
|
|
575
|
+
];
|
|
576
|
+
var GetAlternateContact$ = [9, n0, _GAC,
|
|
577
|
+
{ [_h]: ["POST", "/getAlternateContact", 200] }, () => GetAlternateContactRequest$, () => GetAlternateContactResponse$
|
|
578
|
+
];
|
|
579
|
+
var GetContactInformation$ = [9, n0, _GCI,
|
|
580
|
+
{ [_h]: ["POST", "/getContactInformation", 200] }, () => GetContactInformationRequest$, () => GetContactInformationResponse$
|
|
581
|
+
];
|
|
582
|
+
var GetGovCloudAccountInformation$ = [9, n0, _GGCAI,
|
|
583
|
+
{ [_h]: ["POST", "/getGovCloudAccountInformation", 200] }, () => GetGovCloudAccountInformationRequest$, () => GetGovCloudAccountInformationResponse$
|
|
584
|
+
];
|
|
585
|
+
var GetPrimaryEmail$ = [9, n0, _GPE,
|
|
586
|
+
{ [_h]: ["POST", "/getPrimaryEmail", 200] }, () => GetPrimaryEmailRequest$, () => GetPrimaryEmailResponse$
|
|
587
|
+
];
|
|
588
|
+
var GetRegionOptStatus$ = [9, n0, _GROS,
|
|
589
|
+
{ [_h]: ["POST", "/getRegionOptStatus", 200] }, () => GetRegionOptStatusRequest$, () => GetRegionOptStatusResponse$
|
|
590
|
+
];
|
|
591
|
+
var ListRegions$ = [9, n0, _LR,
|
|
592
|
+
{ [_h]: ["POST", "/listRegions", 200] }, () => ListRegionsRequest$, () => ListRegionsResponse$
|
|
593
|
+
];
|
|
594
|
+
var PutAccountName$ = [9, n0, _PAN,
|
|
595
|
+
{ [_h]: ["POST", "/putAccountName", 200] }, () => PutAccountNameRequest$, () => __Unit
|
|
596
|
+
];
|
|
597
|
+
var PutAlternateContact$ = [9, n0, _PAC,
|
|
598
|
+
{ [_h]: ["POST", "/putAlternateContact", 200] }, () => PutAlternateContactRequest$, () => __Unit
|
|
599
|
+
];
|
|
600
|
+
var PutContactInformation$ = [9, n0, _PCI,
|
|
601
|
+
{ [_h]: ["POST", "/putContactInformation", 200] }, () => PutContactInformationRequest$, () => __Unit
|
|
602
|
+
];
|
|
603
|
+
var StartPrimaryEmailUpdate$ = [9, n0, _SPEU,
|
|
604
|
+
{ [_h]: ["POST", "/startPrimaryEmailUpdate", 200] }, () => StartPrimaryEmailUpdateRequest$, () => StartPrimaryEmailUpdateResponse$
|
|
605
|
+
];
|
|
606
|
+
|
|
607
|
+
const getRuntimeConfig$1 = (config) => {
|
|
608
|
+
return {
|
|
609
|
+
apiVersion: "2021-02-01",
|
|
610
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
611
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
612
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
613
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
614
|
+
extensions: config?.extensions ?? [],
|
|
615
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAccountHttpAuthSchemeProvider,
|
|
616
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
617
|
+
{
|
|
618
|
+
schemeId: "aws.auth#sigv4",
|
|
619
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
620
|
+
signer: new AwsSdkSigV4Signer(),
|
|
621
|
+
},
|
|
622
|
+
],
|
|
623
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
624
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
625
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
626
|
+
defaultNamespace: "com.amazonaws.account",
|
|
627
|
+
errorTypeRegistries,
|
|
628
|
+
version: "2021-02-01",
|
|
629
|
+
serviceTarget: "Account",
|
|
630
|
+
},
|
|
631
|
+
serviceId: config?.serviceId ?? "Account",
|
|
632
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
633
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
634
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
|
|
638
|
+
const getRuntimeConfig = (config) => {
|
|
639
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
640
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
641
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
642
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
643
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
644
|
+
const loaderConfig = {
|
|
645
|
+
profile: config?.profile,
|
|
646
|
+
logger: clientSharedValues.logger,
|
|
647
|
+
};
|
|
648
|
+
return {
|
|
649
|
+
...clientSharedValues,
|
|
650
|
+
...config,
|
|
651
|
+
runtime: "node",
|
|
652
|
+
defaultsMode,
|
|
653
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
654
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
655
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
656
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
657
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
658
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
659
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
660
|
+
retryMode: config?.retryMode ??
|
|
661
|
+
loadConfig({
|
|
662
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
663
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
664
|
+
}, config),
|
|
665
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
666
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
667
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
668
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
669
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
|
|
34
673
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
674
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
675
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -350,27 +989,87 @@ const RegionOptStatus = {
|
|
|
350
989
|
ENABLING: "ENABLING",
|
|
351
990
|
};
|
|
352
991
|
|
|
992
|
+
exports.AcceptPrimaryEmailUpdate$ = AcceptPrimaryEmailUpdate$;
|
|
353
993
|
exports.AcceptPrimaryEmailUpdateCommand = AcceptPrimaryEmailUpdateCommand;
|
|
994
|
+
exports.AcceptPrimaryEmailUpdateRequest$ = AcceptPrimaryEmailUpdateRequest$;
|
|
995
|
+
exports.AcceptPrimaryEmailUpdateResponse$ = AcceptPrimaryEmailUpdateResponse$;
|
|
996
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
997
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
354
998
|
exports.Account = Account;
|
|
355
999
|
exports.AccountClient = AccountClient;
|
|
1000
|
+
exports.AccountServiceException = AccountServiceException;
|
|
1001
|
+
exports.AccountServiceException$ = AccountServiceException$;
|
|
356
1002
|
exports.AccountState = AccountState;
|
|
1003
|
+
exports.AlternateContact$ = AlternateContact$;
|
|
357
1004
|
exports.AlternateContactType = AlternateContactType;
|
|
358
1005
|
exports.AwsAccountState = AwsAccountState;
|
|
1006
|
+
exports.ConflictException = ConflictException;
|
|
1007
|
+
exports.ConflictException$ = ConflictException$;
|
|
1008
|
+
exports.ContactInformation$ = ContactInformation$;
|
|
1009
|
+
exports.DeleteAlternateContact$ = DeleteAlternateContact$;
|
|
359
1010
|
exports.DeleteAlternateContactCommand = DeleteAlternateContactCommand;
|
|
1011
|
+
exports.DeleteAlternateContactRequest$ = DeleteAlternateContactRequest$;
|
|
1012
|
+
exports.DisableRegion$ = DisableRegion$;
|
|
360
1013
|
exports.DisableRegionCommand = DisableRegionCommand;
|
|
1014
|
+
exports.DisableRegionRequest$ = DisableRegionRequest$;
|
|
1015
|
+
exports.EnableRegion$ = EnableRegion$;
|
|
361
1016
|
exports.EnableRegionCommand = EnableRegionCommand;
|
|
1017
|
+
exports.EnableRegionRequest$ = EnableRegionRequest$;
|
|
1018
|
+
exports.GetAccountInformation$ = GetAccountInformation$;
|
|
362
1019
|
exports.GetAccountInformationCommand = GetAccountInformationCommand;
|
|
1020
|
+
exports.GetAccountInformationRequest$ = GetAccountInformationRequest$;
|
|
1021
|
+
exports.GetAccountInformationResponse$ = GetAccountInformationResponse$;
|
|
1022
|
+
exports.GetAlternateContact$ = GetAlternateContact$;
|
|
363
1023
|
exports.GetAlternateContactCommand = GetAlternateContactCommand;
|
|
1024
|
+
exports.GetAlternateContactRequest$ = GetAlternateContactRequest$;
|
|
1025
|
+
exports.GetAlternateContactResponse$ = GetAlternateContactResponse$;
|
|
1026
|
+
exports.GetContactInformation$ = GetContactInformation$;
|
|
364
1027
|
exports.GetContactInformationCommand = GetContactInformationCommand;
|
|
1028
|
+
exports.GetContactInformationRequest$ = GetContactInformationRequest$;
|
|
1029
|
+
exports.GetContactInformationResponse$ = GetContactInformationResponse$;
|
|
1030
|
+
exports.GetGovCloudAccountInformation$ = GetGovCloudAccountInformation$;
|
|
365
1031
|
exports.GetGovCloudAccountInformationCommand = GetGovCloudAccountInformationCommand;
|
|
1032
|
+
exports.GetGovCloudAccountInformationRequest$ = GetGovCloudAccountInformationRequest$;
|
|
1033
|
+
exports.GetGovCloudAccountInformationResponse$ = GetGovCloudAccountInformationResponse$;
|
|
1034
|
+
exports.GetPrimaryEmail$ = GetPrimaryEmail$;
|
|
366
1035
|
exports.GetPrimaryEmailCommand = GetPrimaryEmailCommand;
|
|
1036
|
+
exports.GetPrimaryEmailRequest$ = GetPrimaryEmailRequest$;
|
|
1037
|
+
exports.GetPrimaryEmailResponse$ = GetPrimaryEmailResponse$;
|
|
1038
|
+
exports.GetRegionOptStatus$ = GetRegionOptStatus$;
|
|
367
1039
|
exports.GetRegionOptStatusCommand = GetRegionOptStatusCommand;
|
|
1040
|
+
exports.GetRegionOptStatusRequest$ = GetRegionOptStatusRequest$;
|
|
1041
|
+
exports.GetRegionOptStatusResponse$ = GetRegionOptStatusResponse$;
|
|
1042
|
+
exports.InternalServerException = InternalServerException;
|
|
1043
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1044
|
+
exports.ListRegions$ = ListRegions$;
|
|
368
1045
|
exports.ListRegionsCommand = ListRegionsCommand;
|
|
1046
|
+
exports.ListRegionsRequest$ = ListRegionsRequest$;
|
|
1047
|
+
exports.ListRegionsResponse$ = ListRegionsResponse$;
|
|
369
1048
|
exports.PrimaryEmailUpdateStatus = PrimaryEmailUpdateStatus;
|
|
1049
|
+
exports.PutAccountName$ = PutAccountName$;
|
|
370
1050
|
exports.PutAccountNameCommand = PutAccountNameCommand;
|
|
1051
|
+
exports.PutAccountNameRequest$ = PutAccountNameRequest$;
|
|
1052
|
+
exports.PutAlternateContact$ = PutAlternateContact$;
|
|
371
1053
|
exports.PutAlternateContactCommand = PutAlternateContactCommand;
|
|
1054
|
+
exports.PutAlternateContactRequest$ = PutAlternateContactRequest$;
|
|
1055
|
+
exports.PutContactInformation$ = PutContactInformation$;
|
|
372
1056
|
exports.PutContactInformationCommand = PutContactInformationCommand;
|
|
1057
|
+
exports.PutContactInformationRequest$ = PutContactInformationRequest$;
|
|
1058
|
+
exports.Region$ = Region$;
|
|
373
1059
|
exports.RegionOptStatus = RegionOptStatus;
|
|
1060
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1061
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1062
|
+
exports.ResourceUnavailableException = ResourceUnavailableException;
|
|
1063
|
+
exports.ResourceUnavailableException$ = ResourceUnavailableException$;
|
|
1064
|
+
exports.StartPrimaryEmailUpdate$ = StartPrimaryEmailUpdate$;
|
|
374
1065
|
exports.StartPrimaryEmailUpdateCommand = StartPrimaryEmailUpdateCommand;
|
|
1066
|
+
exports.StartPrimaryEmailUpdateRequest$ = StartPrimaryEmailUpdateRequest$;
|
|
1067
|
+
exports.StartPrimaryEmailUpdateResponse$ = StartPrimaryEmailUpdateResponse$;
|
|
1068
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1069
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1070
|
+
exports.ValidationException = ValidationException;
|
|
1071
|
+
exports.ValidationException$ = ValidationException$;
|
|
1072
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
375
1073
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1074
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
376
1075
|
exports.paginateListRegions = paginateListRegions;
|