@aws-sdk/client-route-53-domains 3.1074.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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 { resolveHttpAuthSchemeConfig, defaultRoute53DomainsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptDomainTransferFromAnotherAwsAccount$, AssociateDelegationSignerToDomain$, CancelDomainTransferToAnotherAwsAccount$, CheckDomainAvailability$, CheckDomainTransferability$, DeleteDomain$, DeleteTagsForDomain$, DisableDomainAutoRenew$, DisableDomainTransferLock$, DisassociateDelegationSignerFromDomain$, EnableDomainAutoRenew$, EnableDomainTransferLock$, GetContactReachabilityStatus$, GetDomainDetail$, GetDomainSuggestions$, GetOperationDetail$, ListDomains$, ListOperations$, ListPrices$, ListTagsForDomain$, PushDomain$, RegisterDomain$, RejectDomainTransferFromAnotherAwsAccount$, RenewDomain$, ResendContactReachabilityEmail$, ResendOperationAuthorization$, RetrieveDomainAuthCode$, TransferDomain$, TransferDomainToAnotherAwsAccount$, UpdateDomainContact$, UpdateDomainContactPrivacy$, UpdateDomainNameservers$, UpdateTagsForDomain$, ViewBilling$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { Route53DomainsServiceException } = require("./models/Route53DomainsServiceException");
18
- exports.Route53DomainsServiceException = Route53DomainsServiceException;
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 { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultRoute53DomainsHttpAuthSchemeParametersProvider = 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: "route53domains",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultRoute53DomainsHttpAuthSchemeProvider = (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,1111 @@ 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 = {}, 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, i],
91
+ ["https://route53domains-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://route53domains-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://route53domains.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://route53domains.{Region}.{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 Route53DomainsServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, Route53DomainsServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class DomainLimitExceeded extends Route53DomainsServiceException {
140
+ name = "DomainLimitExceeded";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "DomainLimitExceeded",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, DomainLimitExceeded.prototype);
149
+ }
150
+ }
151
+ class InvalidInput extends Route53DomainsServiceException {
152
+ name = "InvalidInput";
153
+ $fault = "client";
154
+ constructor(opts) {
155
+ super({
156
+ name: "InvalidInput",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, InvalidInput.prototype);
161
+ }
162
+ }
163
+ class OperationLimitExceeded extends Route53DomainsServiceException {
164
+ name = "OperationLimitExceeded";
165
+ $fault = "client";
166
+ constructor(opts) {
167
+ super({
168
+ name: "OperationLimitExceeded",
169
+ $fault: "client",
170
+ ...opts,
171
+ });
172
+ Object.setPrototypeOf(this, OperationLimitExceeded.prototype);
173
+ }
174
+ }
175
+ class UnsupportedTLD extends Route53DomainsServiceException {
176
+ name = "UnsupportedTLD";
177
+ $fault = "client";
178
+ constructor(opts) {
179
+ super({
180
+ name: "UnsupportedTLD",
181
+ $fault: "client",
182
+ ...opts,
183
+ });
184
+ Object.setPrototypeOf(this, UnsupportedTLD.prototype);
185
+ }
186
+ }
187
+ class DnssecLimitExceeded extends Route53DomainsServiceException {
188
+ name = "DnssecLimitExceeded";
189
+ $fault = "client";
190
+ constructor(opts) {
191
+ super({
192
+ name: "DnssecLimitExceeded",
193
+ $fault: "client",
194
+ ...opts,
195
+ });
196
+ Object.setPrototypeOf(this, DnssecLimitExceeded.prototype);
197
+ }
198
+ }
199
+ class DuplicateRequest extends Route53DomainsServiceException {
200
+ name = "DuplicateRequest";
201
+ $fault = "client";
202
+ requestId;
203
+ constructor(opts) {
204
+ super({
205
+ name: "DuplicateRequest",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, DuplicateRequest.prototype);
210
+ this.requestId = opts.requestId;
211
+ }
212
+ }
213
+ class TLDRulesViolation extends Route53DomainsServiceException {
214
+ name = "TLDRulesViolation";
215
+ $fault = "client";
216
+ constructor(opts) {
217
+ super({
218
+ name: "TLDRulesViolation",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, TLDRulesViolation.prototype);
223
+ }
224
+ }
225
+ class TLDInMaintenance extends Route53DomainsServiceException {
226
+ name = "TLDInMaintenance";
227
+ $fault = "client";
228
+ tld;
229
+ constructor(opts) {
230
+ super({
231
+ name: "TLDInMaintenance",
232
+ $fault: "client",
233
+ ...opts,
234
+ });
235
+ Object.setPrototypeOf(this, TLDInMaintenance.prototype);
236
+ this.tld = opts.tld;
237
+ }
238
+ }
239
+
240
+ const _A = "Availability";
241
+ const _AC = "AuthCode";
242
+ const _ACE = "AbuseContactEmail";
243
+ const _ACP = "AbuseContactPhone";
244
+ const _ACd = "AdminContact";
245
+ const _ADSTD = "AssociateDelegationSignerToDomain";
246
+ const _ADSTDR = "AssociateDelegationSignerToDomainRequest";
247
+ const _ADSTDRs = "AssociateDelegationSignerToDomainResponse";
248
+ const _ADTFAAA = "AcceptDomainTransferFromAnotherAwsAccount";
249
+ const _ADTFAAAR = "AcceptDomainTransferFromAnotherAwsAccountRequest";
250
+ const _ADTFAAARc = "AcceptDomainTransferFromAnotherAwsAccountResponse";
251
+ const _AI = "AccountId";
252
+ const _AL = "AddressLine";
253
+ const _ALd = "AddressLine1";
254
+ const _ALdd = "AddressLine2";
255
+ const _AP = "AdminPrivacy";
256
+ const _AR = "AutoRenew";
257
+ const _Al = "Algorithm";
258
+ const _BC = "BillingContact";
259
+ const _BD = "BillDate";
260
+ const _BP = "BillingPrivacy";
261
+ const _BR = "BillingRecord";
262
+ const _BRi = "BillingRecords";
263
+ const _C = "City";
264
+ const _CC = "CountryCode";
265
+ const _CD = "ContactDetail";
266
+ const _CDA = "CheckDomainAvailability";
267
+ const _CDAR = "CheckDomainAvailabilityRequest";
268
+ const _CDARh = "CheckDomainAvailabilityResponse";
269
+ const _CDT = "CheckDomainTransferability";
270
+ const _CDTR = "CheckDomainTransferabilityRequest";
271
+ const _CDTRh = "CheckDomainTransferabilityResponse";
272
+ const _CDTTAAA = "CancelDomainTransferToAnotherAwsAccount";
273
+ const _CDTTAAAR = "CancelDomainTransferToAnotherAwsAccountRequest";
274
+ const _CDTTAAARa = "CancelDomainTransferToAnotherAwsAccountResponse";
275
+ const _CDr = "CreationDate";
276
+ const _CEY = "CurrentExpiryYear";
277
+ const _CN = "ContactName";
278
+ const _CNo = "ContactNumber";
279
+ const _COP = "ChangeOwnershipPrice";
280
+ const _CT = "ContactType";
281
+ const _Co = "Consent";
282
+ const _Cu = "Currency";
283
+ const _D = "Digest";
284
+ const _DAC = "DomainAuthCode";
285
+ const _DD = "DeleteDomain";
286
+ const _DDAR = "DisableDomainAutoRenew";
287
+ const _DDARR = "DisableDomainAutoRenewRequest";
288
+ const _DDARRi = "DisableDomainAutoRenewResponse";
289
+ const _DDR = "DeleteDomainRequest";
290
+ const _DDRe = "DeleteDomainResponse";
291
+ const _DDSFD = "DisassociateDelegationSignerFromDomain";
292
+ const _DDSFDR = "DisassociateDelegationSignerFromDomainRequest";
293
+ const _DDSFDRi = "DisassociateDelegationSignerFromDomainResponse";
294
+ const _DDTL = "DisableDomainTransferLock";
295
+ const _DDTLR = "DisableDomainTransferLockRequest";
296
+ const _DDTLRi = "DisableDomainTransferLockResponse";
297
+ const _DIY = "DurationInYears";
298
+ const _DK = "DnssecKey";
299
+ const _DKL = "DnssecKeyList";
300
+ const _DKn = "DnssecKeys";
301
+ const _DLE = "DnssecLimitExceeded";
302
+ const _DLEo = "DomainLimitExceeded";
303
+ const _DN = "DomainName";
304
+ const _DP = "DomainPrice";
305
+ const _DPL = "DomainPriceList";
306
+ const _DR = "DuplicateRequest";
307
+ const _DS = "DomainSuggestion";
308
+ const _DSA = "DnssecSigningAttributes";
309
+ const _DSL = "DomainSuggestionsList";
310
+ const _DSLo = "DomainSummaryList";
311
+ const _DSn = "DnsSec";
312
+ const _DSo = "DomainSummary";
313
+ const _DT = "DigestType";
314
+ const _DTFD = "DeleteTagsForDomain";
315
+ const _DTFDR = "DeleteTagsForDomainRequest";
316
+ const _DTFDRe = "DeleteTagsForDomainResponse";
317
+ const _DTo = "DomainTransferability";
318
+ const _Do = "Domains";
319
+ const _E = "Email";
320
+ const _ED = "ExpirationDate";
321
+ const _EDAR = "EnableDomainAutoRenew";
322
+ const _EDARR = "EnableDomainAutoRenewRequest";
323
+ const _EDARRn = "EnableDomainAutoRenewResponse";
324
+ const _EDTL = "EnableDomainTransferLock";
325
+ const _EDTLR = "EnableDomainTransferLockRequest";
326
+ const _EDTLRn = "EnableDomainTransferLockResponse";
327
+ const _EP = "ExtraParams";
328
+ const _EPL = "ExtraParamList";
329
+ const _EPV = "ExtraParamValue";
330
+ const _EPx = "ExtraParam";
331
+ const _En = "End";
332
+ const _Ex = "Expiry";
333
+ const _F = "Fax";
334
+ const _FC = "FilterCondition";
335
+ const _FCi = "FilterConditions";
336
+ const _FIAK = "FIAuthKey";
337
+ const _FN = "FirstName";
338
+ const _Fl = "Flags";
339
+ const _GCRS = "GetContactReachabilityStatus";
340
+ const _GCRSR = "GetContactReachabilityStatusRequest";
341
+ const _GCRSRe = "GetContactReachabilityStatusResponse";
342
+ const _GDD = "GetDomainDetail";
343
+ const _GDDR = "GetDomainDetailRequest";
344
+ const _GDDRe = "GetDomainDetailResponse";
345
+ const _GDS = "GetDomainSuggestions";
346
+ const _GDSR = "GetDomainSuggestionsRequest";
347
+ const _GDSRe = "GetDomainSuggestionsResponse";
348
+ const _GI = "GlueIps";
349
+ const _GOD = "GetOperationDetail";
350
+ const _GODR = "GetOperationDetailRequest";
351
+ const _GODRe = "GetOperationDetailResponse";
352
+ const _I = "Id";
353
+ const _II = "InvalidInput";
354
+ const _IIn = "InvoiceId";
355
+ const _ILC = "IdnLangCode";
356
+ const _K = "Key";
357
+ const _KT = "KeyTag";
358
+ const _LD = "ListDomains";
359
+ const _LDR = "ListDomainsRequest";
360
+ const _LDRi = "ListDomainsResponse";
361
+ const _LN = "LastName";
362
+ const _LO = "ListOperations";
363
+ const _LOR = "ListOperationsRequest";
364
+ const _LORi = "ListOperationsResponse";
365
+ const _LP = "ListPrices";
366
+ const _LPR = "ListPricesRequest";
367
+ const _LPRi = "ListPricesResponse";
368
+ const _LTFD = "ListTagsForDomain";
369
+ const _LTFDR = "ListTagsForDomainRequest";
370
+ const _LTFDRi = "ListTagsForDomainResponse";
371
+ const _LUD = "LastUpdatedDate";
372
+ const _M = "Message";
373
+ const _MI = "MaxItems";
374
+ const _MP = "MaxPrice";
375
+ const _Ma = "Marker";
376
+ const _N = "Name";
377
+ const _NL = "NameserverList";
378
+ const _NPM = "NextPageMarker";
379
+ const _Na = "Nameservers";
380
+ const _Nam = "Nameserver";
381
+ const _O = "Operation";
382
+ const _OA = "OnlyAvailable";
383
+ const _OI = "OperationId";
384
+ const _OLE = "OperationLimitExceeded";
385
+ const _ON = "OrganizationName";
386
+ const _OS = "OperationSummary";
387
+ const _OSL = "OperationSummaryList";
388
+ const _Op = "Operator";
389
+ const _Ope = "Operations";
390
+ const _P = "Password";
391
+ const _PD = "PushDomain";
392
+ const _PDR = "PushDomainRequest";
393
+ const _PK = "PublicKey";
394
+ const _PN = "PhoneNumber";
395
+ const _PPAC = "PrivacyProtectAdminContact";
396
+ const _PPBC = "PrivacyProtectBillingContact";
397
+ const _PPRC = "PrivacyProtectRegistrantContact";
398
+ const _PPTC = "PrivacyProtectTechContact";
399
+ const _PWC = "PriceWithCurrency";
400
+ const _Pr = "Price";
401
+ const _Pri = "Prices";
402
+ const _R = "Reseller";
403
+ const _RC = "RegistrantContact";
404
+ const _RCRE = "ResendContactReachabilityEmail";
405
+ const _RCRER = "ResendContactReachabilityEmailRequest";
406
+ const _RCRERe = "ResendContactReachabilityEmailResponse";
407
+ const _RD = "RegisterDomain";
408
+ const _RDAC = "RetrieveDomainAuthCode";
409
+ const _RDACR = "RetrieveDomainAuthCodeRequest";
410
+ const _RDACRe = "RetrieveDomainAuthCodeResponse";
411
+ const _RDI = "RegistryDomainId";
412
+ const _RDR = "RegisterDomainRequest";
413
+ const _RDRe = "RegisterDomainResponse";
414
+ const _RDRen = "RenewDomainRequest";
415
+ const _RDRene = "RenewDomainResponse";
416
+ const _RDTFAAA = "RejectDomainTransferFromAnotherAwsAccount";
417
+ const _RDTFAAAR = "RejectDomainTransferFromAnotherAwsAccountRequest";
418
+ const _RDTFAAARe = "RejectDomainTransferFromAnotherAwsAccountResponse";
419
+ const _RDe = "RenewDomain";
420
+ const _RN = "RegistrarName";
421
+ const _ROA = "ResendOperationAuthorization";
422
+ const _ROAR = "ResendOperationAuthorizationRequest";
423
+ const _RP = "RegistrationPrice";
424
+ const _RPe = "RenewalPrice";
425
+ const _RPeg = "RegistrantPrivacy";
426
+ const _RPes = "RestorationPrice";
427
+ const _RU = "RegistrarUrl";
428
+ const _S = "State";
429
+ const _SA = "SigningAttributes";
430
+ const _SB = "SortBy";
431
+ const _SC = "SuggestionCount";
432
+ const _SCo = "SortCondition";
433
+ const _SD = "SubmittedDate";
434
+ const _SF = "StatusFlag";
435
+ const _SL = "StatusList";
436
+ const _SLu = "SuggestionsList";
437
+ const _SO = "SortOrder";
438
+ const _SS = "SubmittedSince";
439
+ const _St = "Status";
440
+ const _Sta = "Start";
441
+ const _T = "Transferability";
442
+ const _TC = "TechContact";
443
+ const _TD = "TransferDomain";
444
+ const _TDR = "TransferDomainRequest";
445
+ const _TDRr = "TransferDomainResponse";
446
+ const _TDTAAA = "TransferDomainToAnotherAwsAccount";
447
+ const _TDTAAAR = "TransferDomainToAnotherAwsAccountRequest";
448
+ const _TDTAAARr = "TransferDomainToAnotherAwsAccountResponse";
449
+ const _TL = "TransferLock";
450
+ const _TLDIM = "TLDInMaintenance";
451
+ const _TLDRV = "TLDRulesViolation";
452
+ const _TLa = "TagList";
453
+ const _TP = "TransferPrice";
454
+ const _TPe = "TechPrivacy";
455
+ const _TTD = "TagsToDelete";
456
+ const _TTU = "TagsToUpdate";
457
+ const _Ta = "Target";
458
+ const _Tag = "Tag";
459
+ const _Tl = "Tld";
460
+ const _Tr = "Transferable";
461
+ const _Ty = "Type";
462
+ const _UD = "UpdatedDate";
463
+ const _UDC = "UpdateDomainContact";
464
+ const _UDCP = "UpdateDomainContactPrivacy";
465
+ const _UDCPR = "UpdateDomainContactPrivacyRequest";
466
+ const _UDCPRp = "UpdateDomainContactPrivacyResponse";
467
+ const _UDCR = "UpdateDomainContactRequest";
468
+ const _UDCRp = "UpdateDomainContactResponse";
469
+ const _UDN = "UpdateDomainNameservers";
470
+ const _UDNR = "UpdateDomainNameserversRequest";
471
+ const _UDNRp = "UpdateDomainNameserversResponse";
472
+ const _UTFD = "UpdateTagsForDomain";
473
+ const _UTFDR = "UpdateTagsForDomainRequest";
474
+ const _UTFDRp = "UpdateTagsForDomainResponse";
475
+ const _UTLD = "UnsupportedTLD";
476
+ const _V = "Value";
477
+ const _VB = "ViewBilling";
478
+ const _VBR = "ViewBillingRequest";
479
+ const _VBRi = "ViewBillingResponse";
480
+ const _Va = "Values";
481
+ const _WIS = "WhoIsServer";
482
+ const _ZC = "ZipCode";
483
+ const _c = "client";
484
+ const _dN = "domainName";
485
+ const _e = "error";
486
+ const _eA = "emailAddress";
487
+ const _hE = "httpError";
488
+ const _iAV = "isAlreadyVerified";
489
+ const _m = "message";
490
+ const _rI = "requestId";
491
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53domains";
492
+ const _st = "status";
493
+ const _t = "tld";
494
+ const n0 = "com.amazonaws.route53domains";
495
+ const _s_registry = TypeRegistry.for(_s);
496
+ var Route53DomainsServiceException$ = [-3, _s, "Route53DomainsServiceException", 0, [], []];
497
+ _s_registry.registerError(Route53DomainsServiceException$, Route53DomainsServiceException);
498
+ const n0_registry = TypeRegistry.for(n0);
499
+ var DnssecLimitExceeded$ = [-3, n0, _DLE,
500
+ { [_e]: _c, [_hE]: 400 },
501
+ [_m],
502
+ [0]
503
+ ];
504
+ n0_registry.registerError(DnssecLimitExceeded$, DnssecLimitExceeded);
505
+ var DomainLimitExceeded$ = [-3, n0, _DLEo,
506
+ { [_e]: _c, [_hE]: 400 },
507
+ [_m],
508
+ [0]
509
+ ];
510
+ n0_registry.registerError(DomainLimitExceeded$, DomainLimitExceeded);
511
+ var DuplicateRequest$ = [-3, n0, _DR,
512
+ { [_e]: _c, [_hE]: 400 },
513
+ [_rI, _m],
514
+ [0, 0]
515
+ ];
516
+ n0_registry.registerError(DuplicateRequest$, DuplicateRequest);
517
+ var InvalidInput$ = [-3, n0, _II,
518
+ { [_e]: _c, [_hE]: 400 },
519
+ [_m],
520
+ [0]
521
+ ];
522
+ n0_registry.registerError(InvalidInput$, InvalidInput);
523
+ var OperationLimitExceeded$ = [-3, n0, _OLE,
524
+ { [_e]: _c, [_hE]: 400 },
525
+ [_m],
526
+ [0]
527
+ ];
528
+ n0_registry.registerError(OperationLimitExceeded$, OperationLimitExceeded);
529
+ var TLDInMaintenance$ = [-3, n0, _TLDIM,
530
+ { [_e]: _c, [_hE]: 400 },
531
+ [_m, _t],
532
+ [0, 0]
533
+ ];
534
+ n0_registry.registerError(TLDInMaintenance$, TLDInMaintenance);
535
+ var TLDRulesViolation$ = [-3, n0, _TLDRV,
536
+ { [_e]: _c, [_hE]: 400 },
537
+ [_m],
538
+ [0]
539
+ ];
540
+ n0_registry.registerError(TLDRulesViolation$, TLDRulesViolation);
541
+ var UnsupportedTLD$ = [-3, n0, _UTLD,
542
+ { [_e]: _c, [_hE]: 400 },
543
+ [_m],
544
+ [0]
545
+ ];
546
+ n0_registry.registerError(UnsupportedTLD$, UnsupportedTLD);
547
+ const errorTypeRegistries = [
548
+ _s_registry,
549
+ n0_registry,
550
+ ];
551
+ var AddressLine = [0, n0, _AL, 8, 0];
552
+ var City = [0, n0, _C, 8, 0];
553
+ var ContactName = [0, n0, _CN, 8, 0];
554
+ var ContactNumber = [0, n0, _CNo, 8, 0];
555
+ var CountryCode$1 = [0, n0, _CC, 8, 0];
556
+ var DomainAuthCode = [0, n0, _DAC, 8, 0];
557
+ var Email = [0, n0, _E, 8, 0];
558
+ var ExtraParamValue = [0, n0, _EPV, 8, 0];
559
+ var FIAuthKey = [0, n0, _FIAK, 8, 0];
560
+ var Password = [0, n0, _P, 8, 0];
561
+ var State = [0, n0, _S, 8, 0];
562
+ var ZipCode = [0, n0, _ZC, 8, 0];
563
+ var AcceptDomainTransferFromAnotherAwsAccountRequest$ = [3, n0, _ADTFAAAR,
564
+ 0,
565
+ [_DN, _P],
566
+ [0, [() => Password, 0]], 2
567
+ ];
568
+ var AcceptDomainTransferFromAnotherAwsAccountResponse$ = [3, n0, _ADTFAAARc,
569
+ 0,
570
+ [_OI],
571
+ [0]
572
+ ];
573
+ var AssociateDelegationSignerToDomainRequest$ = [3, n0, _ADSTDR,
574
+ 0,
575
+ [_DN, _SA],
576
+ [0, () => DnssecSigningAttributes$], 2
577
+ ];
578
+ var AssociateDelegationSignerToDomainResponse$ = [3, n0, _ADSTDRs,
579
+ 0,
580
+ [_OI],
581
+ [0]
582
+ ];
583
+ var BillingRecord$ = [3, n0, _BR,
584
+ 0,
585
+ [_DN, _O, _IIn, _BD, _Pr],
586
+ [0, 0, 0, 4, 1]
587
+ ];
588
+ var CancelDomainTransferToAnotherAwsAccountRequest$ = [3, n0, _CDTTAAAR,
589
+ 0,
590
+ [_DN],
591
+ [0], 1
592
+ ];
593
+ var CancelDomainTransferToAnotherAwsAccountResponse$ = [3, n0, _CDTTAAARa,
594
+ 0,
595
+ [_OI],
596
+ [0]
597
+ ];
598
+ var CheckDomainAvailabilityRequest$ = [3, n0, _CDAR,
599
+ 0,
600
+ [_DN, _ILC],
601
+ [0, 0], 1
602
+ ];
603
+ var CheckDomainAvailabilityResponse$ = [3, n0, _CDARh,
604
+ 0,
605
+ [_A],
606
+ [0]
607
+ ];
608
+ var CheckDomainTransferabilityRequest$ = [3, n0, _CDTR,
609
+ 0,
610
+ [_DN, _AC],
611
+ [0, [() => DomainAuthCode, 0]], 1
612
+ ];
613
+ var CheckDomainTransferabilityResponse$ = [3, n0, _CDTRh,
614
+ 0,
615
+ [_T, _M],
616
+ [() => DomainTransferability$, 0]
617
+ ];
618
+ var Consent$ = [3, n0, _Co,
619
+ 0,
620
+ [_MP, _Cu],
621
+ [1, 0], 2
622
+ ];
623
+ var ContactDetail$ = [3, n0, _CD,
624
+ 8,
625
+ [_FN, _LN, _CT, _ON, _ALd, _ALdd, _C, _S, _CC, _ZC, _PN, _E, _F, _EP],
626
+ [[() => ContactName, 0], [() => ContactName, 0], 0, [() => ContactName, 0], [() => AddressLine, 0], [() => AddressLine, 0], [() => City, 0], [() => State, 0], [() => CountryCode$1, 0], [() => ZipCode, 0], [() => ContactNumber, 0], [() => Email, 0], [() => ContactNumber, 0], [() => ExtraParamList, 0]]
627
+ ];
628
+ var DeleteDomainRequest$ = [3, n0, _DDR,
629
+ 0,
630
+ [_DN],
631
+ [0], 1
632
+ ];
633
+ var DeleteDomainResponse$ = [3, n0, _DDRe,
634
+ 0,
635
+ [_OI],
636
+ [0]
637
+ ];
638
+ var DeleteTagsForDomainRequest$ = [3, n0, _DTFDR,
639
+ 0,
640
+ [_DN, _TTD],
641
+ [0, 64 | 0], 2
642
+ ];
643
+ var DeleteTagsForDomainResponse$ = [3, n0, _DTFDRe,
644
+ 0,
645
+ [],
646
+ []
647
+ ];
648
+ var DisableDomainAutoRenewRequest$ = [3, n0, _DDARR,
649
+ 0,
650
+ [_DN],
651
+ [0], 1
652
+ ];
653
+ var DisableDomainAutoRenewResponse$ = [3, n0, _DDARRi,
654
+ 0,
655
+ [],
656
+ []
657
+ ];
658
+ var DisableDomainTransferLockRequest$ = [3, n0, _DDTLR,
659
+ 0,
660
+ [_DN],
661
+ [0], 1
662
+ ];
663
+ var DisableDomainTransferLockResponse$ = [3, n0, _DDTLRi,
664
+ 0,
665
+ [_OI],
666
+ [0]
667
+ ];
668
+ var DisassociateDelegationSignerFromDomainRequest$ = [3, n0, _DDSFDR,
669
+ 0,
670
+ [_DN, _I],
671
+ [0, 0], 2
672
+ ];
673
+ var DisassociateDelegationSignerFromDomainResponse$ = [3, n0, _DDSFDRi,
674
+ 0,
675
+ [_OI],
676
+ [0]
677
+ ];
678
+ var DnssecKey$ = [3, n0, _DK,
679
+ 0,
680
+ [_Al, _Fl, _PK, _DT, _D, _KT, _I],
681
+ [1, 1, 0, 1, 0, 1, 0]
682
+ ];
683
+ var DnssecSigningAttributes$ = [3, n0, _DSA,
684
+ 0,
685
+ [_Al, _Fl, _PK],
686
+ [1, 1, 0]
687
+ ];
688
+ var DomainPrice$ = [3, n0, _DP,
689
+ 0,
690
+ [_N, _RP, _TP, _RPe, _COP, _RPes],
691
+ [0, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$]
692
+ ];
693
+ var DomainSuggestion$ = [3, n0, _DS,
694
+ 0,
695
+ [_DN, _A],
696
+ [0, 0]
697
+ ];
698
+ var DomainSummary$ = [3, n0, _DSo,
699
+ 0,
700
+ [_DN, _AR, _TL, _Ex],
701
+ [0, 2, 2, 4]
702
+ ];
703
+ var DomainTransferability$ = [3, n0, _DTo,
704
+ 0,
705
+ [_Tr],
706
+ [0]
707
+ ];
708
+ var EnableDomainAutoRenewRequest$ = [3, n0, _EDARR,
709
+ 0,
710
+ [_DN],
711
+ [0], 1
712
+ ];
713
+ var EnableDomainAutoRenewResponse$ = [3, n0, _EDARRn,
714
+ 0,
715
+ [],
716
+ []
717
+ ];
718
+ var EnableDomainTransferLockRequest$ = [3, n0, _EDTLR,
719
+ 0,
720
+ [_DN],
721
+ [0], 1
722
+ ];
723
+ var EnableDomainTransferLockResponse$ = [3, n0, _EDTLRn,
724
+ 0,
725
+ [_OI],
726
+ [0]
727
+ ];
728
+ var ExtraParam$ = [3, n0, _EPx,
729
+ 0,
730
+ [_N, _V],
731
+ [0, [() => ExtraParamValue, 0]], 2
732
+ ];
733
+ var FilterCondition$ = [3, n0, _FC,
734
+ 0,
735
+ [_N, _Op, _Va],
736
+ [0, 0, 64 | 0], 3
737
+ ];
738
+ var GetContactReachabilityStatusRequest$ = [3, n0, _GCRSR,
739
+ 0,
740
+ [_dN],
741
+ [0]
742
+ ];
743
+ var GetContactReachabilityStatusResponse$ = [3, n0, _GCRSRe,
744
+ 0,
745
+ [_dN, _st],
746
+ [0, 0]
747
+ ];
748
+ var GetDomainDetailRequest$ = [3, n0, _GDDR,
749
+ 0,
750
+ [_DN],
751
+ [0], 1
752
+ ];
753
+ var GetDomainDetailResponse$ = [3, n0, _GDDRe,
754
+ 0,
755
+ [_DN, _Na, _AR, _ACd, _RC, _TC, _AP, _RPeg, _TPe, _RN, _WIS, _RU, _ACE, _ACP, _RDI, _CDr, _UD, _ED, _R, _DSn, _SL, _DKn, _BC, _BP],
756
+ [0, () => NameserverList, 2, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], 2, 2, 2, 0, 0, 0, [() => Email, 0], [() => ContactNumber, 0], 0, 4, 4, 4, 0, 0, 64 | 0, () => DnssecKeyList, [() => ContactDetail$, 0], 2]
757
+ ];
758
+ var GetDomainSuggestionsRequest$ = [3, n0, _GDSR,
759
+ 0,
760
+ [_DN, _SC, _OA],
761
+ [0, 1, 2], 3
762
+ ];
763
+ var GetDomainSuggestionsResponse$ = [3, n0, _GDSRe,
764
+ 0,
765
+ [_SLu],
766
+ [() => DomainSuggestionsList]
767
+ ];
768
+ var GetOperationDetailRequest$ = [3, n0, _GODR,
769
+ 0,
770
+ [_OI],
771
+ [0], 1
772
+ ];
773
+ var GetOperationDetailResponse$ = [3, n0, _GODRe,
774
+ 0,
775
+ [_OI, _St, _M, _DN, _Ty, _SD, _LUD, _SF],
776
+ [0, 0, 0, 0, 0, 4, 4, 0]
777
+ ];
778
+ var ListDomainsRequest$ = [3, n0, _LDR,
779
+ 0,
780
+ [_FCi, _SCo, _Ma, _MI],
781
+ [() => FilterConditions, () => SortCondition$, 0, 1]
782
+ ];
783
+ var ListDomainsResponse$ = [3, n0, _LDRi,
784
+ 0,
785
+ [_Do, _NPM],
786
+ [() => DomainSummaryList, 0]
787
+ ];
788
+ var ListOperationsRequest$ = [3, n0, _LOR,
789
+ 0,
790
+ [_SS, _Ma, _MI, _St, _Ty, _SB, _SO],
791
+ [4, 0, 1, 64 | 0, 64 | 0, 0, 0]
792
+ ];
793
+ var ListOperationsResponse$ = [3, n0, _LORi,
794
+ 0,
795
+ [_Ope, _NPM],
796
+ [() => OperationSummaryList, 0]
797
+ ];
798
+ var ListPricesRequest$ = [3, n0, _LPR,
799
+ 0,
800
+ [_Tl, _Ma, _MI],
801
+ [0, 0, 1]
802
+ ];
803
+ var ListPricesResponse$ = [3, n0, _LPRi,
804
+ 0,
805
+ [_Pri, _NPM],
806
+ [() => DomainPriceList, 0]
807
+ ];
808
+ var ListTagsForDomainRequest$ = [3, n0, _LTFDR,
809
+ 0,
810
+ [_DN],
811
+ [0], 1
812
+ ];
813
+ var ListTagsForDomainResponse$ = [3, n0, _LTFDRi,
814
+ 0,
815
+ [_TLa],
816
+ [() => TagList]
817
+ ];
818
+ var Nameserver$ = [3, n0, _Nam,
819
+ 0,
820
+ [_N, _GI],
821
+ [0, 64 | 0], 1
822
+ ];
823
+ var OperationSummary$ = [3, n0, _OS,
824
+ 0,
825
+ [_OI, _St, _Ty, _SD, _DN, _M, _SF, _LUD],
826
+ [0, 0, 0, 4, 0, 0, 0, 4]
827
+ ];
828
+ var PriceWithCurrency$ = [3, n0, _PWC,
829
+ 0,
830
+ [_Pr, _Cu],
831
+ [1, 0], 2
832
+ ];
833
+ var PushDomainRequest$ = [3, n0, _PDR,
834
+ 0,
835
+ [_DN, _Ta],
836
+ [0, 0], 2
837
+ ];
838
+ var RegisterDomainRequest$ = [3, n0, _RDR,
839
+ 0,
840
+ [_DN, _DIY, _ACd, _RC, _TC, _ILC, _AR, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
841
+ [0, 1, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], 0, 2, 2, 2, 2, [() => ContactDetail$, 0], 2], 5
842
+ ];
843
+ var RegisterDomainResponse$ = [3, n0, _RDRe,
844
+ 0,
845
+ [_OI],
846
+ [0]
847
+ ];
848
+ var RejectDomainTransferFromAnotherAwsAccountRequest$ = [3, n0, _RDTFAAAR,
849
+ 0,
850
+ [_DN],
851
+ [0], 1
852
+ ];
853
+ var RejectDomainTransferFromAnotherAwsAccountResponse$ = [3, n0, _RDTFAAARe,
854
+ 0,
855
+ [_OI],
856
+ [0]
857
+ ];
858
+ var RenewDomainRequest$ = [3, n0, _RDRen,
859
+ 0,
860
+ [_DN, _CEY, _DIY],
861
+ [0, 1, 1], 2
862
+ ];
863
+ var RenewDomainResponse$ = [3, n0, _RDRene,
864
+ 0,
865
+ [_OI],
866
+ [0]
867
+ ];
868
+ var ResendContactReachabilityEmailRequest$ = [3, n0, _RCRER,
869
+ 0,
870
+ [_dN],
871
+ [0]
872
+ ];
873
+ var ResendContactReachabilityEmailResponse$ = [3, n0, _RCRERe,
874
+ 0,
875
+ [_dN, _eA, _iAV],
876
+ [0, [() => Email, 0], 2]
877
+ ];
878
+ var ResendOperationAuthorizationRequest$ = [3, n0, _ROAR,
879
+ 0,
880
+ [_OI],
881
+ [0], 1
882
+ ];
883
+ var RetrieveDomainAuthCodeRequest$ = [3, n0, _RDACR,
884
+ 0,
885
+ [_DN],
886
+ [0], 1
887
+ ];
888
+ var RetrieveDomainAuthCodeResponse$ = [3, n0, _RDACRe,
889
+ 0,
890
+ [_AC],
891
+ [[() => DomainAuthCode, 0]]
892
+ ];
893
+ var SortCondition$ = [3, n0, _SCo,
894
+ 0,
895
+ [_N, _SO],
896
+ [0, 0], 2
897
+ ];
898
+ var Tag$ = [3, n0, _Tag,
899
+ 0,
900
+ [_K, _V],
901
+ [0, 0]
902
+ ];
903
+ var TransferDomainRequest$ = [3, n0, _TDR,
904
+ 0,
905
+ [_DN, _ACd, _RC, _TC, _ILC, _DIY, _Na, _AC, _AR, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
906
+ [0, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], 0, 1, () => NameserverList, [() => DomainAuthCode, 0], 2, 2, 2, 2, [() => ContactDetail$, 0], 2], 4
907
+ ];
908
+ var TransferDomainResponse$ = [3, n0, _TDRr,
909
+ 0,
910
+ [_OI],
911
+ [0]
912
+ ];
913
+ var TransferDomainToAnotherAwsAccountRequest$ = [3, n0, _TDTAAAR,
914
+ 0,
915
+ [_DN, _AI],
916
+ [0, 0], 2
917
+ ];
918
+ var TransferDomainToAnotherAwsAccountResponse$ = [3, n0, _TDTAAARr,
919
+ 0,
920
+ [_OI, _P],
921
+ [0, [() => Password, 0]]
922
+ ];
923
+ var UpdateDomainContactPrivacyRequest$ = [3, n0, _UDCPR,
924
+ 0,
925
+ [_DN, _AP, _RPeg, _TPe, _BP],
926
+ [0, 2, 2, 2, 2], 1
927
+ ];
928
+ var UpdateDomainContactPrivacyResponse$ = [3, n0, _UDCPRp,
929
+ 0,
930
+ [_OI],
931
+ [0]
932
+ ];
933
+ var UpdateDomainContactRequest$ = [3, n0, _UDCR,
934
+ 0,
935
+ [_DN, _ACd, _RC, _TC, _Co, _BC],
936
+ [0, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], () => Consent$, [() => ContactDetail$, 0]], 1
937
+ ];
938
+ var UpdateDomainContactResponse$ = [3, n0, _UDCRp,
939
+ 0,
940
+ [_OI],
941
+ [0]
942
+ ];
943
+ var UpdateDomainNameserversRequest$ = [3, n0, _UDNR,
944
+ 0,
945
+ [_DN, _Na, _FIAK],
946
+ [0, () => NameserverList, [() => FIAuthKey, 0]], 2
947
+ ];
948
+ var UpdateDomainNameserversResponse$ = [3, n0, _UDNRp,
949
+ 0,
950
+ [_OI],
951
+ [0]
952
+ ];
953
+ var UpdateTagsForDomainRequest$ = [3, n0, _UTFDR,
954
+ 0,
955
+ [_DN, _TTU],
956
+ [0, () => TagList], 1
957
+ ];
958
+ var UpdateTagsForDomainResponse$ = [3, n0, _UTFDRp,
959
+ 0,
960
+ [],
961
+ []
962
+ ];
963
+ var ViewBillingRequest$ = [3, n0, _VBR,
964
+ 0,
965
+ [_Sta, _En, _Ma, _MI],
966
+ [4, 4, 0, 1]
967
+ ];
968
+ var ViewBillingResponse$ = [3, n0, _VBRi,
969
+ 0,
970
+ [_NPM, _BRi],
971
+ [0, () => BillingRecords]
972
+ ];
973
+ var __Unit = "unit";
974
+ var BillingRecords = [1, n0, _BRi,
975
+ 0, () => BillingRecord$
976
+ ];
977
+ var DnssecKeyList = [1, n0, _DKL,
978
+ 0, () => DnssecKey$
979
+ ];
980
+ var DomainPriceList = [1, n0, _DPL,
981
+ 0, () => DomainPrice$
982
+ ];
983
+ var DomainSuggestionsList = [1, n0, _DSL,
984
+ 0, () => DomainSuggestion$
985
+ ];
986
+ var DomainSummaryList = [1, n0, _DSLo,
987
+ 0, () => DomainSummary$
988
+ ];
989
+ var ExtraParamList = [1, n0, _EPL,
990
+ 0, [() => ExtraParam$,
991
+ 0]
992
+ ];
993
+ var FilterConditions = [1, n0, _FCi,
994
+ 0, () => FilterCondition$
995
+ ];
996
+ var NameserverList = [1, n0, _NL,
997
+ 0, () => Nameserver$
998
+ ];
999
+ var OperationSummaryList = [1, n0, _OSL,
1000
+ 0, () => OperationSummary$
1001
+ ];
1002
+ var TagList = [1, n0, _TLa,
1003
+ 0, () => Tag$
1004
+ ];
1005
+ var AcceptDomainTransferFromAnotherAwsAccount$ = [9, n0, _ADTFAAA,
1006
+ 0, () => AcceptDomainTransferFromAnotherAwsAccountRequest$, () => AcceptDomainTransferFromAnotherAwsAccountResponse$
1007
+ ];
1008
+ var AssociateDelegationSignerToDomain$ = [9, n0, _ADSTD,
1009
+ 0, () => AssociateDelegationSignerToDomainRequest$, () => AssociateDelegationSignerToDomainResponse$
1010
+ ];
1011
+ var CancelDomainTransferToAnotherAwsAccount$ = [9, n0, _CDTTAAA,
1012
+ 0, () => CancelDomainTransferToAnotherAwsAccountRequest$, () => CancelDomainTransferToAnotherAwsAccountResponse$
1013
+ ];
1014
+ var CheckDomainAvailability$ = [9, n0, _CDA,
1015
+ 0, () => CheckDomainAvailabilityRequest$, () => CheckDomainAvailabilityResponse$
1016
+ ];
1017
+ var CheckDomainTransferability$ = [9, n0, _CDT,
1018
+ 0, () => CheckDomainTransferabilityRequest$, () => CheckDomainTransferabilityResponse$
1019
+ ];
1020
+ var DeleteDomain$ = [9, n0, _DD,
1021
+ 0, () => DeleteDomainRequest$, () => DeleteDomainResponse$
1022
+ ];
1023
+ var DeleteTagsForDomain$ = [9, n0, _DTFD,
1024
+ 0, () => DeleteTagsForDomainRequest$, () => DeleteTagsForDomainResponse$
1025
+ ];
1026
+ var DisableDomainAutoRenew$ = [9, n0, _DDAR,
1027
+ 0, () => DisableDomainAutoRenewRequest$, () => DisableDomainAutoRenewResponse$
1028
+ ];
1029
+ var DisableDomainTransferLock$ = [9, n0, _DDTL,
1030
+ 0, () => DisableDomainTransferLockRequest$, () => DisableDomainTransferLockResponse$
1031
+ ];
1032
+ var DisassociateDelegationSignerFromDomain$ = [9, n0, _DDSFD,
1033
+ 0, () => DisassociateDelegationSignerFromDomainRequest$, () => DisassociateDelegationSignerFromDomainResponse$
1034
+ ];
1035
+ var EnableDomainAutoRenew$ = [9, n0, _EDAR,
1036
+ 0, () => EnableDomainAutoRenewRequest$, () => EnableDomainAutoRenewResponse$
1037
+ ];
1038
+ var EnableDomainTransferLock$ = [9, n0, _EDTL,
1039
+ 0, () => EnableDomainTransferLockRequest$, () => EnableDomainTransferLockResponse$
1040
+ ];
1041
+ var GetContactReachabilityStatus$ = [9, n0, _GCRS,
1042
+ 0, () => GetContactReachabilityStatusRequest$, () => GetContactReachabilityStatusResponse$
1043
+ ];
1044
+ var GetDomainDetail$ = [9, n0, _GDD,
1045
+ 0, () => GetDomainDetailRequest$, () => GetDomainDetailResponse$
1046
+ ];
1047
+ var GetDomainSuggestions$ = [9, n0, _GDS,
1048
+ 0, () => GetDomainSuggestionsRequest$, () => GetDomainSuggestionsResponse$
1049
+ ];
1050
+ var GetOperationDetail$ = [9, n0, _GOD,
1051
+ 0, () => GetOperationDetailRequest$, () => GetOperationDetailResponse$
1052
+ ];
1053
+ var ListDomains$ = [9, n0, _LD,
1054
+ 0, () => ListDomainsRequest$, () => ListDomainsResponse$
1055
+ ];
1056
+ var ListOperations$ = [9, n0, _LO,
1057
+ 0, () => ListOperationsRequest$, () => ListOperationsResponse$
1058
+ ];
1059
+ var ListPrices$ = [9, n0, _LP,
1060
+ 0, () => ListPricesRequest$, () => ListPricesResponse$
1061
+ ];
1062
+ var ListTagsForDomain$ = [9, n0, _LTFD,
1063
+ 0, () => ListTagsForDomainRequest$, () => ListTagsForDomainResponse$
1064
+ ];
1065
+ var PushDomain$ = [9, n0, _PD,
1066
+ 0, () => PushDomainRequest$, () => __Unit
1067
+ ];
1068
+ var RegisterDomain$ = [9, n0, _RD,
1069
+ 0, () => RegisterDomainRequest$, () => RegisterDomainResponse$
1070
+ ];
1071
+ var RejectDomainTransferFromAnotherAwsAccount$ = [9, n0, _RDTFAAA,
1072
+ 0, () => RejectDomainTransferFromAnotherAwsAccountRequest$, () => RejectDomainTransferFromAnotherAwsAccountResponse$
1073
+ ];
1074
+ var RenewDomain$ = [9, n0, _RDe,
1075
+ 0, () => RenewDomainRequest$, () => RenewDomainResponse$
1076
+ ];
1077
+ var ResendContactReachabilityEmail$ = [9, n0, _RCRE,
1078
+ 0, () => ResendContactReachabilityEmailRequest$, () => ResendContactReachabilityEmailResponse$
1079
+ ];
1080
+ var ResendOperationAuthorization$ = [9, n0, _ROA,
1081
+ 0, () => ResendOperationAuthorizationRequest$, () => __Unit
1082
+ ];
1083
+ var RetrieveDomainAuthCode$ = [9, n0, _RDAC,
1084
+ 0, () => RetrieveDomainAuthCodeRequest$, () => RetrieveDomainAuthCodeResponse$
1085
+ ];
1086
+ var TransferDomain$ = [9, n0, _TD,
1087
+ 0, () => TransferDomainRequest$, () => TransferDomainResponse$
1088
+ ];
1089
+ var TransferDomainToAnotherAwsAccount$ = [9, n0, _TDTAAA,
1090
+ 0, () => TransferDomainToAnotherAwsAccountRequest$, () => TransferDomainToAnotherAwsAccountResponse$
1091
+ ];
1092
+ var UpdateDomainContact$ = [9, n0, _UDC,
1093
+ 0, () => UpdateDomainContactRequest$, () => UpdateDomainContactResponse$
1094
+ ];
1095
+ var UpdateDomainContactPrivacy$ = [9, n0, _UDCP,
1096
+ 0, () => UpdateDomainContactPrivacyRequest$, () => UpdateDomainContactPrivacyResponse$
1097
+ ];
1098
+ var UpdateDomainNameservers$ = [9, n0, _UDN,
1099
+ 0, () => UpdateDomainNameserversRequest$, () => UpdateDomainNameserversResponse$
1100
+ ];
1101
+ var UpdateTagsForDomain$ = [9, n0, _UTFD,
1102
+ 0, () => UpdateTagsForDomainRequest$, () => UpdateTagsForDomainResponse$
1103
+ ];
1104
+ var ViewBilling$ = [9, n0, _VB,
1105
+ 0, () => ViewBillingRequest$, () => ViewBillingResponse$
1106
+ ];
1107
+
1108
+ const getRuntimeConfig$1 = (config) => {
1109
+ return {
1110
+ apiVersion: "2014-05-15",
1111
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1112
+ base64Encoder: config?.base64Encoder ?? toBase64,
1113
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1114
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1115
+ extensions: config?.extensions ?? [],
1116
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53DomainsHttpAuthSchemeProvider,
1117
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1118
+ {
1119
+ schemeId: "aws.auth#sigv4",
1120
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1121
+ signer: new AwsSdkSigV4Signer(),
1122
+ },
1123
+ ],
1124
+ logger: config?.logger ?? new NoOpLogger(),
1125
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
1126
+ protocolSettings: config?.protocolSettings ?? {
1127
+ defaultNamespace: "com.amazonaws.route53domains",
1128
+ errorTypeRegistries,
1129
+ xmlNamespace: "https://route53domains.amazonaws.com/doc/2014-05-15/",
1130
+ version: "2014-05-15",
1131
+ serviceTarget: "Route53Domains_v20140515",
1132
+ },
1133
+ serviceId: config?.serviceId ?? "Route 53 Domains",
1134
+ urlParser: config?.urlParser ?? parseUrl,
1135
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1136
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1137
+ };
1138
+ };
1139
+
1140
+ const getRuntimeConfig = (config) => {
1141
+ emitWarningIfUnsupportedVersion(process.version);
1142
+ const defaultsMode = resolveDefaultsModeConfig(config);
1143
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1144
+ const clientSharedValues = getRuntimeConfig$1(config);
1145
+ emitWarningIfUnsupportedVersion$1(process.version);
1146
+ const loaderConfig = {
1147
+ profile: config?.profile,
1148
+ logger: clientSharedValues.logger,
1149
+ };
1150
+ return {
1151
+ ...clientSharedValues,
1152
+ ...config,
1153
+ runtime: "node",
1154
+ defaultsMode,
1155
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1156
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1157
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1158
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1159
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1160
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1161
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1162
+ retryMode: config?.retryMode ??
1163
+ loadConfig({
1164
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1165
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1166
+ }, config),
1167
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1168
+ streamCollector: config?.streamCollector ?? streamCollector,
1169
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1170
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1171
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1172
+ };
1173
+ };
1174
+
34
1175
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1176
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1177
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -948,55 +2089,190 @@ const ListOperationsSortAttributeName = {
948
2089
  SubmittedDate: "SubmittedDate",
949
2090
  };
950
2091
 
2092
+ exports.AcceptDomainTransferFromAnotherAwsAccount$ = AcceptDomainTransferFromAnotherAwsAccount$;
951
2093
  exports.AcceptDomainTransferFromAnotherAwsAccountCommand = AcceptDomainTransferFromAnotherAwsAccountCommand;
2094
+ exports.AcceptDomainTransferFromAnotherAwsAccountRequest$ = AcceptDomainTransferFromAnotherAwsAccountRequest$;
2095
+ exports.AcceptDomainTransferFromAnotherAwsAccountResponse$ = AcceptDomainTransferFromAnotherAwsAccountResponse$;
2096
+ exports.AssociateDelegationSignerToDomain$ = AssociateDelegationSignerToDomain$;
952
2097
  exports.AssociateDelegationSignerToDomainCommand = AssociateDelegationSignerToDomainCommand;
2098
+ exports.AssociateDelegationSignerToDomainRequest$ = AssociateDelegationSignerToDomainRequest$;
2099
+ exports.AssociateDelegationSignerToDomainResponse$ = AssociateDelegationSignerToDomainResponse$;
2100
+ exports.BillingRecord$ = BillingRecord$;
2101
+ exports.CancelDomainTransferToAnotherAwsAccount$ = CancelDomainTransferToAnotherAwsAccount$;
953
2102
  exports.CancelDomainTransferToAnotherAwsAccountCommand = CancelDomainTransferToAnotherAwsAccountCommand;
2103
+ exports.CancelDomainTransferToAnotherAwsAccountRequest$ = CancelDomainTransferToAnotherAwsAccountRequest$;
2104
+ exports.CancelDomainTransferToAnotherAwsAccountResponse$ = CancelDomainTransferToAnotherAwsAccountResponse$;
2105
+ exports.CheckDomainAvailability$ = CheckDomainAvailability$;
954
2106
  exports.CheckDomainAvailabilityCommand = CheckDomainAvailabilityCommand;
2107
+ exports.CheckDomainAvailabilityRequest$ = CheckDomainAvailabilityRequest$;
2108
+ exports.CheckDomainAvailabilityResponse$ = CheckDomainAvailabilityResponse$;
2109
+ exports.CheckDomainTransferability$ = CheckDomainTransferability$;
955
2110
  exports.CheckDomainTransferabilityCommand = CheckDomainTransferabilityCommand;
2111
+ exports.CheckDomainTransferabilityRequest$ = CheckDomainTransferabilityRequest$;
2112
+ exports.CheckDomainTransferabilityResponse$ = CheckDomainTransferabilityResponse$;
2113
+ exports.Consent$ = Consent$;
2114
+ exports.ContactDetail$ = ContactDetail$;
956
2115
  exports.ContactType = ContactType;
957
2116
  exports.CountryCode = CountryCode;
2117
+ exports.DeleteDomain$ = DeleteDomain$;
958
2118
  exports.DeleteDomainCommand = DeleteDomainCommand;
2119
+ exports.DeleteDomainRequest$ = DeleteDomainRequest$;
2120
+ exports.DeleteDomainResponse$ = DeleteDomainResponse$;
2121
+ exports.DeleteTagsForDomain$ = DeleteTagsForDomain$;
959
2122
  exports.DeleteTagsForDomainCommand = DeleteTagsForDomainCommand;
2123
+ exports.DeleteTagsForDomainRequest$ = DeleteTagsForDomainRequest$;
2124
+ exports.DeleteTagsForDomainResponse$ = DeleteTagsForDomainResponse$;
2125
+ exports.DisableDomainAutoRenew$ = DisableDomainAutoRenew$;
960
2126
  exports.DisableDomainAutoRenewCommand = DisableDomainAutoRenewCommand;
2127
+ exports.DisableDomainAutoRenewRequest$ = DisableDomainAutoRenewRequest$;
2128
+ exports.DisableDomainAutoRenewResponse$ = DisableDomainAutoRenewResponse$;
2129
+ exports.DisableDomainTransferLock$ = DisableDomainTransferLock$;
961
2130
  exports.DisableDomainTransferLockCommand = DisableDomainTransferLockCommand;
2131
+ exports.DisableDomainTransferLockRequest$ = DisableDomainTransferLockRequest$;
2132
+ exports.DisableDomainTransferLockResponse$ = DisableDomainTransferLockResponse$;
2133
+ exports.DisassociateDelegationSignerFromDomain$ = DisassociateDelegationSignerFromDomain$;
962
2134
  exports.DisassociateDelegationSignerFromDomainCommand = DisassociateDelegationSignerFromDomainCommand;
2135
+ exports.DisassociateDelegationSignerFromDomainRequest$ = DisassociateDelegationSignerFromDomainRequest$;
2136
+ exports.DisassociateDelegationSignerFromDomainResponse$ = DisassociateDelegationSignerFromDomainResponse$;
2137
+ exports.DnssecKey$ = DnssecKey$;
2138
+ exports.DnssecLimitExceeded = DnssecLimitExceeded;
2139
+ exports.DnssecLimitExceeded$ = DnssecLimitExceeded$;
2140
+ exports.DnssecSigningAttributes$ = DnssecSigningAttributes$;
963
2141
  exports.DomainAvailability = DomainAvailability;
2142
+ exports.DomainLimitExceeded = DomainLimitExceeded;
2143
+ exports.DomainLimitExceeded$ = DomainLimitExceeded$;
2144
+ exports.DomainPrice$ = DomainPrice$;
2145
+ exports.DomainSuggestion$ = DomainSuggestion$;
2146
+ exports.DomainSummary$ = DomainSummary$;
2147
+ exports.DomainTransferability$ = DomainTransferability$;
2148
+ exports.DuplicateRequest = DuplicateRequest;
2149
+ exports.DuplicateRequest$ = DuplicateRequest$;
2150
+ exports.EnableDomainAutoRenew$ = EnableDomainAutoRenew$;
964
2151
  exports.EnableDomainAutoRenewCommand = EnableDomainAutoRenewCommand;
2152
+ exports.EnableDomainAutoRenewRequest$ = EnableDomainAutoRenewRequest$;
2153
+ exports.EnableDomainAutoRenewResponse$ = EnableDomainAutoRenewResponse$;
2154
+ exports.EnableDomainTransferLock$ = EnableDomainTransferLock$;
965
2155
  exports.EnableDomainTransferLockCommand = EnableDomainTransferLockCommand;
2156
+ exports.EnableDomainTransferLockRequest$ = EnableDomainTransferLockRequest$;
2157
+ exports.EnableDomainTransferLockResponse$ = EnableDomainTransferLockResponse$;
2158
+ exports.ExtraParam$ = ExtraParam$;
966
2159
  exports.ExtraParamName = ExtraParamName;
2160
+ exports.FilterCondition$ = FilterCondition$;
2161
+ exports.GetContactReachabilityStatus$ = GetContactReachabilityStatus$;
967
2162
  exports.GetContactReachabilityStatusCommand = GetContactReachabilityStatusCommand;
2163
+ exports.GetContactReachabilityStatusRequest$ = GetContactReachabilityStatusRequest$;
2164
+ exports.GetContactReachabilityStatusResponse$ = GetContactReachabilityStatusResponse$;
2165
+ exports.GetDomainDetail$ = GetDomainDetail$;
968
2166
  exports.GetDomainDetailCommand = GetDomainDetailCommand;
2167
+ exports.GetDomainDetailRequest$ = GetDomainDetailRequest$;
2168
+ exports.GetDomainDetailResponse$ = GetDomainDetailResponse$;
2169
+ exports.GetDomainSuggestions$ = GetDomainSuggestions$;
969
2170
  exports.GetDomainSuggestionsCommand = GetDomainSuggestionsCommand;
2171
+ exports.GetDomainSuggestionsRequest$ = GetDomainSuggestionsRequest$;
2172
+ exports.GetDomainSuggestionsResponse$ = GetDomainSuggestionsResponse$;
2173
+ exports.GetOperationDetail$ = GetOperationDetail$;
970
2174
  exports.GetOperationDetailCommand = GetOperationDetailCommand;
2175
+ exports.GetOperationDetailRequest$ = GetOperationDetailRequest$;
2176
+ exports.GetOperationDetailResponse$ = GetOperationDetailResponse$;
2177
+ exports.InvalidInput = InvalidInput;
2178
+ exports.InvalidInput$ = InvalidInput$;
2179
+ exports.ListDomains$ = ListDomains$;
971
2180
  exports.ListDomainsAttributeName = ListDomainsAttributeName;
972
2181
  exports.ListDomainsCommand = ListDomainsCommand;
2182
+ exports.ListDomainsRequest$ = ListDomainsRequest$;
2183
+ exports.ListDomainsResponse$ = ListDomainsResponse$;
2184
+ exports.ListOperations$ = ListOperations$;
973
2185
  exports.ListOperationsCommand = ListOperationsCommand;
2186
+ exports.ListOperationsRequest$ = ListOperationsRequest$;
2187
+ exports.ListOperationsResponse$ = ListOperationsResponse$;
974
2188
  exports.ListOperationsSortAttributeName = ListOperationsSortAttributeName;
2189
+ exports.ListPrices$ = ListPrices$;
975
2190
  exports.ListPricesCommand = ListPricesCommand;
2191
+ exports.ListPricesRequest$ = ListPricesRequest$;
2192
+ exports.ListPricesResponse$ = ListPricesResponse$;
2193
+ exports.ListTagsForDomain$ = ListTagsForDomain$;
976
2194
  exports.ListTagsForDomainCommand = ListTagsForDomainCommand;
2195
+ exports.ListTagsForDomainRequest$ = ListTagsForDomainRequest$;
2196
+ exports.ListTagsForDomainResponse$ = ListTagsForDomainResponse$;
2197
+ exports.Nameserver$ = Nameserver$;
2198
+ exports.OperationLimitExceeded = OperationLimitExceeded;
2199
+ exports.OperationLimitExceeded$ = OperationLimitExceeded$;
977
2200
  exports.OperationStatus = OperationStatus;
2201
+ exports.OperationSummary$ = OperationSummary$;
978
2202
  exports.OperationType = OperationType;
979
2203
  exports.Operator = Operator;
2204
+ exports.PriceWithCurrency$ = PriceWithCurrency$;
2205
+ exports.PushDomain$ = PushDomain$;
980
2206
  exports.PushDomainCommand = PushDomainCommand;
2207
+ exports.PushDomainRequest$ = PushDomainRequest$;
981
2208
  exports.ReachabilityStatus = ReachabilityStatus;
2209
+ exports.RegisterDomain$ = RegisterDomain$;
982
2210
  exports.RegisterDomainCommand = RegisterDomainCommand;
2211
+ exports.RegisterDomainRequest$ = RegisterDomainRequest$;
2212
+ exports.RegisterDomainResponse$ = RegisterDomainResponse$;
2213
+ exports.RejectDomainTransferFromAnotherAwsAccount$ = RejectDomainTransferFromAnotherAwsAccount$;
983
2214
  exports.RejectDomainTransferFromAnotherAwsAccountCommand = RejectDomainTransferFromAnotherAwsAccountCommand;
2215
+ exports.RejectDomainTransferFromAnotherAwsAccountRequest$ = RejectDomainTransferFromAnotherAwsAccountRequest$;
2216
+ exports.RejectDomainTransferFromAnotherAwsAccountResponse$ = RejectDomainTransferFromAnotherAwsAccountResponse$;
2217
+ exports.RenewDomain$ = RenewDomain$;
984
2218
  exports.RenewDomainCommand = RenewDomainCommand;
2219
+ exports.RenewDomainRequest$ = RenewDomainRequest$;
2220
+ exports.RenewDomainResponse$ = RenewDomainResponse$;
2221
+ exports.ResendContactReachabilityEmail$ = ResendContactReachabilityEmail$;
985
2222
  exports.ResendContactReachabilityEmailCommand = ResendContactReachabilityEmailCommand;
2223
+ exports.ResendContactReachabilityEmailRequest$ = ResendContactReachabilityEmailRequest$;
2224
+ exports.ResendContactReachabilityEmailResponse$ = ResendContactReachabilityEmailResponse$;
2225
+ exports.ResendOperationAuthorization$ = ResendOperationAuthorization$;
986
2226
  exports.ResendOperationAuthorizationCommand = ResendOperationAuthorizationCommand;
2227
+ exports.ResendOperationAuthorizationRequest$ = ResendOperationAuthorizationRequest$;
2228
+ exports.RetrieveDomainAuthCode$ = RetrieveDomainAuthCode$;
987
2229
  exports.RetrieveDomainAuthCodeCommand = RetrieveDomainAuthCodeCommand;
2230
+ exports.RetrieveDomainAuthCodeRequest$ = RetrieveDomainAuthCodeRequest$;
2231
+ exports.RetrieveDomainAuthCodeResponse$ = RetrieveDomainAuthCodeResponse$;
988
2232
  exports.Route53Domains = Route53Domains;
989
2233
  exports.Route53DomainsClient = Route53DomainsClient;
2234
+ exports.Route53DomainsServiceException = Route53DomainsServiceException;
2235
+ exports.Route53DomainsServiceException$ = Route53DomainsServiceException$;
2236
+ exports.SortCondition$ = SortCondition$;
990
2237
  exports.SortOrder = SortOrder;
991
2238
  exports.StatusFlag = StatusFlag;
2239
+ exports.TLDInMaintenance = TLDInMaintenance;
2240
+ exports.TLDInMaintenance$ = TLDInMaintenance$;
2241
+ exports.TLDRulesViolation = TLDRulesViolation;
2242
+ exports.TLDRulesViolation$ = TLDRulesViolation$;
2243
+ exports.Tag$ = Tag$;
2244
+ exports.TransferDomain$ = TransferDomain$;
992
2245
  exports.TransferDomainCommand = TransferDomainCommand;
2246
+ exports.TransferDomainRequest$ = TransferDomainRequest$;
2247
+ exports.TransferDomainResponse$ = TransferDomainResponse$;
2248
+ exports.TransferDomainToAnotherAwsAccount$ = TransferDomainToAnotherAwsAccount$;
993
2249
  exports.TransferDomainToAnotherAwsAccountCommand = TransferDomainToAnotherAwsAccountCommand;
2250
+ exports.TransferDomainToAnotherAwsAccountRequest$ = TransferDomainToAnotherAwsAccountRequest$;
2251
+ exports.TransferDomainToAnotherAwsAccountResponse$ = TransferDomainToAnotherAwsAccountResponse$;
994
2252
  exports.Transferable = Transferable;
2253
+ exports.UnsupportedTLD = UnsupportedTLD;
2254
+ exports.UnsupportedTLD$ = UnsupportedTLD$;
2255
+ exports.UpdateDomainContact$ = UpdateDomainContact$;
995
2256
  exports.UpdateDomainContactCommand = UpdateDomainContactCommand;
2257
+ exports.UpdateDomainContactPrivacy$ = UpdateDomainContactPrivacy$;
996
2258
  exports.UpdateDomainContactPrivacyCommand = UpdateDomainContactPrivacyCommand;
2259
+ exports.UpdateDomainContactPrivacyRequest$ = UpdateDomainContactPrivacyRequest$;
2260
+ exports.UpdateDomainContactPrivacyResponse$ = UpdateDomainContactPrivacyResponse$;
2261
+ exports.UpdateDomainContactRequest$ = UpdateDomainContactRequest$;
2262
+ exports.UpdateDomainContactResponse$ = UpdateDomainContactResponse$;
2263
+ exports.UpdateDomainNameservers$ = UpdateDomainNameservers$;
997
2264
  exports.UpdateDomainNameserversCommand = UpdateDomainNameserversCommand;
2265
+ exports.UpdateDomainNameserversRequest$ = UpdateDomainNameserversRequest$;
2266
+ exports.UpdateDomainNameserversResponse$ = UpdateDomainNameserversResponse$;
2267
+ exports.UpdateTagsForDomain$ = UpdateTagsForDomain$;
998
2268
  exports.UpdateTagsForDomainCommand = UpdateTagsForDomainCommand;
2269
+ exports.UpdateTagsForDomainRequest$ = UpdateTagsForDomainRequest$;
2270
+ exports.UpdateTagsForDomainResponse$ = UpdateTagsForDomainResponse$;
2271
+ exports.ViewBilling$ = ViewBilling$;
999
2272
  exports.ViewBillingCommand = ViewBillingCommand;
2273
+ exports.ViewBillingRequest$ = ViewBillingRequest$;
2274
+ exports.ViewBillingResponse$ = ViewBillingResponse$;
2275
+ exports.errorTypeRegistries = errorTypeRegistries;
1000
2276
  exports.paginateListDomains = paginateListDomains;
1001
2277
  exports.paginateListOperations = paginateListOperations;
1002
2278
  exports.paginateListPrices = paginateListPrices;