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