@aws-sdk/client-route-53-domains 3.987.0 → 3.989.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 +53 -1114
- package/dist-cjs/models/Route53DomainsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +97 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +873 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +56 -50
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var Route53DomainsServiceException = require('./models/Route53DomainsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,954 +113,6 @@ class Route53DomainsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class Route53DomainsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, Route53DomainsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class DomainLimitExceeded extends Route53DomainsServiceException {
|
|
121
|
-
name = "DomainLimitExceeded";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "DomainLimitExceeded",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, DomainLimitExceeded.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InvalidInput extends Route53DomainsServiceException {
|
|
133
|
-
name = "InvalidInput";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InvalidInput",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InvalidInput.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class OperationLimitExceeded extends Route53DomainsServiceException {
|
|
145
|
-
name = "OperationLimitExceeded";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "OperationLimitExceeded",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, OperationLimitExceeded.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class UnsupportedTLD extends Route53DomainsServiceException {
|
|
157
|
-
name = "UnsupportedTLD";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "UnsupportedTLD",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, UnsupportedTLD.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class DnssecLimitExceeded extends Route53DomainsServiceException {
|
|
169
|
-
name = "DnssecLimitExceeded";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "DnssecLimitExceeded",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, DnssecLimitExceeded.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class DuplicateRequest extends Route53DomainsServiceException {
|
|
181
|
-
name = "DuplicateRequest";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
requestId;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "DuplicateRequest",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, DuplicateRequest.prototype);
|
|
191
|
-
this.requestId = opts.requestId;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class TLDRulesViolation extends Route53DomainsServiceException {
|
|
195
|
-
name = "TLDRulesViolation";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "TLDRulesViolation",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, TLDRulesViolation.prototype);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
const _A = "Availability";
|
|
208
|
-
const _AC = "AuthCode";
|
|
209
|
-
const _ACE = "AbuseContactEmail";
|
|
210
|
-
const _ACP = "AbuseContactPhone";
|
|
211
|
-
const _ACd = "AdminContact";
|
|
212
|
-
const _ADSTD = "AssociateDelegationSignerToDomain";
|
|
213
|
-
const _ADSTDR = "AssociateDelegationSignerToDomainRequest";
|
|
214
|
-
const _ADSTDRs = "AssociateDelegationSignerToDomainResponse";
|
|
215
|
-
const _ADTFAAA = "AcceptDomainTransferFromAnotherAwsAccount";
|
|
216
|
-
const _ADTFAAAR = "AcceptDomainTransferFromAnotherAwsAccountRequest";
|
|
217
|
-
const _ADTFAAARc = "AcceptDomainTransferFromAnotherAwsAccountResponse";
|
|
218
|
-
const _AI = "AccountId";
|
|
219
|
-
const _AL = "AddressLine";
|
|
220
|
-
const _ALd = "AddressLine1";
|
|
221
|
-
const _ALdd = "AddressLine2";
|
|
222
|
-
const _AP = "AdminPrivacy";
|
|
223
|
-
const _AR = "AutoRenew";
|
|
224
|
-
const _Al = "Algorithm";
|
|
225
|
-
const _BC = "BillingContact";
|
|
226
|
-
const _BD = "BillDate";
|
|
227
|
-
const _BP = "BillingPrivacy";
|
|
228
|
-
const _BR = "BillingRecord";
|
|
229
|
-
const _BRi = "BillingRecords";
|
|
230
|
-
const _C = "City";
|
|
231
|
-
const _CC = "CountryCode";
|
|
232
|
-
const _CD = "ContactDetail";
|
|
233
|
-
const _CDA = "CheckDomainAvailability";
|
|
234
|
-
const _CDAR = "CheckDomainAvailabilityRequest";
|
|
235
|
-
const _CDARh = "CheckDomainAvailabilityResponse";
|
|
236
|
-
const _CDT = "CheckDomainTransferability";
|
|
237
|
-
const _CDTR = "CheckDomainTransferabilityRequest";
|
|
238
|
-
const _CDTRh = "CheckDomainTransferabilityResponse";
|
|
239
|
-
const _CDTTAAA = "CancelDomainTransferToAnotherAwsAccount";
|
|
240
|
-
const _CDTTAAAR = "CancelDomainTransferToAnotherAwsAccountRequest";
|
|
241
|
-
const _CDTTAAARa = "CancelDomainTransferToAnotherAwsAccountResponse";
|
|
242
|
-
const _CDr = "CreationDate";
|
|
243
|
-
const _CEY = "CurrentExpiryYear";
|
|
244
|
-
const _CN = "ContactName";
|
|
245
|
-
const _CNo = "ContactNumber";
|
|
246
|
-
const _COP = "ChangeOwnershipPrice";
|
|
247
|
-
const _CT = "ContactType";
|
|
248
|
-
const _Co = "Consent";
|
|
249
|
-
const _Cu = "Currency";
|
|
250
|
-
const _D = "Digest";
|
|
251
|
-
const _DAC = "DomainAuthCode";
|
|
252
|
-
const _DD = "DeleteDomain";
|
|
253
|
-
const _DDAR = "DisableDomainAutoRenew";
|
|
254
|
-
const _DDARR = "DisableDomainAutoRenewRequest";
|
|
255
|
-
const _DDARRi = "DisableDomainAutoRenewResponse";
|
|
256
|
-
const _DDR = "DeleteDomainRequest";
|
|
257
|
-
const _DDRe = "DeleteDomainResponse";
|
|
258
|
-
const _DDSFD = "DisassociateDelegationSignerFromDomain";
|
|
259
|
-
const _DDSFDR = "DisassociateDelegationSignerFromDomainRequest";
|
|
260
|
-
const _DDSFDRi = "DisassociateDelegationSignerFromDomainResponse";
|
|
261
|
-
const _DDTL = "DisableDomainTransferLock";
|
|
262
|
-
const _DDTLR = "DisableDomainTransferLockRequest";
|
|
263
|
-
const _DDTLRi = "DisableDomainTransferLockResponse";
|
|
264
|
-
const _DIY = "DurationInYears";
|
|
265
|
-
const _DK = "DnssecKey";
|
|
266
|
-
const _DKL = "DnssecKeyList";
|
|
267
|
-
const _DKn = "DnssecKeys";
|
|
268
|
-
const _DLE = "DnssecLimitExceeded";
|
|
269
|
-
const _DLEo = "DomainLimitExceeded";
|
|
270
|
-
const _DN = "DomainName";
|
|
271
|
-
const _DP = "DomainPrice";
|
|
272
|
-
const _DPL = "DomainPriceList";
|
|
273
|
-
const _DR = "DuplicateRequest";
|
|
274
|
-
const _DS = "DomainSuggestion";
|
|
275
|
-
const _DSA = "DnssecSigningAttributes";
|
|
276
|
-
const _DSL = "DomainSuggestionsList";
|
|
277
|
-
const _DSLo = "DomainSummaryList";
|
|
278
|
-
const _DSn = "DnsSec";
|
|
279
|
-
const _DSo = "DomainSummary";
|
|
280
|
-
const _DT = "DigestType";
|
|
281
|
-
const _DTFD = "DeleteTagsForDomain";
|
|
282
|
-
const _DTFDR = "DeleteTagsForDomainRequest";
|
|
283
|
-
const _DTFDRe = "DeleteTagsForDomainResponse";
|
|
284
|
-
const _DTo = "DomainTransferability";
|
|
285
|
-
const _Do = "Domains";
|
|
286
|
-
const _E = "Email";
|
|
287
|
-
const _ED = "ExpirationDate";
|
|
288
|
-
const _EDAR = "EnableDomainAutoRenew";
|
|
289
|
-
const _EDARR = "EnableDomainAutoRenewRequest";
|
|
290
|
-
const _EDARRn = "EnableDomainAutoRenewResponse";
|
|
291
|
-
const _EDTL = "EnableDomainTransferLock";
|
|
292
|
-
const _EDTLR = "EnableDomainTransferLockRequest";
|
|
293
|
-
const _EDTLRn = "EnableDomainTransferLockResponse";
|
|
294
|
-
const _EP = "ExtraParams";
|
|
295
|
-
const _EPL = "ExtraParamList";
|
|
296
|
-
const _EPV = "ExtraParamValue";
|
|
297
|
-
const _EPx = "ExtraParam";
|
|
298
|
-
const _En = "End";
|
|
299
|
-
const _Ex = "Expiry";
|
|
300
|
-
const _F = "Fax";
|
|
301
|
-
const _FC = "FilterCondition";
|
|
302
|
-
const _FCi = "FilterConditions";
|
|
303
|
-
const _FIAK = "FIAuthKey";
|
|
304
|
-
const _FN = "FirstName";
|
|
305
|
-
const _Fl = "Flags";
|
|
306
|
-
const _GCRS = "GetContactReachabilityStatus";
|
|
307
|
-
const _GCRSR = "GetContactReachabilityStatusRequest";
|
|
308
|
-
const _GCRSRe = "GetContactReachabilityStatusResponse";
|
|
309
|
-
const _GDD = "GetDomainDetail";
|
|
310
|
-
const _GDDR = "GetDomainDetailRequest";
|
|
311
|
-
const _GDDRe = "GetDomainDetailResponse";
|
|
312
|
-
const _GDS = "GetDomainSuggestions";
|
|
313
|
-
const _GDSR = "GetDomainSuggestionsRequest";
|
|
314
|
-
const _GDSRe = "GetDomainSuggestionsResponse";
|
|
315
|
-
const _GI = "GlueIps";
|
|
316
|
-
const _GOD = "GetOperationDetail";
|
|
317
|
-
const _GODR = "GetOperationDetailRequest";
|
|
318
|
-
const _GODRe = "GetOperationDetailResponse";
|
|
319
|
-
const _I = "Id";
|
|
320
|
-
const _II = "InvoiceId";
|
|
321
|
-
const _IIn = "InvalidInput";
|
|
322
|
-
const _ILC = "IdnLangCode";
|
|
323
|
-
const _K = "Key";
|
|
324
|
-
const _KT = "KeyTag";
|
|
325
|
-
const _LD = "ListDomains";
|
|
326
|
-
const _LDR = "ListDomainsRequest";
|
|
327
|
-
const _LDRi = "ListDomainsResponse";
|
|
328
|
-
const _LN = "LastName";
|
|
329
|
-
const _LO = "ListOperations";
|
|
330
|
-
const _LOR = "ListOperationsRequest";
|
|
331
|
-
const _LORi = "ListOperationsResponse";
|
|
332
|
-
const _LP = "ListPrices";
|
|
333
|
-
const _LPR = "ListPricesRequest";
|
|
334
|
-
const _LPRi = "ListPricesResponse";
|
|
335
|
-
const _LTFD = "ListTagsForDomain";
|
|
336
|
-
const _LTFDR = "ListTagsForDomainRequest";
|
|
337
|
-
const _LTFDRi = "ListTagsForDomainResponse";
|
|
338
|
-
const _LUD = "LastUpdatedDate";
|
|
339
|
-
const _M = "Message";
|
|
340
|
-
const _MI = "MaxItems";
|
|
341
|
-
const _MP = "MaxPrice";
|
|
342
|
-
const _Ma = "Marker";
|
|
343
|
-
const _N = "Name";
|
|
344
|
-
const _NL = "NameserverList";
|
|
345
|
-
const _NPM = "NextPageMarker";
|
|
346
|
-
const _Na = "Nameservers";
|
|
347
|
-
const _Nam = "Nameserver";
|
|
348
|
-
const _O = "Operation";
|
|
349
|
-
const _OA = "OnlyAvailable";
|
|
350
|
-
const _OI = "OperationId";
|
|
351
|
-
const _OLE = "OperationLimitExceeded";
|
|
352
|
-
const _ON = "OrganizationName";
|
|
353
|
-
const _OS = "OperationSummary";
|
|
354
|
-
const _OSL = "OperationSummaryList";
|
|
355
|
-
const _Op = "Operator";
|
|
356
|
-
const _Ope = "Operations";
|
|
357
|
-
const _P = "Password";
|
|
358
|
-
const _PD = "PushDomain";
|
|
359
|
-
const _PDR = "PushDomainRequest";
|
|
360
|
-
const _PK = "PublicKey";
|
|
361
|
-
const _PN = "PhoneNumber";
|
|
362
|
-
const _PPAC = "PrivacyProtectAdminContact";
|
|
363
|
-
const _PPBC = "PrivacyProtectBillingContact";
|
|
364
|
-
const _PPRC = "PrivacyProtectRegistrantContact";
|
|
365
|
-
const _PPTC = "PrivacyProtectTechContact";
|
|
366
|
-
const _PWC = "PriceWithCurrency";
|
|
367
|
-
const _Pr = "Price";
|
|
368
|
-
const _Pri = "Prices";
|
|
369
|
-
const _R = "Reseller";
|
|
370
|
-
const _RC = "RegistrantContact";
|
|
371
|
-
const _RCRE = "ResendContactReachabilityEmail";
|
|
372
|
-
const _RCRER = "ResendContactReachabilityEmailRequest";
|
|
373
|
-
const _RCRERe = "ResendContactReachabilityEmailResponse";
|
|
374
|
-
const _RD = "RegisterDomain";
|
|
375
|
-
const _RDAC = "RetrieveDomainAuthCode";
|
|
376
|
-
const _RDACR = "RetrieveDomainAuthCodeRequest";
|
|
377
|
-
const _RDACRe = "RetrieveDomainAuthCodeResponse";
|
|
378
|
-
const _RDI = "RegistryDomainId";
|
|
379
|
-
const _RDR = "RegisterDomainRequest";
|
|
380
|
-
const _RDRe = "RegisterDomainResponse";
|
|
381
|
-
const _RDRen = "RenewDomainRequest";
|
|
382
|
-
const _RDRene = "RenewDomainResponse";
|
|
383
|
-
const _RDTFAAA = "RejectDomainTransferFromAnotherAwsAccount";
|
|
384
|
-
const _RDTFAAAR = "RejectDomainTransferFromAnotherAwsAccountRequest";
|
|
385
|
-
const _RDTFAAARe = "RejectDomainTransferFromAnotherAwsAccountResponse";
|
|
386
|
-
const _RDe = "RenewDomain";
|
|
387
|
-
const _RN = "RegistrarName";
|
|
388
|
-
const _ROA = "ResendOperationAuthorization";
|
|
389
|
-
const _ROAR = "ResendOperationAuthorizationRequest";
|
|
390
|
-
const _RP = "RegistrationPrice";
|
|
391
|
-
const _RPe = "RenewalPrice";
|
|
392
|
-
const _RPeg = "RegistrantPrivacy";
|
|
393
|
-
const _RPes = "RestorationPrice";
|
|
394
|
-
const _RU = "RegistrarUrl";
|
|
395
|
-
const _S = "State";
|
|
396
|
-
const _SA = "SigningAttributes";
|
|
397
|
-
const _SB = "SortBy";
|
|
398
|
-
const _SC = "SuggestionCount";
|
|
399
|
-
const _SCo = "SortCondition";
|
|
400
|
-
const _SD = "SubmittedDate";
|
|
401
|
-
const _SF = "StatusFlag";
|
|
402
|
-
const _SL = "StatusList";
|
|
403
|
-
const _SLu = "SuggestionsList";
|
|
404
|
-
const _SO = "SortOrder";
|
|
405
|
-
const _SS = "SubmittedSince";
|
|
406
|
-
const _St = "Status";
|
|
407
|
-
const _Sta = "Start";
|
|
408
|
-
const _T = "Transferability";
|
|
409
|
-
const _TC = "TechContact";
|
|
410
|
-
const _TD = "TransferDomain";
|
|
411
|
-
const _TDR = "TransferDomainRequest";
|
|
412
|
-
const _TDRr = "TransferDomainResponse";
|
|
413
|
-
const _TDTAAA = "TransferDomainToAnotherAwsAccount";
|
|
414
|
-
const _TDTAAAR = "TransferDomainToAnotherAwsAccountRequest";
|
|
415
|
-
const _TDTAAARr = "TransferDomainToAnotherAwsAccountResponse";
|
|
416
|
-
const _TL = "TransferLock";
|
|
417
|
-
const _TLDRV = "TLDRulesViolation";
|
|
418
|
-
const _TLa = "TagList";
|
|
419
|
-
const _TP = "TransferPrice";
|
|
420
|
-
const _TPe = "TechPrivacy";
|
|
421
|
-
const _TTD = "TagsToDelete";
|
|
422
|
-
const _TTU = "TagsToUpdate";
|
|
423
|
-
const _Ta = "Target";
|
|
424
|
-
const _Tag = "Tag";
|
|
425
|
-
const _Tl = "Tld";
|
|
426
|
-
const _Tr = "Transferable";
|
|
427
|
-
const _Ty = "Type";
|
|
428
|
-
const _UD = "UpdatedDate";
|
|
429
|
-
const _UDC = "UpdateDomainContact";
|
|
430
|
-
const _UDCP = "UpdateDomainContactPrivacy";
|
|
431
|
-
const _UDCPR = "UpdateDomainContactPrivacyRequest";
|
|
432
|
-
const _UDCPRp = "UpdateDomainContactPrivacyResponse";
|
|
433
|
-
const _UDCR = "UpdateDomainContactRequest";
|
|
434
|
-
const _UDCRp = "UpdateDomainContactResponse";
|
|
435
|
-
const _UDN = "UpdateDomainNameservers";
|
|
436
|
-
const _UDNR = "UpdateDomainNameserversRequest";
|
|
437
|
-
const _UDNRp = "UpdateDomainNameserversResponse";
|
|
438
|
-
const _UTFD = "UpdateTagsForDomain";
|
|
439
|
-
const _UTFDR = "UpdateTagsForDomainRequest";
|
|
440
|
-
const _UTFDRp = "UpdateTagsForDomainResponse";
|
|
441
|
-
const _UTLD = "UnsupportedTLD";
|
|
442
|
-
const _V = "Value";
|
|
443
|
-
const _VB = "ViewBilling";
|
|
444
|
-
const _VBR = "ViewBillingRequest";
|
|
445
|
-
const _VBRi = "ViewBillingResponse";
|
|
446
|
-
const _Va = "Values";
|
|
447
|
-
const _WIS = "WhoIsServer";
|
|
448
|
-
const _ZC = "ZipCode";
|
|
449
|
-
const _c = "client";
|
|
450
|
-
const _dN = "domainName";
|
|
451
|
-
const _e = "error";
|
|
452
|
-
const _eA = "emailAddress";
|
|
453
|
-
const _hE = "httpError";
|
|
454
|
-
const _iAV = "isAlreadyVerified";
|
|
455
|
-
const _m = "message";
|
|
456
|
-
const _rI = "requestId";
|
|
457
|
-
const _s = "status";
|
|
458
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53domains";
|
|
459
|
-
const n0 = "com.amazonaws.route53domains";
|
|
460
|
-
var AddressLine = [0, n0, _AL, 8, 0];
|
|
461
|
-
var City = [0, n0, _C, 8, 0];
|
|
462
|
-
var ContactName = [0, n0, _CN, 8, 0];
|
|
463
|
-
var ContactNumber = [0, n0, _CNo, 8, 0];
|
|
464
|
-
var CountryCode$1 = [0, n0, _CC, 8, 0];
|
|
465
|
-
var DomainAuthCode = [0, n0, _DAC, 8, 0];
|
|
466
|
-
var Email = [0, n0, _E, 8, 0];
|
|
467
|
-
var ExtraParamValue = [0, n0, _EPV, 8, 0];
|
|
468
|
-
var FIAuthKey = [0, n0, _FIAK, 8, 0];
|
|
469
|
-
var Password = [0, n0, _P, 8, 0];
|
|
470
|
-
var State = [0, n0, _S, 8, 0];
|
|
471
|
-
var ZipCode = [0, n0, _ZC, 8, 0];
|
|
472
|
-
var AcceptDomainTransferFromAnotherAwsAccountRequest$ = [3, n0, _ADTFAAAR,
|
|
473
|
-
0,
|
|
474
|
-
[_DN, _P],
|
|
475
|
-
[0, [() => Password, 0]], 2
|
|
476
|
-
];
|
|
477
|
-
var AcceptDomainTransferFromAnotherAwsAccountResponse$ = [3, n0, _ADTFAAARc,
|
|
478
|
-
0,
|
|
479
|
-
[_OI],
|
|
480
|
-
[0]
|
|
481
|
-
];
|
|
482
|
-
var AssociateDelegationSignerToDomainRequest$ = [3, n0, _ADSTDR,
|
|
483
|
-
0,
|
|
484
|
-
[_DN, _SA],
|
|
485
|
-
[0, () => DnssecSigningAttributes$], 2
|
|
486
|
-
];
|
|
487
|
-
var AssociateDelegationSignerToDomainResponse$ = [3, n0, _ADSTDRs,
|
|
488
|
-
0,
|
|
489
|
-
[_OI],
|
|
490
|
-
[0]
|
|
491
|
-
];
|
|
492
|
-
var BillingRecord$ = [3, n0, _BR,
|
|
493
|
-
0,
|
|
494
|
-
[_DN, _O, _II, _BD, _Pr],
|
|
495
|
-
[0, 0, 0, 4, 1]
|
|
496
|
-
];
|
|
497
|
-
var CancelDomainTransferToAnotherAwsAccountRequest$ = [3, n0, _CDTTAAAR,
|
|
498
|
-
0,
|
|
499
|
-
[_DN],
|
|
500
|
-
[0], 1
|
|
501
|
-
];
|
|
502
|
-
var CancelDomainTransferToAnotherAwsAccountResponse$ = [3, n0, _CDTTAAARa,
|
|
503
|
-
0,
|
|
504
|
-
[_OI],
|
|
505
|
-
[0]
|
|
506
|
-
];
|
|
507
|
-
var CheckDomainAvailabilityRequest$ = [3, n0, _CDAR,
|
|
508
|
-
0,
|
|
509
|
-
[_DN, _ILC],
|
|
510
|
-
[0, 0], 1
|
|
511
|
-
];
|
|
512
|
-
var CheckDomainAvailabilityResponse$ = [3, n0, _CDARh,
|
|
513
|
-
0,
|
|
514
|
-
[_A],
|
|
515
|
-
[0]
|
|
516
|
-
];
|
|
517
|
-
var CheckDomainTransferabilityRequest$ = [3, n0, _CDTR,
|
|
518
|
-
0,
|
|
519
|
-
[_DN, _AC],
|
|
520
|
-
[0, [() => DomainAuthCode, 0]], 1
|
|
521
|
-
];
|
|
522
|
-
var CheckDomainTransferabilityResponse$ = [3, n0, _CDTRh,
|
|
523
|
-
0,
|
|
524
|
-
[_T, _M],
|
|
525
|
-
[() => DomainTransferability$, 0]
|
|
526
|
-
];
|
|
527
|
-
var Consent$ = [3, n0, _Co,
|
|
528
|
-
0,
|
|
529
|
-
[_MP, _Cu],
|
|
530
|
-
[1, 0], 2
|
|
531
|
-
];
|
|
532
|
-
var ContactDetail$ = [3, n0, _CD,
|
|
533
|
-
8,
|
|
534
|
-
[_FN, _LN, _CT, _ON, _ALd, _ALdd, _C, _S, _CC, _ZC, _PN, _E, _F, _EP],
|
|
535
|
-
[[() => 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]]
|
|
536
|
-
];
|
|
537
|
-
var DeleteDomainRequest$ = [3, n0, _DDR,
|
|
538
|
-
0,
|
|
539
|
-
[_DN],
|
|
540
|
-
[0], 1
|
|
541
|
-
];
|
|
542
|
-
var DeleteDomainResponse$ = [3, n0, _DDRe,
|
|
543
|
-
0,
|
|
544
|
-
[_OI],
|
|
545
|
-
[0]
|
|
546
|
-
];
|
|
547
|
-
var DeleteTagsForDomainRequest$ = [3, n0, _DTFDR,
|
|
548
|
-
0,
|
|
549
|
-
[_DN, _TTD],
|
|
550
|
-
[0, 64 | 0], 2
|
|
551
|
-
];
|
|
552
|
-
var DeleteTagsForDomainResponse$ = [3, n0, _DTFDRe,
|
|
553
|
-
0,
|
|
554
|
-
[],
|
|
555
|
-
[]
|
|
556
|
-
];
|
|
557
|
-
var DisableDomainAutoRenewRequest$ = [3, n0, _DDARR,
|
|
558
|
-
0,
|
|
559
|
-
[_DN],
|
|
560
|
-
[0], 1
|
|
561
|
-
];
|
|
562
|
-
var DisableDomainAutoRenewResponse$ = [3, n0, _DDARRi,
|
|
563
|
-
0,
|
|
564
|
-
[],
|
|
565
|
-
[]
|
|
566
|
-
];
|
|
567
|
-
var DisableDomainTransferLockRequest$ = [3, n0, _DDTLR,
|
|
568
|
-
0,
|
|
569
|
-
[_DN],
|
|
570
|
-
[0], 1
|
|
571
|
-
];
|
|
572
|
-
var DisableDomainTransferLockResponse$ = [3, n0, _DDTLRi,
|
|
573
|
-
0,
|
|
574
|
-
[_OI],
|
|
575
|
-
[0]
|
|
576
|
-
];
|
|
577
|
-
var DisassociateDelegationSignerFromDomainRequest$ = [3, n0, _DDSFDR,
|
|
578
|
-
0,
|
|
579
|
-
[_DN, _I],
|
|
580
|
-
[0, 0], 2
|
|
581
|
-
];
|
|
582
|
-
var DisassociateDelegationSignerFromDomainResponse$ = [3, n0, _DDSFDRi,
|
|
583
|
-
0,
|
|
584
|
-
[_OI],
|
|
585
|
-
[0]
|
|
586
|
-
];
|
|
587
|
-
var DnssecKey$ = [3, n0, _DK,
|
|
588
|
-
0,
|
|
589
|
-
[_Al, _Fl, _PK, _DT, _D, _KT, _I],
|
|
590
|
-
[1, 1, 0, 1, 0, 1, 0]
|
|
591
|
-
];
|
|
592
|
-
var DnssecLimitExceeded$ = [-3, n0, _DLE,
|
|
593
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
594
|
-
[_m],
|
|
595
|
-
[0]
|
|
596
|
-
];
|
|
597
|
-
schema.TypeRegistry.for(n0).registerError(DnssecLimitExceeded$, DnssecLimitExceeded);
|
|
598
|
-
var DnssecSigningAttributes$ = [3, n0, _DSA,
|
|
599
|
-
0,
|
|
600
|
-
[_Al, _Fl, _PK],
|
|
601
|
-
[1, 1, 0]
|
|
602
|
-
];
|
|
603
|
-
var DomainLimitExceeded$ = [-3, n0, _DLEo,
|
|
604
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
605
|
-
[_m],
|
|
606
|
-
[0]
|
|
607
|
-
];
|
|
608
|
-
schema.TypeRegistry.for(n0).registerError(DomainLimitExceeded$, DomainLimitExceeded);
|
|
609
|
-
var DomainPrice$ = [3, n0, _DP,
|
|
610
|
-
0,
|
|
611
|
-
[_N, _RP, _TP, _RPe, _COP, _RPes],
|
|
612
|
-
[0, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$, () => PriceWithCurrency$]
|
|
613
|
-
];
|
|
614
|
-
var DomainSuggestion$ = [3, n0, _DS,
|
|
615
|
-
0,
|
|
616
|
-
[_DN, _A],
|
|
617
|
-
[0, 0]
|
|
618
|
-
];
|
|
619
|
-
var DomainSummary$ = [3, n0, _DSo,
|
|
620
|
-
0,
|
|
621
|
-
[_DN, _AR, _TL, _Ex],
|
|
622
|
-
[0, 2, 2, 4]
|
|
623
|
-
];
|
|
624
|
-
var DomainTransferability$ = [3, n0, _DTo,
|
|
625
|
-
0,
|
|
626
|
-
[_Tr],
|
|
627
|
-
[0]
|
|
628
|
-
];
|
|
629
|
-
var DuplicateRequest$ = [-3, n0, _DR,
|
|
630
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
631
|
-
[_rI, _m],
|
|
632
|
-
[0, 0]
|
|
633
|
-
];
|
|
634
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateRequest$, DuplicateRequest);
|
|
635
|
-
var EnableDomainAutoRenewRequest$ = [3, n0, _EDARR,
|
|
636
|
-
0,
|
|
637
|
-
[_DN],
|
|
638
|
-
[0], 1
|
|
639
|
-
];
|
|
640
|
-
var EnableDomainAutoRenewResponse$ = [3, n0, _EDARRn,
|
|
641
|
-
0,
|
|
642
|
-
[],
|
|
643
|
-
[]
|
|
644
|
-
];
|
|
645
|
-
var EnableDomainTransferLockRequest$ = [3, n0, _EDTLR,
|
|
646
|
-
0,
|
|
647
|
-
[_DN],
|
|
648
|
-
[0], 1
|
|
649
|
-
];
|
|
650
|
-
var EnableDomainTransferLockResponse$ = [3, n0, _EDTLRn,
|
|
651
|
-
0,
|
|
652
|
-
[_OI],
|
|
653
|
-
[0]
|
|
654
|
-
];
|
|
655
|
-
var ExtraParam$ = [3, n0, _EPx,
|
|
656
|
-
0,
|
|
657
|
-
[_N, _V],
|
|
658
|
-
[0, [() => ExtraParamValue, 0]], 2
|
|
659
|
-
];
|
|
660
|
-
var FilterCondition$ = [3, n0, _FC,
|
|
661
|
-
0,
|
|
662
|
-
[_N, _Op, _Va],
|
|
663
|
-
[0, 0, 64 | 0], 3
|
|
664
|
-
];
|
|
665
|
-
var GetContactReachabilityStatusRequest$ = [3, n0, _GCRSR,
|
|
666
|
-
0,
|
|
667
|
-
[_dN],
|
|
668
|
-
[0]
|
|
669
|
-
];
|
|
670
|
-
var GetContactReachabilityStatusResponse$ = [3, n0, _GCRSRe,
|
|
671
|
-
0,
|
|
672
|
-
[_dN, _s],
|
|
673
|
-
[0, 0]
|
|
674
|
-
];
|
|
675
|
-
var GetDomainDetailRequest$ = [3, n0, _GDDR,
|
|
676
|
-
0,
|
|
677
|
-
[_DN],
|
|
678
|
-
[0], 1
|
|
679
|
-
];
|
|
680
|
-
var GetDomainDetailResponse$ = [3, n0, _GDDRe,
|
|
681
|
-
0,
|
|
682
|
-
[_DN, _Na, _AR, _ACd, _RC, _TC, _AP, _RPeg, _TPe, _RN, _WIS, _RU, _ACE, _ACP, _RDI, _CDr, _UD, _ED, _R, _DSn, _SL, _DKn, _BC, _BP],
|
|
683
|
-
[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]
|
|
684
|
-
];
|
|
685
|
-
var GetDomainSuggestionsRequest$ = [3, n0, _GDSR,
|
|
686
|
-
0,
|
|
687
|
-
[_DN, _SC, _OA],
|
|
688
|
-
[0, 1, 2], 3
|
|
689
|
-
];
|
|
690
|
-
var GetDomainSuggestionsResponse$ = [3, n0, _GDSRe,
|
|
691
|
-
0,
|
|
692
|
-
[_SLu],
|
|
693
|
-
[() => DomainSuggestionsList]
|
|
694
|
-
];
|
|
695
|
-
var GetOperationDetailRequest$ = [3, n0, _GODR,
|
|
696
|
-
0,
|
|
697
|
-
[_OI],
|
|
698
|
-
[0], 1
|
|
699
|
-
];
|
|
700
|
-
var GetOperationDetailResponse$ = [3, n0, _GODRe,
|
|
701
|
-
0,
|
|
702
|
-
[_OI, _St, _M, _DN, _Ty, _SD, _LUD, _SF],
|
|
703
|
-
[0, 0, 0, 0, 0, 4, 4, 0]
|
|
704
|
-
];
|
|
705
|
-
var InvalidInput$ = [-3, n0, _IIn,
|
|
706
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
707
|
-
[_m],
|
|
708
|
-
[0]
|
|
709
|
-
];
|
|
710
|
-
schema.TypeRegistry.for(n0).registerError(InvalidInput$, InvalidInput);
|
|
711
|
-
var ListDomainsRequest$ = [3, n0, _LDR,
|
|
712
|
-
0,
|
|
713
|
-
[_FCi, _SCo, _Ma, _MI],
|
|
714
|
-
[() => FilterConditions, () => SortCondition$, 0, 1]
|
|
715
|
-
];
|
|
716
|
-
var ListDomainsResponse$ = [3, n0, _LDRi,
|
|
717
|
-
0,
|
|
718
|
-
[_Do, _NPM],
|
|
719
|
-
[() => DomainSummaryList, 0]
|
|
720
|
-
];
|
|
721
|
-
var ListOperationsRequest$ = [3, n0, _LOR,
|
|
722
|
-
0,
|
|
723
|
-
[_SS, _Ma, _MI, _St, _Ty, _SB, _SO],
|
|
724
|
-
[4, 0, 1, 64 | 0, 64 | 0, 0, 0]
|
|
725
|
-
];
|
|
726
|
-
var ListOperationsResponse$ = [3, n0, _LORi,
|
|
727
|
-
0,
|
|
728
|
-
[_Ope, _NPM],
|
|
729
|
-
[() => OperationSummaryList, 0]
|
|
730
|
-
];
|
|
731
|
-
var ListPricesRequest$ = [3, n0, _LPR,
|
|
732
|
-
0,
|
|
733
|
-
[_Tl, _Ma, _MI],
|
|
734
|
-
[0, 0, 1]
|
|
735
|
-
];
|
|
736
|
-
var ListPricesResponse$ = [3, n0, _LPRi,
|
|
737
|
-
0,
|
|
738
|
-
[_Pri, _NPM],
|
|
739
|
-
[() => DomainPriceList, 0]
|
|
740
|
-
];
|
|
741
|
-
var ListTagsForDomainRequest$ = [3, n0, _LTFDR,
|
|
742
|
-
0,
|
|
743
|
-
[_DN],
|
|
744
|
-
[0], 1
|
|
745
|
-
];
|
|
746
|
-
var ListTagsForDomainResponse$ = [3, n0, _LTFDRi,
|
|
747
|
-
0,
|
|
748
|
-
[_TLa],
|
|
749
|
-
[() => TagList]
|
|
750
|
-
];
|
|
751
|
-
var Nameserver$ = [3, n0, _Nam,
|
|
752
|
-
0,
|
|
753
|
-
[_N, _GI],
|
|
754
|
-
[0, 64 | 0], 1
|
|
755
|
-
];
|
|
756
|
-
var OperationLimitExceeded$ = [-3, n0, _OLE,
|
|
757
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
758
|
-
[_m],
|
|
759
|
-
[0]
|
|
760
|
-
];
|
|
761
|
-
schema.TypeRegistry.for(n0).registerError(OperationLimitExceeded$, OperationLimitExceeded);
|
|
762
|
-
var OperationSummary$ = [3, n0, _OS,
|
|
763
|
-
0,
|
|
764
|
-
[_OI, _St, _Ty, _SD, _DN, _M, _SF, _LUD],
|
|
765
|
-
[0, 0, 0, 4, 0, 0, 0, 4]
|
|
766
|
-
];
|
|
767
|
-
var PriceWithCurrency$ = [3, n0, _PWC,
|
|
768
|
-
0,
|
|
769
|
-
[_Pr, _Cu],
|
|
770
|
-
[1, 0], 2
|
|
771
|
-
];
|
|
772
|
-
var PushDomainRequest$ = [3, n0, _PDR,
|
|
773
|
-
0,
|
|
774
|
-
[_DN, _Ta],
|
|
775
|
-
[0, 0], 2
|
|
776
|
-
];
|
|
777
|
-
var RegisterDomainRequest$ = [3, n0, _RDR,
|
|
778
|
-
0,
|
|
779
|
-
[_DN, _DIY, _ACd, _RC, _TC, _ILC, _AR, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
|
|
780
|
-
[0, 1, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], 0, 2, 2, 2, 2, [() => ContactDetail$, 0], 2], 5
|
|
781
|
-
];
|
|
782
|
-
var RegisterDomainResponse$ = [3, n0, _RDRe,
|
|
783
|
-
0,
|
|
784
|
-
[_OI],
|
|
785
|
-
[0]
|
|
786
|
-
];
|
|
787
|
-
var RejectDomainTransferFromAnotherAwsAccountRequest$ = [3, n0, _RDTFAAAR,
|
|
788
|
-
0,
|
|
789
|
-
[_DN],
|
|
790
|
-
[0], 1
|
|
791
|
-
];
|
|
792
|
-
var RejectDomainTransferFromAnotherAwsAccountResponse$ = [3, n0, _RDTFAAARe,
|
|
793
|
-
0,
|
|
794
|
-
[_OI],
|
|
795
|
-
[0]
|
|
796
|
-
];
|
|
797
|
-
var RenewDomainRequest$ = [3, n0, _RDRen,
|
|
798
|
-
0,
|
|
799
|
-
[_DN, _CEY, _DIY],
|
|
800
|
-
[0, 1, 1], 2
|
|
801
|
-
];
|
|
802
|
-
var RenewDomainResponse$ = [3, n0, _RDRene,
|
|
803
|
-
0,
|
|
804
|
-
[_OI],
|
|
805
|
-
[0]
|
|
806
|
-
];
|
|
807
|
-
var ResendContactReachabilityEmailRequest$ = [3, n0, _RCRER,
|
|
808
|
-
0,
|
|
809
|
-
[_dN],
|
|
810
|
-
[0]
|
|
811
|
-
];
|
|
812
|
-
var ResendContactReachabilityEmailResponse$ = [3, n0, _RCRERe,
|
|
813
|
-
0,
|
|
814
|
-
[_dN, _eA, _iAV],
|
|
815
|
-
[0, [() => Email, 0], 2]
|
|
816
|
-
];
|
|
817
|
-
var ResendOperationAuthorizationRequest$ = [3, n0, _ROAR,
|
|
818
|
-
0,
|
|
819
|
-
[_OI],
|
|
820
|
-
[0], 1
|
|
821
|
-
];
|
|
822
|
-
var RetrieveDomainAuthCodeRequest$ = [3, n0, _RDACR,
|
|
823
|
-
0,
|
|
824
|
-
[_DN],
|
|
825
|
-
[0], 1
|
|
826
|
-
];
|
|
827
|
-
var RetrieveDomainAuthCodeResponse$ = [3, n0, _RDACRe,
|
|
828
|
-
0,
|
|
829
|
-
[_AC],
|
|
830
|
-
[[() => DomainAuthCode, 0]]
|
|
831
|
-
];
|
|
832
|
-
var SortCondition$ = [3, n0, _SCo,
|
|
833
|
-
0,
|
|
834
|
-
[_N, _SO],
|
|
835
|
-
[0, 0], 2
|
|
836
|
-
];
|
|
837
|
-
var Tag$ = [3, n0, _Tag,
|
|
838
|
-
0,
|
|
839
|
-
[_K, _V],
|
|
840
|
-
[0, 0]
|
|
841
|
-
];
|
|
842
|
-
var TLDRulesViolation$ = [-3, n0, _TLDRV,
|
|
843
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
844
|
-
[_m],
|
|
845
|
-
[0]
|
|
846
|
-
];
|
|
847
|
-
schema.TypeRegistry.for(n0).registerError(TLDRulesViolation$, TLDRulesViolation);
|
|
848
|
-
var TransferDomainRequest$ = [3, n0, _TDR,
|
|
849
|
-
0,
|
|
850
|
-
[_DN, _DIY, _ACd, _RC, _TC, _ILC, _Na, _AC, _AR, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
|
|
851
|
-
[0, 1, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], 0, () => NameserverList, [() => DomainAuthCode, 0], 2, 2, 2, 2, [() => ContactDetail$, 0], 2], 5
|
|
852
|
-
];
|
|
853
|
-
var TransferDomainResponse$ = [3, n0, _TDRr,
|
|
854
|
-
0,
|
|
855
|
-
[_OI],
|
|
856
|
-
[0]
|
|
857
|
-
];
|
|
858
|
-
var TransferDomainToAnotherAwsAccountRequest$ = [3, n0, _TDTAAAR,
|
|
859
|
-
0,
|
|
860
|
-
[_DN, _AI],
|
|
861
|
-
[0, 0], 2
|
|
862
|
-
];
|
|
863
|
-
var TransferDomainToAnotherAwsAccountResponse$ = [3, n0, _TDTAAARr,
|
|
864
|
-
0,
|
|
865
|
-
[_OI, _P],
|
|
866
|
-
[0, [() => Password, 0]]
|
|
867
|
-
];
|
|
868
|
-
var UnsupportedTLD$ = [-3, n0, _UTLD,
|
|
869
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
870
|
-
[_m],
|
|
871
|
-
[0]
|
|
872
|
-
];
|
|
873
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedTLD$, UnsupportedTLD);
|
|
874
|
-
var UpdateDomainContactPrivacyRequest$ = [3, n0, _UDCPR,
|
|
875
|
-
0,
|
|
876
|
-
[_DN, _AP, _RPeg, _TPe, _BP],
|
|
877
|
-
[0, 2, 2, 2, 2], 1
|
|
878
|
-
];
|
|
879
|
-
var UpdateDomainContactPrivacyResponse$ = [3, n0, _UDCPRp,
|
|
880
|
-
0,
|
|
881
|
-
[_OI],
|
|
882
|
-
[0]
|
|
883
|
-
];
|
|
884
|
-
var UpdateDomainContactRequest$ = [3, n0, _UDCR,
|
|
885
|
-
0,
|
|
886
|
-
[_DN, _ACd, _RC, _TC, _Co, _BC],
|
|
887
|
-
[0, [() => ContactDetail$, 0], [() => ContactDetail$, 0], [() => ContactDetail$, 0], () => Consent$, [() => ContactDetail$, 0]], 1
|
|
888
|
-
];
|
|
889
|
-
var UpdateDomainContactResponse$ = [3, n0, _UDCRp,
|
|
890
|
-
0,
|
|
891
|
-
[_OI],
|
|
892
|
-
[0]
|
|
893
|
-
];
|
|
894
|
-
var UpdateDomainNameserversRequest$ = [3, n0, _UDNR,
|
|
895
|
-
0,
|
|
896
|
-
[_DN, _Na, _FIAK],
|
|
897
|
-
[0, () => NameserverList, [() => FIAuthKey, 0]], 2
|
|
898
|
-
];
|
|
899
|
-
var UpdateDomainNameserversResponse$ = [3, n0, _UDNRp,
|
|
900
|
-
0,
|
|
901
|
-
[_OI],
|
|
902
|
-
[0]
|
|
903
|
-
];
|
|
904
|
-
var UpdateTagsForDomainRequest$ = [3, n0, _UTFDR,
|
|
905
|
-
0,
|
|
906
|
-
[_DN, _TTU],
|
|
907
|
-
[0, () => TagList], 1
|
|
908
|
-
];
|
|
909
|
-
var UpdateTagsForDomainResponse$ = [3, n0, _UTFDRp,
|
|
910
|
-
0,
|
|
911
|
-
[],
|
|
912
|
-
[]
|
|
913
|
-
];
|
|
914
|
-
var ViewBillingRequest$ = [3, n0, _VBR,
|
|
915
|
-
0,
|
|
916
|
-
[_Sta, _En, _Ma, _MI],
|
|
917
|
-
[4, 4, 0, 1]
|
|
918
|
-
];
|
|
919
|
-
var ViewBillingResponse$ = [3, n0, _VBRi,
|
|
920
|
-
0,
|
|
921
|
-
[_NPM, _BRi],
|
|
922
|
-
[0, () => BillingRecords]
|
|
923
|
-
];
|
|
924
|
-
var __Unit = "unit";
|
|
925
|
-
var Route53DomainsServiceException$ = [-3, _sm, "Route53DomainsServiceException", 0, [], []];
|
|
926
|
-
schema.TypeRegistry.for(_sm).registerError(Route53DomainsServiceException$, Route53DomainsServiceException);
|
|
927
|
-
var BillingRecords = [1, n0, _BRi,
|
|
928
|
-
0, () => BillingRecord$
|
|
929
|
-
];
|
|
930
|
-
var DnssecKeyList = [1, n0, _DKL,
|
|
931
|
-
0, () => DnssecKey$
|
|
932
|
-
];
|
|
933
|
-
var DomainPriceList = [1, n0, _DPL,
|
|
934
|
-
0, () => DomainPrice$
|
|
935
|
-
];
|
|
936
|
-
var DomainSuggestionsList = [1, n0, _DSL,
|
|
937
|
-
0, () => DomainSuggestion$
|
|
938
|
-
];
|
|
939
|
-
var DomainSummaryList = [1, n0, _DSLo,
|
|
940
|
-
0, () => DomainSummary$
|
|
941
|
-
];
|
|
942
|
-
var ExtraParamList = [1, n0, _EPL,
|
|
943
|
-
0, [() => ExtraParam$,
|
|
944
|
-
0]
|
|
945
|
-
];
|
|
946
|
-
var FilterConditions = [1, n0, _FCi,
|
|
947
|
-
0, () => FilterCondition$
|
|
948
|
-
];
|
|
949
|
-
var NameserverList = [1, n0, _NL,
|
|
950
|
-
0, () => Nameserver$
|
|
951
|
-
];
|
|
952
|
-
var OperationSummaryList = [1, n0, _OSL,
|
|
953
|
-
0, () => OperationSummary$
|
|
954
|
-
];
|
|
955
|
-
var TagList = [1, n0, _TLa,
|
|
956
|
-
0, () => Tag$
|
|
957
|
-
];
|
|
958
|
-
var AcceptDomainTransferFromAnotherAwsAccount$ = [9, n0, _ADTFAAA,
|
|
959
|
-
0, () => AcceptDomainTransferFromAnotherAwsAccountRequest$, () => AcceptDomainTransferFromAnotherAwsAccountResponse$
|
|
960
|
-
];
|
|
961
|
-
var AssociateDelegationSignerToDomain$ = [9, n0, _ADSTD,
|
|
962
|
-
0, () => AssociateDelegationSignerToDomainRequest$, () => AssociateDelegationSignerToDomainResponse$
|
|
963
|
-
];
|
|
964
|
-
var CancelDomainTransferToAnotherAwsAccount$ = [9, n0, _CDTTAAA,
|
|
965
|
-
0, () => CancelDomainTransferToAnotherAwsAccountRequest$, () => CancelDomainTransferToAnotherAwsAccountResponse$
|
|
966
|
-
];
|
|
967
|
-
var CheckDomainAvailability$ = [9, n0, _CDA,
|
|
968
|
-
0, () => CheckDomainAvailabilityRequest$, () => CheckDomainAvailabilityResponse$
|
|
969
|
-
];
|
|
970
|
-
var CheckDomainTransferability$ = [9, n0, _CDT,
|
|
971
|
-
0, () => CheckDomainTransferabilityRequest$, () => CheckDomainTransferabilityResponse$
|
|
972
|
-
];
|
|
973
|
-
var DeleteDomain$ = [9, n0, _DD,
|
|
974
|
-
0, () => DeleteDomainRequest$, () => DeleteDomainResponse$
|
|
975
|
-
];
|
|
976
|
-
var DeleteTagsForDomain$ = [9, n0, _DTFD,
|
|
977
|
-
0, () => DeleteTagsForDomainRequest$, () => DeleteTagsForDomainResponse$
|
|
978
|
-
];
|
|
979
|
-
var DisableDomainAutoRenew$ = [9, n0, _DDAR,
|
|
980
|
-
0, () => DisableDomainAutoRenewRequest$, () => DisableDomainAutoRenewResponse$
|
|
981
|
-
];
|
|
982
|
-
var DisableDomainTransferLock$ = [9, n0, _DDTL,
|
|
983
|
-
0, () => DisableDomainTransferLockRequest$, () => DisableDomainTransferLockResponse$
|
|
984
|
-
];
|
|
985
|
-
var DisassociateDelegationSignerFromDomain$ = [9, n0, _DDSFD,
|
|
986
|
-
0, () => DisassociateDelegationSignerFromDomainRequest$, () => DisassociateDelegationSignerFromDomainResponse$
|
|
987
|
-
];
|
|
988
|
-
var EnableDomainAutoRenew$ = [9, n0, _EDAR,
|
|
989
|
-
0, () => EnableDomainAutoRenewRequest$, () => EnableDomainAutoRenewResponse$
|
|
990
|
-
];
|
|
991
|
-
var EnableDomainTransferLock$ = [9, n0, _EDTL,
|
|
992
|
-
0, () => EnableDomainTransferLockRequest$, () => EnableDomainTransferLockResponse$
|
|
993
|
-
];
|
|
994
|
-
var GetContactReachabilityStatus$ = [9, n0, _GCRS,
|
|
995
|
-
0, () => GetContactReachabilityStatusRequest$, () => GetContactReachabilityStatusResponse$
|
|
996
|
-
];
|
|
997
|
-
var GetDomainDetail$ = [9, n0, _GDD,
|
|
998
|
-
0, () => GetDomainDetailRequest$, () => GetDomainDetailResponse$
|
|
999
|
-
];
|
|
1000
|
-
var GetDomainSuggestions$ = [9, n0, _GDS,
|
|
1001
|
-
0, () => GetDomainSuggestionsRequest$, () => GetDomainSuggestionsResponse$
|
|
1002
|
-
];
|
|
1003
|
-
var GetOperationDetail$ = [9, n0, _GOD,
|
|
1004
|
-
0, () => GetOperationDetailRequest$, () => GetOperationDetailResponse$
|
|
1005
|
-
];
|
|
1006
|
-
var ListDomains$ = [9, n0, _LD,
|
|
1007
|
-
0, () => ListDomainsRequest$, () => ListDomainsResponse$
|
|
1008
|
-
];
|
|
1009
|
-
var ListOperations$ = [9, n0, _LO,
|
|
1010
|
-
0, () => ListOperationsRequest$, () => ListOperationsResponse$
|
|
1011
|
-
];
|
|
1012
|
-
var ListPrices$ = [9, n0, _LP,
|
|
1013
|
-
0, () => ListPricesRequest$, () => ListPricesResponse$
|
|
1014
|
-
];
|
|
1015
|
-
var ListTagsForDomain$ = [9, n0, _LTFD,
|
|
1016
|
-
0, () => ListTagsForDomainRequest$, () => ListTagsForDomainResponse$
|
|
1017
|
-
];
|
|
1018
|
-
var PushDomain$ = [9, n0, _PD,
|
|
1019
|
-
0, () => PushDomainRequest$, () => __Unit
|
|
1020
|
-
];
|
|
1021
|
-
var RegisterDomain$ = [9, n0, _RD,
|
|
1022
|
-
0, () => RegisterDomainRequest$, () => RegisterDomainResponse$
|
|
1023
|
-
];
|
|
1024
|
-
var RejectDomainTransferFromAnotherAwsAccount$ = [9, n0, _RDTFAAA,
|
|
1025
|
-
0, () => RejectDomainTransferFromAnotherAwsAccountRequest$, () => RejectDomainTransferFromAnotherAwsAccountResponse$
|
|
1026
|
-
];
|
|
1027
|
-
var RenewDomain$ = [9, n0, _RDe,
|
|
1028
|
-
0, () => RenewDomainRequest$, () => RenewDomainResponse$
|
|
1029
|
-
];
|
|
1030
|
-
var ResendContactReachabilityEmail$ = [9, n0, _RCRE,
|
|
1031
|
-
0, () => ResendContactReachabilityEmailRequest$, () => ResendContactReachabilityEmailResponse$
|
|
1032
|
-
];
|
|
1033
|
-
var ResendOperationAuthorization$ = [9, n0, _ROA,
|
|
1034
|
-
0, () => ResendOperationAuthorizationRequest$, () => __Unit
|
|
1035
|
-
];
|
|
1036
|
-
var RetrieveDomainAuthCode$ = [9, n0, _RDAC,
|
|
1037
|
-
0, () => RetrieveDomainAuthCodeRequest$, () => RetrieveDomainAuthCodeResponse$
|
|
1038
|
-
];
|
|
1039
|
-
var TransferDomain$ = [9, n0, _TD,
|
|
1040
|
-
0, () => TransferDomainRequest$, () => TransferDomainResponse$
|
|
1041
|
-
];
|
|
1042
|
-
var TransferDomainToAnotherAwsAccount$ = [9, n0, _TDTAAA,
|
|
1043
|
-
0, () => TransferDomainToAnotherAwsAccountRequest$, () => TransferDomainToAnotherAwsAccountResponse$
|
|
1044
|
-
];
|
|
1045
|
-
var UpdateDomainContact$ = [9, n0, _UDC,
|
|
1046
|
-
0, () => UpdateDomainContactRequest$, () => UpdateDomainContactResponse$
|
|
1047
|
-
];
|
|
1048
|
-
var UpdateDomainContactPrivacy$ = [9, n0, _UDCP,
|
|
1049
|
-
0, () => UpdateDomainContactPrivacyRequest$, () => UpdateDomainContactPrivacyResponse$
|
|
1050
|
-
];
|
|
1051
|
-
var UpdateDomainNameservers$ = [9, n0, _UDN,
|
|
1052
|
-
0, () => UpdateDomainNameserversRequest$, () => UpdateDomainNameserversResponse$
|
|
1053
|
-
];
|
|
1054
|
-
var UpdateTagsForDomain$ = [9, n0, _UTFD,
|
|
1055
|
-
0, () => UpdateTagsForDomainRequest$, () => UpdateTagsForDomainResponse$
|
|
1056
|
-
];
|
|
1057
|
-
var ViewBilling$ = [9, n0, _VB,
|
|
1058
|
-
0, () => ViewBillingRequest$, () => ViewBillingResponse$
|
|
1059
|
-
];
|
|
1060
|
-
|
|
1061
116
|
class AcceptDomainTransferFromAnotherAwsAccountCommand extends smithyClient.Command
|
|
1062
117
|
.classBuilder()
|
|
1063
118
|
.ep(commonParams)
|
|
@@ -1066,7 +121,7 @@ class AcceptDomainTransferFromAnotherAwsAccountCommand extends smithyClient.Comm
|
|
|
1066
121
|
})
|
|
1067
122
|
.s("Route53Domains_v20140515", "AcceptDomainTransferFromAnotherAwsAccount", {})
|
|
1068
123
|
.n("Route53DomainsClient", "AcceptDomainTransferFromAnotherAwsAccountCommand")
|
|
1069
|
-
.sc(AcceptDomainTransferFromAnotherAwsAccount$)
|
|
124
|
+
.sc(schemas_0.AcceptDomainTransferFromAnotherAwsAccount$)
|
|
1070
125
|
.build() {
|
|
1071
126
|
}
|
|
1072
127
|
|
|
@@ -1078,7 +133,7 @@ class AssociateDelegationSignerToDomainCommand extends smithyClient.Command
|
|
|
1078
133
|
})
|
|
1079
134
|
.s("Route53Domains_v20140515", "AssociateDelegationSignerToDomain", {})
|
|
1080
135
|
.n("Route53DomainsClient", "AssociateDelegationSignerToDomainCommand")
|
|
1081
|
-
.sc(AssociateDelegationSignerToDomain$)
|
|
136
|
+
.sc(schemas_0.AssociateDelegationSignerToDomain$)
|
|
1082
137
|
.build() {
|
|
1083
138
|
}
|
|
1084
139
|
|
|
@@ -1090,7 +145,7 @@ class CancelDomainTransferToAnotherAwsAccountCommand extends smithyClient.Comman
|
|
|
1090
145
|
})
|
|
1091
146
|
.s("Route53Domains_v20140515", "CancelDomainTransferToAnotherAwsAccount", {})
|
|
1092
147
|
.n("Route53DomainsClient", "CancelDomainTransferToAnotherAwsAccountCommand")
|
|
1093
|
-
.sc(CancelDomainTransferToAnotherAwsAccount$)
|
|
148
|
+
.sc(schemas_0.CancelDomainTransferToAnotherAwsAccount$)
|
|
1094
149
|
.build() {
|
|
1095
150
|
}
|
|
1096
151
|
|
|
@@ -1102,7 +157,7 @@ class CheckDomainAvailabilityCommand extends smithyClient.Command
|
|
|
1102
157
|
})
|
|
1103
158
|
.s("Route53Domains_v20140515", "CheckDomainAvailability", {})
|
|
1104
159
|
.n("Route53DomainsClient", "CheckDomainAvailabilityCommand")
|
|
1105
|
-
.sc(CheckDomainAvailability$)
|
|
160
|
+
.sc(schemas_0.CheckDomainAvailability$)
|
|
1106
161
|
.build() {
|
|
1107
162
|
}
|
|
1108
163
|
|
|
@@ -1114,7 +169,7 @@ class CheckDomainTransferabilityCommand extends smithyClient.Command
|
|
|
1114
169
|
})
|
|
1115
170
|
.s("Route53Domains_v20140515", "CheckDomainTransferability", {})
|
|
1116
171
|
.n("Route53DomainsClient", "CheckDomainTransferabilityCommand")
|
|
1117
|
-
.sc(CheckDomainTransferability$)
|
|
172
|
+
.sc(schemas_0.CheckDomainTransferability$)
|
|
1118
173
|
.build() {
|
|
1119
174
|
}
|
|
1120
175
|
|
|
@@ -1126,7 +181,7 @@ class DeleteDomainCommand extends smithyClient.Command
|
|
|
1126
181
|
})
|
|
1127
182
|
.s("Route53Domains_v20140515", "DeleteDomain", {})
|
|
1128
183
|
.n("Route53DomainsClient", "DeleteDomainCommand")
|
|
1129
|
-
.sc(DeleteDomain$)
|
|
184
|
+
.sc(schemas_0.DeleteDomain$)
|
|
1130
185
|
.build() {
|
|
1131
186
|
}
|
|
1132
187
|
|
|
@@ -1138,7 +193,7 @@ class DeleteTagsForDomainCommand extends smithyClient.Command
|
|
|
1138
193
|
})
|
|
1139
194
|
.s("Route53Domains_v20140515", "DeleteTagsForDomain", {})
|
|
1140
195
|
.n("Route53DomainsClient", "DeleteTagsForDomainCommand")
|
|
1141
|
-
.sc(DeleteTagsForDomain$)
|
|
196
|
+
.sc(schemas_0.DeleteTagsForDomain$)
|
|
1142
197
|
.build() {
|
|
1143
198
|
}
|
|
1144
199
|
|
|
@@ -1150,7 +205,7 @@ class DisableDomainAutoRenewCommand extends smithyClient.Command
|
|
|
1150
205
|
})
|
|
1151
206
|
.s("Route53Domains_v20140515", "DisableDomainAutoRenew", {})
|
|
1152
207
|
.n("Route53DomainsClient", "DisableDomainAutoRenewCommand")
|
|
1153
|
-
.sc(DisableDomainAutoRenew$)
|
|
208
|
+
.sc(schemas_0.DisableDomainAutoRenew$)
|
|
1154
209
|
.build() {
|
|
1155
210
|
}
|
|
1156
211
|
|
|
@@ -1162,7 +217,7 @@ class DisableDomainTransferLockCommand extends smithyClient.Command
|
|
|
1162
217
|
})
|
|
1163
218
|
.s("Route53Domains_v20140515", "DisableDomainTransferLock", {})
|
|
1164
219
|
.n("Route53DomainsClient", "DisableDomainTransferLockCommand")
|
|
1165
|
-
.sc(DisableDomainTransferLock$)
|
|
220
|
+
.sc(schemas_0.DisableDomainTransferLock$)
|
|
1166
221
|
.build() {
|
|
1167
222
|
}
|
|
1168
223
|
|
|
@@ -1174,7 +229,7 @@ class DisassociateDelegationSignerFromDomainCommand extends smithyClient.Command
|
|
|
1174
229
|
})
|
|
1175
230
|
.s("Route53Domains_v20140515", "DisassociateDelegationSignerFromDomain", {})
|
|
1176
231
|
.n("Route53DomainsClient", "DisassociateDelegationSignerFromDomainCommand")
|
|
1177
|
-
.sc(DisassociateDelegationSignerFromDomain$)
|
|
232
|
+
.sc(schemas_0.DisassociateDelegationSignerFromDomain$)
|
|
1178
233
|
.build() {
|
|
1179
234
|
}
|
|
1180
235
|
|
|
@@ -1186,7 +241,7 @@ class EnableDomainAutoRenewCommand extends smithyClient.Command
|
|
|
1186
241
|
})
|
|
1187
242
|
.s("Route53Domains_v20140515", "EnableDomainAutoRenew", {})
|
|
1188
243
|
.n("Route53DomainsClient", "EnableDomainAutoRenewCommand")
|
|
1189
|
-
.sc(EnableDomainAutoRenew$)
|
|
244
|
+
.sc(schemas_0.EnableDomainAutoRenew$)
|
|
1190
245
|
.build() {
|
|
1191
246
|
}
|
|
1192
247
|
|
|
@@ -1198,7 +253,7 @@ class EnableDomainTransferLockCommand extends smithyClient.Command
|
|
|
1198
253
|
})
|
|
1199
254
|
.s("Route53Domains_v20140515", "EnableDomainTransferLock", {})
|
|
1200
255
|
.n("Route53DomainsClient", "EnableDomainTransferLockCommand")
|
|
1201
|
-
.sc(EnableDomainTransferLock$)
|
|
256
|
+
.sc(schemas_0.EnableDomainTransferLock$)
|
|
1202
257
|
.build() {
|
|
1203
258
|
}
|
|
1204
259
|
|
|
@@ -1210,7 +265,7 @@ class GetContactReachabilityStatusCommand extends smithyClient.Command
|
|
|
1210
265
|
})
|
|
1211
266
|
.s("Route53Domains_v20140515", "GetContactReachabilityStatus", {})
|
|
1212
267
|
.n("Route53DomainsClient", "GetContactReachabilityStatusCommand")
|
|
1213
|
-
.sc(GetContactReachabilityStatus$)
|
|
268
|
+
.sc(schemas_0.GetContactReachabilityStatus$)
|
|
1214
269
|
.build() {
|
|
1215
270
|
}
|
|
1216
271
|
|
|
@@ -1222,7 +277,7 @@ class GetDomainDetailCommand extends smithyClient.Command
|
|
|
1222
277
|
})
|
|
1223
278
|
.s("Route53Domains_v20140515", "GetDomainDetail", {})
|
|
1224
279
|
.n("Route53DomainsClient", "GetDomainDetailCommand")
|
|
1225
|
-
.sc(GetDomainDetail$)
|
|
280
|
+
.sc(schemas_0.GetDomainDetail$)
|
|
1226
281
|
.build() {
|
|
1227
282
|
}
|
|
1228
283
|
|
|
@@ -1234,7 +289,7 @@ class GetDomainSuggestionsCommand extends smithyClient.Command
|
|
|
1234
289
|
})
|
|
1235
290
|
.s("Route53Domains_v20140515", "GetDomainSuggestions", {})
|
|
1236
291
|
.n("Route53DomainsClient", "GetDomainSuggestionsCommand")
|
|
1237
|
-
.sc(GetDomainSuggestions$)
|
|
292
|
+
.sc(schemas_0.GetDomainSuggestions$)
|
|
1238
293
|
.build() {
|
|
1239
294
|
}
|
|
1240
295
|
|
|
@@ -1246,7 +301,7 @@ class GetOperationDetailCommand extends smithyClient.Command
|
|
|
1246
301
|
})
|
|
1247
302
|
.s("Route53Domains_v20140515", "GetOperationDetail", {})
|
|
1248
303
|
.n("Route53DomainsClient", "GetOperationDetailCommand")
|
|
1249
|
-
.sc(GetOperationDetail$)
|
|
304
|
+
.sc(schemas_0.GetOperationDetail$)
|
|
1250
305
|
.build() {
|
|
1251
306
|
}
|
|
1252
307
|
|
|
@@ -1258,7 +313,7 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
1258
313
|
})
|
|
1259
314
|
.s("Route53Domains_v20140515", "ListDomains", {})
|
|
1260
315
|
.n("Route53DomainsClient", "ListDomainsCommand")
|
|
1261
|
-
.sc(ListDomains$)
|
|
316
|
+
.sc(schemas_0.ListDomains$)
|
|
1262
317
|
.build() {
|
|
1263
318
|
}
|
|
1264
319
|
|
|
@@ -1270,7 +325,7 @@ class ListOperationsCommand extends smithyClient.Command
|
|
|
1270
325
|
})
|
|
1271
326
|
.s("Route53Domains_v20140515", "ListOperations", {})
|
|
1272
327
|
.n("Route53DomainsClient", "ListOperationsCommand")
|
|
1273
|
-
.sc(ListOperations$)
|
|
328
|
+
.sc(schemas_0.ListOperations$)
|
|
1274
329
|
.build() {
|
|
1275
330
|
}
|
|
1276
331
|
|
|
@@ -1282,7 +337,7 @@ class ListPricesCommand extends smithyClient.Command
|
|
|
1282
337
|
})
|
|
1283
338
|
.s("Route53Domains_v20140515", "ListPrices", {})
|
|
1284
339
|
.n("Route53DomainsClient", "ListPricesCommand")
|
|
1285
|
-
.sc(ListPrices$)
|
|
340
|
+
.sc(schemas_0.ListPrices$)
|
|
1286
341
|
.build() {
|
|
1287
342
|
}
|
|
1288
343
|
|
|
@@ -1294,7 +349,7 @@ class ListTagsForDomainCommand extends smithyClient.Command
|
|
|
1294
349
|
})
|
|
1295
350
|
.s("Route53Domains_v20140515", "ListTagsForDomain", {})
|
|
1296
351
|
.n("Route53DomainsClient", "ListTagsForDomainCommand")
|
|
1297
|
-
.sc(ListTagsForDomain$)
|
|
352
|
+
.sc(schemas_0.ListTagsForDomain$)
|
|
1298
353
|
.build() {
|
|
1299
354
|
}
|
|
1300
355
|
|
|
@@ -1306,7 +361,7 @@ class PushDomainCommand extends smithyClient.Command
|
|
|
1306
361
|
})
|
|
1307
362
|
.s("Route53Domains_v20140515", "PushDomain", {})
|
|
1308
363
|
.n("Route53DomainsClient", "PushDomainCommand")
|
|
1309
|
-
.sc(PushDomain$)
|
|
364
|
+
.sc(schemas_0.PushDomain$)
|
|
1310
365
|
.build() {
|
|
1311
366
|
}
|
|
1312
367
|
|
|
@@ -1318,7 +373,7 @@ class RegisterDomainCommand extends smithyClient.Command
|
|
|
1318
373
|
})
|
|
1319
374
|
.s("Route53Domains_v20140515", "RegisterDomain", {})
|
|
1320
375
|
.n("Route53DomainsClient", "RegisterDomainCommand")
|
|
1321
|
-
.sc(RegisterDomain$)
|
|
376
|
+
.sc(schemas_0.RegisterDomain$)
|
|
1322
377
|
.build() {
|
|
1323
378
|
}
|
|
1324
379
|
|
|
@@ -1330,7 +385,7 @@ class RejectDomainTransferFromAnotherAwsAccountCommand extends smithyClient.Comm
|
|
|
1330
385
|
})
|
|
1331
386
|
.s("Route53Domains_v20140515", "RejectDomainTransferFromAnotherAwsAccount", {})
|
|
1332
387
|
.n("Route53DomainsClient", "RejectDomainTransferFromAnotherAwsAccountCommand")
|
|
1333
|
-
.sc(RejectDomainTransferFromAnotherAwsAccount$)
|
|
388
|
+
.sc(schemas_0.RejectDomainTransferFromAnotherAwsAccount$)
|
|
1334
389
|
.build() {
|
|
1335
390
|
}
|
|
1336
391
|
|
|
@@ -1342,7 +397,7 @@ class RenewDomainCommand extends smithyClient.Command
|
|
|
1342
397
|
})
|
|
1343
398
|
.s("Route53Domains_v20140515", "RenewDomain", {})
|
|
1344
399
|
.n("Route53DomainsClient", "RenewDomainCommand")
|
|
1345
|
-
.sc(RenewDomain$)
|
|
400
|
+
.sc(schemas_0.RenewDomain$)
|
|
1346
401
|
.build() {
|
|
1347
402
|
}
|
|
1348
403
|
|
|
@@ -1354,7 +409,7 @@ class ResendContactReachabilityEmailCommand extends smithyClient.Command
|
|
|
1354
409
|
})
|
|
1355
410
|
.s("Route53Domains_v20140515", "ResendContactReachabilityEmail", {})
|
|
1356
411
|
.n("Route53DomainsClient", "ResendContactReachabilityEmailCommand")
|
|
1357
|
-
.sc(ResendContactReachabilityEmail$)
|
|
412
|
+
.sc(schemas_0.ResendContactReachabilityEmail$)
|
|
1358
413
|
.build() {
|
|
1359
414
|
}
|
|
1360
415
|
|
|
@@ -1366,7 +421,7 @@ class ResendOperationAuthorizationCommand extends smithyClient.Command
|
|
|
1366
421
|
})
|
|
1367
422
|
.s("Route53Domains_v20140515", "ResendOperationAuthorization", {})
|
|
1368
423
|
.n("Route53DomainsClient", "ResendOperationAuthorizationCommand")
|
|
1369
|
-
.sc(ResendOperationAuthorization$)
|
|
424
|
+
.sc(schemas_0.ResendOperationAuthorization$)
|
|
1370
425
|
.build() {
|
|
1371
426
|
}
|
|
1372
427
|
|
|
@@ -1378,7 +433,7 @@ class RetrieveDomainAuthCodeCommand extends smithyClient.Command
|
|
|
1378
433
|
})
|
|
1379
434
|
.s("Route53Domains_v20140515", "RetrieveDomainAuthCode", {})
|
|
1380
435
|
.n("Route53DomainsClient", "RetrieveDomainAuthCodeCommand")
|
|
1381
|
-
.sc(RetrieveDomainAuthCode$)
|
|
436
|
+
.sc(schemas_0.RetrieveDomainAuthCode$)
|
|
1382
437
|
.build() {
|
|
1383
438
|
}
|
|
1384
439
|
|
|
@@ -1390,7 +445,7 @@ class TransferDomainCommand extends smithyClient.Command
|
|
|
1390
445
|
})
|
|
1391
446
|
.s("Route53Domains_v20140515", "TransferDomain", {})
|
|
1392
447
|
.n("Route53DomainsClient", "TransferDomainCommand")
|
|
1393
|
-
.sc(TransferDomain$)
|
|
448
|
+
.sc(schemas_0.TransferDomain$)
|
|
1394
449
|
.build() {
|
|
1395
450
|
}
|
|
1396
451
|
|
|
@@ -1402,7 +457,7 @@ class TransferDomainToAnotherAwsAccountCommand extends smithyClient.Command
|
|
|
1402
457
|
})
|
|
1403
458
|
.s("Route53Domains_v20140515", "TransferDomainToAnotherAwsAccount", {})
|
|
1404
459
|
.n("Route53DomainsClient", "TransferDomainToAnotherAwsAccountCommand")
|
|
1405
|
-
.sc(TransferDomainToAnotherAwsAccount$)
|
|
460
|
+
.sc(schemas_0.TransferDomainToAnotherAwsAccount$)
|
|
1406
461
|
.build() {
|
|
1407
462
|
}
|
|
1408
463
|
|
|
@@ -1414,7 +469,7 @@ class UpdateDomainContactCommand extends smithyClient.Command
|
|
|
1414
469
|
})
|
|
1415
470
|
.s("Route53Domains_v20140515", "UpdateDomainContact", {})
|
|
1416
471
|
.n("Route53DomainsClient", "UpdateDomainContactCommand")
|
|
1417
|
-
.sc(UpdateDomainContact$)
|
|
472
|
+
.sc(schemas_0.UpdateDomainContact$)
|
|
1418
473
|
.build() {
|
|
1419
474
|
}
|
|
1420
475
|
|
|
@@ -1426,7 +481,7 @@ class UpdateDomainContactPrivacyCommand extends smithyClient.Command
|
|
|
1426
481
|
})
|
|
1427
482
|
.s("Route53Domains_v20140515", "UpdateDomainContactPrivacy", {})
|
|
1428
483
|
.n("Route53DomainsClient", "UpdateDomainContactPrivacyCommand")
|
|
1429
|
-
.sc(UpdateDomainContactPrivacy$)
|
|
484
|
+
.sc(schemas_0.UpdateDomainContactPrivacy$)
|
|
1430
485
|
.build() {
|
|
1431
486
|
}
|
|
1432
487
|
|
|
@@ -1438,7 +493,7 @@ class UpdateDomainNameserversCommand extends smithyClient.Command
|
|
|
1438
493
|
})
|
|
1439
494
|
.s("Route53Domains_v20140515", "UpdateDomainNameservers", {})
|
|
1440
495
|
.n("Route53DomainsClient", "UpdateDomainNameserversCommand")
|
|
1441
|
-
.sc(UpdateDomainNameservers$)
|
|
496
|
+
.sc(schemas_0.UpdateDomainNameservers$)
|
|
1442
497
|
.build() {
|
|
1443
498
|
}
|
|
1444
499
|
|
|
@@ -1450,7 +505,7 @@ class UpdateTagsForDomainCommand extends smithyClient.Command
|
|
|
1450
505
|
})
|
|
1451
506
|
.s("Route53Domains_v20140515", "UpdateTagsForDomain", {})
|
|
1452
507
|
.n("Route53DomainsClient", "UpdateTagsForDomainCommand")
|
|
1453
|
-
.sc(UpdateTagsForDomain$)
|
|
508
|
+
.sc(schemas_0.UpdateTagsForDomain$)
|
|
1454
509
|
.build() {
|
|
1455
510
|
}
|
|
1456
511
|
|
|
@@ -1462,7 +517,7 @@ class ViewBillingCommand extends smithyClient.Command
|
|
|
1462
517
|
})
|
|
1463
518
|
.s("Route53Domains_v20140515", "ViewBilling", {})
|
|
1464
519
|
.n("Route53DomainsClient", "ViewBillingCommand")
|
|
1465
|
-
.sc(ViewBilling$)
|
|
520
|
+
.sc(schemas_0.ViewBilling$)
|
|
1466
521
|
.build() {
|
|
1467
522
|
}
|
|
1468
523
|
|
|
@@ -1903,188 +958,72 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1903
958
|
enumerable: true,
|
|
1904
959
|
get: function () { return smithyClient.Client; }
|
|
1905
960
|
});
|
|
1906
|
-
exports
|
|
961
|
+
Object.defineProperty(exports, "Route53DomainsServiceException", {
|
|
962
|
+
enumerable: true,
|
|
963
|
+
get: function () { return Route53DomainsServiceException.Route53DomainsServiceException; }
|
|
964
|
+
});
|
|
1907
965
|
exports.AcceptDomainTransferFromAnotherAwsAccountCommand = AcceptDomainTransferFromAnotherAwsAccountCommand;
|
|
1908
|
-
exports.AcceptDomainTransferFromAnotherAwsAccountRequest$ = AcceptDomainTransferFromAnotherAwsAccountRequest$;
|
|
1909
|
-
exports.AcceptDomainTransferFromAnotherAwsAccountResponse$ = AcceptDomainTransferFromAnotherAwsAccountResponse$;
|
|
1910
|
-
exports.AssociateDelegationSignerToDomain$ = AssociateDelegationSignerToDomain$;
|
|
1911
966
|
exports.AssociateDelegationSignerToDomainCommand = AssociateDelegationSignerToDomainCommand;
|
|
1912
|
-
exports.AssociateDelegationSignerToDomainRequest$ = AssociateDelegationSignerToDomainRequest$;
|
|
1913
|
-
exports.AssociateDelegationSignerToDomainResponse$ = AssociateDelegationSignerToDomainResponse$;
|
|
1914
|
-
exports.BillingRecord$ = BillingRecord$;
|
|
1915
|
-
exports.CancelDomainTransferToAnotherAwsAccount$ = CancelDomainTransferToAnotherAwsAccount$;
|
|
1916
967
|
exports.CancelDomainTransferToAnotherAwsAccountCommand = CancelDomainTransferToAnotherAwsAccountCommand;
|
|
1917
|
-
exports.CancelDomainTransferToAnotherAwsAccountRequest$ = CancelDomainTransferToAnotherAwsAccountRequest$;
|
|
1918
|
-
exports.CancelDomainTransferToAnotherAwsAccountResponse$ = CancelDomainTransferToAnotherAwsAccountResponse$;
|
|
1919
|
-
exports.CheckDomainAvailability$ = CheckDomainAvailability$;
|
|
1920
968
|
exports.CheckDomainAvailabilityCommand = CheckDomainAvailabilityCommand;
|
|
1921
|
-
exports.CheckDomainAvailabilityRequest$ = CheckDomainAvailabilityRequest$;
|
|
1922
|
-
exports.CheckDomainAvailabilityResponse$ = CheckDomainAvailabilityResponse$;
|
|
1923
|
-
exports.CheckDomainTransferability$ = CheckDomainTransferability$;
|
|
1924
969
|
exports.CheckDomainTransferabilityCommand = CheckDomainTransferabilityCommand;
|
|
1925
|
-
exports.CheckDomainTransferabilityRequest$ = CheckDomainTransferabilityRequest$;
|
|
1926
|
-
exports.CheckDomainTransferabilityResponse$ = CheckDomainTransferabilityResponse$;
|
|
1927
|
-
exports.Consent$ = Consent$;
|
|
1928
|
-
exports.ContactDetail$ = ContactDetail$;
|
|
1929
970
|
exports.ContactType = ContactType;
|
|
1930
971
|
exports.CountryCode = CountryCode;
|
|
1931
|
-
exports.DeleteDomain$ = DeleteDomain$;
|
|
1932
972
|
exports.DeleteDomainCommand = DeleteDomainCommand;
|
|
1933
|
-
exports.DeleteDomainRequest$ = DeleteDomainRequest$;
|
|
1934
|
-
exports.DeleteDomainResponse$ = DeleteDomainResponse$;
|
|
1935
|
-
exports.DeleteTagsForDomain$ = DeleteTagsForDomain$;
|
|
1936
973
|
exports.DeleteTagsForDomainCommand = DeleteTagsForDomainCommand;
|
|
1937
|
-
exports.DeleteTagsForDomainRequest$ = DeleteTagsForDomainRequest$;
|
|
1938
|
-
exports.DeleteTagsForDomainResponse$ = DeleteTagsForDomainResponse$;
|
|
1939
|
-
exports.DisableDomainAutoRenew$ = DisableDomainAutoRenew$;
|
|
1940
974
|
exports.DisableDomainAutoRenewCommand = DisableDomainAutoRenewCommand;
|
|
1941
|
-
exports.DisableDomainAutoRenewRequest$ = DisableDomainAutoRenewRequest$;
|
|
1942
|
-
exports.DisableDomainAutoRenewResponse$ = DisableDomainAutoRenewResponse$;
|
|
1943
|
-
exports.DisableDomainTransferLock$ = DisableDomainTransferLock$;
|
|
1944
975
|
exports.DisableDomainTransferLockCommand = DisableDomainTransferLockCommand;
|
|
1945
|
-
exports.DisableDomainTransferLockRequest$ = DisableDomainTransferLockRequest$;
|
|
1946
|
-
exports.DisableDomainTransferLockResponse$ = DisableDomainTransferLockResponse$;
|
|
1947
|
-
exports.DisassociateDelegationSignerFromDomain$ = DisassociateDelegationSignerFromDomain$;
|
|
1948
976
|
exports.DisassociateDelegationSignerFromDomainCommand = DisassociateDelegationSignerFromDomainCommand;
|
|
1949
|
-
exports.DisassociateDelegationSignerFromDomainRequest$ = DisassociateDelegationSignerFromDomainRequest$;
|
|
1950
|
-
exports.DisassociateDelegationSignerFromDomainResponse$ = DisassociateDelegationSignerFromDomainResponse$;
|
|
1951
|
-
exports.DnssecKey$ = DnssecKey$;
|
|
1952
|
-
exports.DnssecLimitExceeded = DnssecLimitExceeded;
|
|
1953
|
-
exports.DnssecLimitExceeded$ = DnssecLimitExceeded$;
|
|
1954
|
-
exports.DnssecSigningAttributes$ = DnssecSigningAttributes$;
|
|
1955
977
|
exports.DomainAvailability = DomainAvailability;
|
|
1956
|
-
exports.DomainLimitExceeded = DomainLimitExceeded;
|
|
1957
|
-
exports.DomainLimitExceeded$ = DomainLimitExceeded$;
|
|
1958
|
-
exports.DomainPrice$ = DomainPrice$;
|
|
1959
|
-
exports.DomainSuggestion$ = DomainSuggestion$;
|
|
1960
|
-
exports.DomainSummary$ = DomainSummary$;
|
|
1961
|
-
exports.DomainTransferability$ = DomainTransferability$;
|
|
1962
|
-
exports.DuplicateRequest = DuplicateRequest;
|
|
1963
|
-
exports.DuplicateRequest$ = DuplicateRequest$;
|
|
1964
|
-
exports.EnableDomainAutoRenew$ = EnableDomainAutoRenew$;
|
|
1965
978
|
exports.EnableDomainAutoRenewCommand = EnableDomainAutoRenewCommand;
|
|
1966
|
-
exports.EnableDomainAutoRenewRequest$ = EnableDomainAutoRenewRequest$;
|
|
1967
|
-
exports.EnableDomainAutoRenewResponse$ = EnableDomainAutoRenewResponse$;
|
|
1968
|
-
exports.EnableDomainTransferLock$ = EnableDomainTransferLock$;
|
|
1969
979
|
exports.EnableDomainTransferLockCommand = EnableDomainTransferLockCommand;
|
|
1970
|
-
exports.EnableDomainTransferLockRequest$ = EnableDomainTransferLockRequest$;
|
|
1971
|
-
exports.EnableDomainTransferLockResponse$ = EnableDomainTransferLockResponse$;
|
|
1972
|
-
exports.ExtraParam$ = ExtraParam$;
|
|
1973
980
|
exports.ExtraParamName = ExtraParamName;
|
|
1974
|
-
exports.FilterCondition$ = FilterCondition$;
|
|
1975
|
-
exports.GetContactReachabilityStatus$ = GetContactReachabilityStatus$;
|
|
1976
981
|
exports.GetContactReachabilityStatusCommand = GetContactReachabilityStatusCommand;
|
|
1977
|
-
exports.GetContactReachabilityStatusRequest$ = GetContactReachabilityStatusRequest$;
|
|
1978
|
-
exports.GetContactReachabilityStatusResponse$ = GetContactReachabilityStatusResponse$;
|
|
1979
|
-
exports.GetDomainDetail$ = GetDomainDetail$;
|
|
1980
982
|
exports.GetDomainDetailCommand = GetDomainDetailCommand;
|
|
1981
|
-
exports.GetDomainDetailRequest$ = GetDomainDetailRequest$;
|
|
1982
|
-
exports.GetDomainDetailResponse$ = GetDomainDetailResponse$;
|
|
1983
|
-
exports.GetDomainSuggestions$ = GetDomainSuggestions$;
|
|
1984
983
|
exports.GetDomainSuggestionsCommand = GetDomainSuggestionsCommand;
|
|
1985
|
-
exports.GetDomainSuggestionsRequest$ = GetDomainSuggestionsRequest$;
|
|
1986
|
-
exports.GetDomainSuggestionsResponse$ = GetDomainSuggestionsResponse$;
|
|
1987
|
-
exports.GetOperationDetail$ = GetOperationDetail$;
|
|
1988
984
|
exports.GetOperationDetailCommand = GetOperationDetailCommand;
|
|
1989
|
-
exports.GetOperationDetailRequest$ = GetOperationDetailRequest$;
|
|
1990
|
-
exports.GetOperationDetailResponse$ = GetOperationDetailResponse$;
|
|
1991
|
-
exports.InvalidInput = InvalidInput;
|
|
1992
|
-
exports.InvalidInput$ = InvalidInput$;
|
|
1993
|
-
exports.ListDomains$ = ListDomains$;
|
|
1994
985
|
exports.ListDomainsAttributeName = ListDomainsAttributeName;
|
|
1995
986
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
1996
|
-
exports.ListDomainsRequest$ = ListDomainsRequest$;
|
|
1997
|
-
exports.ListDomainsResponse$ = ListDomainsResponse$;
|
|
1998
|
-
exports.ListOperations$ = ListOperations$;
|
|
1999
987
|
exports.ListOperationsCommand = ListOperationsCommand;
|
|
2000
|
-
exports.ListOperationsRequest$ = ListOperationsRequest$;
|
|
2001
|
-
exports.ListOperationsResponse$ = ListOperationsResponse$;
|
|
2002
988
|
exports.ListOperationsSortAttributeName = ListOperationsSortAttributeName;
|
|
2003
|
-
exports.ListPrices$ = ListPrices$;
|
|
2004
989
|
exports.ListPricesCommand = ListPricesCommand;
|
|
2005
|
-
exports.ListPricesRequest$ = ListPricesRequest$;
|
|
2006
|
-
exports.ListPricesResponse$ = ListPricesResponse$;
|
|
2007
|
-
exports.ListTagsForDomain$ = ListTagsForDomain$;
|
|
2008
990
|
exports.ListTagsForDomainCommand = ListTagsForDomainCommand;
|
|
2009
|
-
exports.ListTagsForDomainRequest$ = ListTagsForDomainRequest$;
|
|
2010
|
-
exports.ListTagsForDomainResponse$ = ListTagsForDomainResponse$;
|
|
2011
|
-
exports.Nameserver$ = Nameserver$;
|
|
2012
|
-
exports.OperationLimitExceeded = OperationLimitExceeded;
|
|
2013
|
-
exports.OperationLimitExceeded$ = OperationLimitExceeded$;
|
|
2014
991
|
exports.OperationStatus = OperationStatus;
|
|
2015
|
-
exports.OperationSummary$ = OperationSummary$;
|
|
2016
992
|
exports.OperationType = OperationType;
|
|
2017
993
|
exports.Operator = Operator;
|
|
2018
|
-
exports.PriceWithCurrency$ = PriceWithCurrency$;
|
|
2019
|
-
exports.PushDomain$ = PushDomain$;
|
|
2020
994
|
exports.PushDomainCommand = PushDomainCommand;
|
|
2021
|
-
exports.PushDomainRequest$ = PushDomainRequest$;
|
|
2022
995
|
exports.ReachabilityStatus = ReachabilityStatus;
|
|
2023
|
-
exports.RegisterDomain$ = RegisterDomain$;
|
|
2024
996
|
exports.RegisterDomainCommand = RegisterDomainCommand;
|
|
2025
|
-
exports.RegisterDomainRequest$ = RegisterDomainRequest$;
|
|
2026
|
-
exports.RegisterDomainResponse$ = RegisterDomainResponse$;
|
|
2027
|
-
exports.RejectDomainTransferFromAnotherAwsAccount$ = RejectDomainTransferFromAnotherAwsAccount$;
|
|
2028
997
|
exports.RejectDomainTransferFromAnotherAwsAccountCommand = RejectDomainTransferFromAnotherAwsAccountCommand;
|
|
2029
|
-
exports.RejectDomainTransferFromAnotherAwsAccountRequest$ = RejectDomainTransferFromAnotherAwsAccountRequest$;
|
|
2030
|
-
exports.RejectDomainTransferFromAnotherAwsAccountResponse$ = RejectDomainTransferFromAnotherAwsAccountResponse$;
|
|
2031
|
-
exports.RenewDomain$ = RenewDomain$;
|
|
2032
998
|
exports.RenewDomainCommand = RenewDomainCommand;
|
|
2033
|
-
exports.RenewDomainRequest$ = RenewDomainRequest$;
|
|
2034
|
-
exports.RenewDomainResponse$ = RenewDomainResponse$;
|
|
2035
|
-
exports.ResendContactReachabilityEmail$ = ResendContactReachabilityEmail$;
|
|
2036
999
|
exports.ResendContactReachabilityEmailCommand = ResendContactReachabilityEmailCommand;
|
|
2037
|
-
exports.ResendContactReachabilityEmailRequest$ = ResendContactReachabilityEmailRequest$;
|
|
2038
|
-
exports.ResendContactReachabilityEmailResponse$ = ResendContactReachabilityEmailResponse$;
|
|
2039
|
-
exports.ResendOperationAuthorization$ = ResendOperationAuthorization$;
|
|
2040
1000
|
exports.ResendOperationAuthorizationCommand = ResendOperationAuthorizationCommand;
|
|
2041
|
-
exports.ResendOperationAuthorizationRequest$ = ResendOperationAuthorizationRequest$;
|
|
2042
|
-
exports.RetrieveDomainAuthCode$ = RetrieveDomainAuthCode$;
|
|
2043
1001
|
exports.RetrieveDomainAuthCodeCommand = RetrieveDomainAuthCodeCommand;
|
|
2044
|
-
exports.RetrieveDomainAuthCodeRequest$ = RetrieveDomainAuthCodeRequest$;
|
|
2045
|
-
exports.RetrieveDomainAuthCodeResponse$ = RetrieveDomainAuthCodeResponse$;
|
|
2046
1002
|
exports.Route53Domains = Route53Domains;
|
|
2047
1003
|
exports.Route53DomainsClient = Route53DomainsClient;
|
|
2048
|
-
exports.Route53DomainsServiceException = Route53DomainsServiceException;
|
|
2049
|
-
exports.Route53DomainsServiceException$ = Route53DomainsServiceException$;
|
|
2050
|
-
exports.SortCondition$ = SortCondition$;
|
|
2051
1004
|
exports.SortOrder = SortOrder;
|
|
2052
1005
|
exports.StatusFlag = StatusFlag;
|
|
2053
|
-
exports.TLDRulesViolation = TLDRulesViolation;
|
|
2054
|
-
exports.TLDRulesViolation$ = TLDRulesViolation$;
|
|
2055
|
-
exports.Tag$ = Tag$;
|
|
2056
|
-
exports.TransferDomain$ = TransferDomain$;
|
|
2057
1006
|
exports.TransferDomainCommand = TransferDomainCommand;
|
|
2058
|
-
exports.TransferDomainRequest$ = TransferDomainRequest$;
|
|
2059
|
-
exports.TransferDomainResponse$ = TransferDomainResponse$;
|
|
2060
|
-
exports.TransferDomainToAnotherAwsAccount$ = TransferDomainToAnotherAwsAccount$;
|
|
2061
1007
|
exports.TransferDomainToAnotherAwsAccountCommand = TransferDomainToAnotherAwsAccountCommand;
|
|
2062
|
-
exports.TransferDomainToAnotherAwsAccountRequest$ = TransferDomainToAnotherAwsAccountRequest$;
|
|
2063
|
-
exports.TransferDomainToAnotherAwsAccountResponse$ = TransferDomainToAnotherAwsAccountResponse$;
|
|
2064
1008
|
exports.Transferable = Transferable;
|
|
2065
|
-
exports.UnsupportedTLD = UnsupportedTLD;
|
|
2066
|
-
exports.UnsupportedTLD$ = UnsupportedTLD$;
|
|
2067
|
-
exports.UpdateDomainContact$ = UpdateDomainContact$;
|
|
2068
1009
|
exports.UpdateDomainContactCommand = UpdateDomainContactCommand;
|
|
2069
|
-
exports.UpdateDomainContactPrivacy$ = UpdateDomainContactPrivacy$;
|
|
2070
1010
|
exports.UpdateDomainContactPrivacyCommand = UpdateDomainContactPrivacyCommand;
|
|
2071
|
-
exports.UpdateDomainContactPrivacyRequest$ = UpdateDomainContactPrivacyRequest$;
|
|
2072
|
-
exports.UpdateDomainContactPrivacyResponse$ = UpdateDomainContactPrivacyResponse$;
|
|
2073
|
-
exports.UpdateDomainContactRequest$ = UpdateDomainContactRequest$;
|
|
2074
|
-
exports.UpdateDomainContactResponse$ = UpdateDomainContactResponse$;
|
|
2075
|
-
exports.UpdateDomainNameservers$ = UpdateDomainNameservers$;
|
|
2076
1011
|
exports.UpdateDomainNameserversCommand = UpdateDomainNameserversCommand;
|
|
2077
|
-
exports.UpdateDomainNameserversRequest$ = UpdateDomainNameserversRequest$;
|
|
2078
|
-
exports.UpdateDomainNameserversResponse$ = UpdateDomainNameserversResponse$;
|
|
2079
|
-
exports.UpdateTagsForDomain$ = UpdateTagsForDomain$;
|
|
2080
1012
|
exports.UpdateTagsForDomainCommand = UpdateTagsForDomainCommand;
|
|
2081
|
-
exports.UpdateTagsForDomainRequest$ = UpdateTagsForDomainRequest$;
|
|
2082
|
-
exports.UpdateTagsForDomainResponse$ = UpdateTagsForDomainResponse$;
|
|
2083
|
-
exports.ViewBilling$ = ViewBilling$;
|
|
2084
1013
|
exports.ViewBillingCommand = ViewBillingCommand;
|
|
2085
|
-
exports.ViewBillingRequest$ = ViewBillingRequest$;
|
|
2086
|
-
exports.ViewBillingResponse$ = ViewBillingResponse$;
|
|
2087
1014
|
exports.paginateListDomains = paginateListDomains;
|
|
2088
1015
|
exports.paginateListOperations = paginateListOperations;
|
|
2089
1016
|
exports.paginateListPrices = paginateListPrices;
|
|
2090
1017
|
exports.paginateViewBilling = paginateViewBilling;
|
|
1018
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1019
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1020
|
+
enumerable: true,
|
|
1021
|
+
get: function () { return schemas_0[k]; }
|
|
1022
|
+
});
|
|
1023
|
+
});
|
|
1024
|
+
Object.keys(errors).forEach(function (k) {
|
|
1025
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1026
|
+
enumerable: true,
|
|
1027
|
+
get: function () { return errors[k]; }
|
|
1028
|
+
});
|
|
1029
|
+
});
|