@aws-sdk/client-route-53-domains 3.926.0 → 3.928.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 +1045 -1297
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/Route53DomainsClient.js +2 -0
- package/dist-es/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.js +3 -10
- package/dist-es/commands/AssociateDelegationSignerToDomainCommand.js +3 -9
- package/dist-es/commands/CancelDomainTransferToAnotherAwsAccountCommand.js +3 -9
- package/dist-es/commands/CheckDomainAvailabilityCommand.js +3 -9
- package/dist-es/commands/CheckDomainTransferabilityCommand.js +3 -10
- package/dist-es/commands/DeleteDomainCommand.js +3 -9
- package/dist-es/commands/DeleteTagsForDomainCommand.js +3 -9
- package/dist-es/commands/DisableDomainAutoRenewCommand.js +3 -9
- package/dist-es/commands/DisableDomainTransferLockCommand.js +3 -9
- package/dist-es/commands/DisassociateDelegationSignerFromDomainCommand.js +3 -9
- package/dist-es/commands/EnableDomainAutoRenewCommand.js +3 -9
- package/dist-es/commands/EnableDomainTransferLockCommand.js +3 -9
- package/dist-es/commands/GetContactReachabilityStatusCommand.js +3 -9
- package/dist-es/commands/GetDomainDetailCommand.js +3 -10
- package/dist-es/commands/GetDomainSuggestionsCommand.js +3 -9
- package/dist-es/commands/GetOperationDetailCommand.js +3 -9
- package/dist-es/commands/ListDomainsCommand.js +3 -9
- package/dist-es/commands/ListOperationsCommand.js +3 -9
- package/dist-es/commands/ListPricesCommand.js +3 -9
- package/dist-es/commands/ListTagsForDomainCommand.js +3 -9
- package/dist-es/commands/PushDomainCommand.js +3 -9
- package/dist-es/commands/RegisterDomainCommand.js +3 -10
- package/dist-es/commands/RejectDomainTransferFromAnotherAwsAccountCommand.js +3 -9
- package/dist-es/commands/RenewDomainCommand.js +3 -9
- package/dist-es/commands/ResendContactReachabilityEmailCommand.js +3 -10
- package/dist-es/commands/ResendOperationAuthorizationCommand.js +3 -9
- package/dist-es/commands/RetrieveDomainAuthCodeCommand.js +3 -10
- package/dist-es/commands/TransferDomainCommand.js +3 -10
- package/dist-es/commands/TransferDomainToAnotherAwsAccountCommand.js +3 -10
- package/dist-es/commands/UpdateDomainContactCommand.js +3 -10
- package/dist-es/commands/UpdateDomainContactPrivacyCommand.js +3 -9
- package/dist-es/commands/UpdateDomainNameserversCommand.js +3 -10
- package/dist-es/commands/UpdateTagsForDomainCommand.js +3 -9
- package/dist-es/commands/ViewBillingCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -76
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +958 -0
- package/dist-types/Route53DomainsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -48
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +154 -0
- package/dist-types/ts3.4/Route53DomainsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -34
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +160 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -953
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -308
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -413
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class Route53DomainsClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class Route53DomainsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class Route53DomainsServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let Route53DomainsServiceException$1 = class Route53DomainsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, Route53DomainsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class DomainLimitExceeded extends Route53DomainsServiceException {
|
|
120
|
+
let DomainLimitExceeded$1 = class DomainLimitExceeded extends Route53DomainsServiceException$1 {
|
|
121
121
|
name = "DomainLimitExceeded";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ class DomainLimitExceeded extends Route53DomainsServiceException {
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, DomainLimitExceeded.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
class InvalidInput extends Route53DomainsServiceException {
|
|
131
|
+
};
|
|
132
|
+
let InvalidInput$1 = class InvalidInput extends Route53DomainsServiceException$1 {
|
|
133
133
|
name = "InvalidInput";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ class InvalidInput extends Route53DomainsServiceException {
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, InvalidInput.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
class OperationLimitExceeded extends Route53DomainsServiceException {
|
|
143
|
+
};
|
|
144
|
+
let OperationLimitExceeded$1 = class OperationLimitExceeded extends Route53DomainsServiceException$1 {
|
|
145
145
|
name = "OperationLimitExceeded";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ class OperationLimitExceeded extends Route53DomainsServiceException {
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, OperationLimitExceeded.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
class UnsupportedTLD extends Route53DomainsServiceException {
|
|
155
|
+
};
|
|
156
|
+
let UnsupportedTLD$1 = class UnsupportedTLD extends Route53DomainsServiceException$1 {
|
|
157
157
|
name = "UnsupportedTLD";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ class UnsupportedTLD extends Route53DomainsServiceException {
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, UnsupportedTLD.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
class DnssecLimitExceeded extends Route53DomainsServiceException {
|
|
167
|
+
};
|
|
168
|
+
let DnssecLimitExceeded$1 = class DnssecLimitExceeded extends Route53DomainsServiceException$1 {
|
|
169
169
|
name = "DnssecLimitExceeded";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,8 +176,8 @@ class DnssecLimitExceeded extends Route53DomainsServiceException {
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, DnssecLimitExceeded.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
180
|
-
class DuplicateRequest extends Route53DomainsServiceException {
|
|
179
|
+
};
|
|
180
|
+
let DuplicateRequest$1 = class DuplicateRequest extends Route53DomainsServiceException$1 {
|
|
181
181
|
name = "DuplicateRequest";
|
|
182
182
|
$fault = "client";
|
|
183
183
|
requestId;
|
|
@@ -190,8 +190,8 @@ class DuplicateRequest extends Route53DomainsServiceException {
|
|
|
190
190
|
Object.setPrototypeOf(this, DuplicateRequest.prototype);
|
|
191
191
|
this.requestId = opts.requestId;
|
|
192
192
|
}
|
|
193
|
-
}
|
|
194
|
-
class TLDRulesViolation extends Route53DomainsServiceException {
|
|
193
|
+
};
|
|
194
|
+
let TLDRulesViolation$1 = class TLDRulesViolation extends Route53DomainsServiceException$1 {
|
|
195
195
|
name = "TLDRulesViolation";
|
|
196
196
|
$fault = "client";
|
|
197
197
|
constructor(opts) {
|
|
@@ -202,7 +202,7 @@ class TLDRulesViolation extends Route53DomainsServiceException {
|
|
|
202
202
|
});
|
|
203
203
|
Object.setPrototypeOf(this, TLDRulesViolation.prototype);
|
|
204
204
|
}
|
|
205
|
-
}
|
|
205
|
+
};
|
|
206
206
|
const OperationType = {
|
|
207
207
|
ADD_DNSSEC: "ADD_DNSSEC",
|
|
208
208
|
CHANGE_DOMAIN_OWNER: "CHANGE_DOMAIN_OWNER",
|
|
@@ -253,7 +253,7 @@ const ContactType = {
|
|
|
253
253
|
PUBLIC_BODY: "PUBLIC_BODY",
|
|
254
254
|
RESELLER: "RESELLER",
|
|
255
255
|
};
|
|
256
|
-
const CountryCode = {
|
|
256
|
+
const CountryCode$1 = {
|
|
257
257
|
AC: "AC",
|
|
258
258
|
AD: "AD",
|
|
259
259
|
AE: "AE",
|
|
@@ -577,1041 +577,966 @@ const SortOrder = {
|
|
|
577
577
|
const ListOperationsSortAttributeName = {
|
|
578
578
|
SubmittedDate: "SubmittedDate",
|
|
579
579
|
};
|
|
580
|
-
const AcceptDomainTransferFromAnotherAwsAccountRequestFilterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
...(obj.Password && { Password: smithyClient.SENSITIVE_STRING }),
|
|
583
|
-
});
|
|
584
|
-
const CheckDomainTransferabilityRequestFilterSensitiveLog = (obj) => ({
|
|
585
|
-
...obj,
|
|
586
|
-
...(obj.AuthCode && { AuthCode: smithyClient.SENSITIVE_STRING }),
|
|
587
|
-
});
|
|
588
|
-
const ExtraParamFilterSensitiveLog = (obj) => ({
|
|
589
|
-
...obj,
|
|
590
|
-
...(obj.Value && { Value: smithyClient.SENSITIVE_STRING }),
|
|
591
|
-
});
|
|
592
|
-
const ContactDetailFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
...(obj.FirstName && { FirstName: smithyClient.SENSITIVE_STRING }),
|
|
595
|
-
...(obj.LastName && { LastName: smithyClient.SENSITIVE_STRING }),
|
|
596
|
-
...(obj.OrganizationName && { OrganizationName: smithyClient.SENSITIVE_STRING }),
|
|
597
|
-
...(obj.AddressLine1 && { AddressLine1: smithyClient.SENSITIVE_STRING }),
|
|
598
|
-
...(obj.AddressLine2 && { AddressLine2: smithyClient.SENSITIVE_STRING }),
|
|
599
|
-
...(obj.City && { City: smithyClient.SENSITIVE_STRING }),
|
|
600
|
-
...(obj.State && { State: smithyClient.SENSITIVE_STRING }),
|
|
601
|
-
...(obj.CountryCode && { CountryCode: smithyClient.SENSITIVE_STRING }),
|
|
602
|
-
...(obj.ZipCode && { ZipCode: smithyClient.SENSITIVE_STRING }),
|
|
603
|
-
...(obj.PhoneNumber && { PhoneNumber: smithyClient.SENSITIVE_STRING }),
|
|
604
|
-
...(obj.Email && { Email: smithyClient.SENSITIVE_STRING }),
|
|
605
|
-
...(obj.Fax && { Fax: smithyClient.SENSITIVE_STRING }),
|
|
606
|
-
...(obj.ExtraParams && { ExtraParams: obj.ExtraParams.map((item) => ExtraParamFilterSensitiveLog(item)) }),
|
|
607
|
-
});
|
|
608
|
-
const GetDomainDetailResponseFilterSensitiveLog = (obj) => ({
|
|
609
|
-
...obj,
|
|
610
|
-
...(obj.AdminContact && { AdminContact: smithyClient.SENSITIVE_STRING }),
|
|
611
|
-
...(obj.RegistrantContact && { RegistrantContact: smithyClient.SENSITIVE_STRING }),
|
|
612
|
-
...(obj.TechContact && { TechContact: smithyClient.SENSITIVE_STRING }),
|
|
613
|
-
...(obj.AbuseContactEmail && { AbuseContactEmail: smithyClient.SENSITIVE_STRING }),
|
|
614
|
-
...(obj.AbuseContactPhone && { AbuseContactPhone: smithyClient.SENSITIVE_STRING }),
|
|
615
|
-
...(obj.BillingContact && { BillingContact: smithyClient.SENSITIVE_STRING }),
|
|
616
|
-
});
|
|
617
|
-
const RegisterDomainRequestFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
...(obj.AdminContact && { AdminContact: smithyClient.SENSITIVE_STRING }),
|
|
620
|
-
...(obj.RegistrantContact && { RegistrantContact: smithyClient.SENSITIVE_STRING }),
|
|
621
|
-
...(obj.TechContact && { TechContact: smithyClient.SENSITIVE_STRING }),
|
|
622
|
-
...(obj.BillingContact && { BillingContact: smithyClient.SENSITIVE_STRING }),
|
|
623
|
-
});
|
|
624
|
-
const ResendContactReachabilityEmailResponseFilterSensitiveLog = (obj) => ({
|
|
625
|
-
...obj,
|
|
626
|
-
...(obj.emailAddress && { emailAddress: smithyClient.SENSITIVE_STRING }),
|
|
627
|
-
});
|
|
628
|
-
const RetrieveDomainAuthCodeResponseFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
...(obj.AuthCode && { AuthCode: smithyClient.SENSITIVE_STRING }),
|
|
631
|
-
});
|
|
632
|
-
const TransferDomainRequestFilterSensitiveLog = (obj) => ({
|
|
633
|
-
...obj,
|
|
634
|
-
...(obj.AuthCode && { AuthCode: smithyClient.SENSITIVE_STRING }),
|
|
635
|
-
...(obj.AdminContact && { AdminContact: smithyClient.SENSITIVE_STRING }),
|
|
636
|
-
...(obj.RegistrantContact && { RegistrantContact: smithyClient.SENSITIVE_STRING }),
|
|
637
|
-
...(obj.TechContact && { TechContact: smithyClient.SENSITIVE_STRING }),
|
|
638
|
-
...(obj.BillingContact && { BillingContact: smithyClient.SENSITIVE_STRING }),
|
|
639
|
-
});
|
|
640
|
-
const TransferDomainToAnotherAwsAccountResponseFilterSensitiveLog = (obj) => ({
|
|
641
|
-
...obj,
|
|
642
|
-
...(obj.Password && { Password: smithyClient.SENSITIVE_STRING }),
|
|
643
|
-
});
|
|
644
|
-
const UpdateDomainContactRequestFilterSensitiveLog = (obj) => ({
|
|
645
|
-
...obj,
|
|
646
|
-
...(obj.AdminContact && { AdminContact: smithyClient.SENSITIVE_STRING }),
|
|
647
|
-
...(obj.RegistrantContact && { RegistrantContact: smithyClient.SENSITIVE_STRING }),
|
|
648
|
-
...(obj.TechContact && { TechContact: smithyClient.SENSITIVE_STRING }),
|
|
649
|
-
...(obj.BillingContact && { BillingContact: smithyClient.SENSITIVE_STRING }),
|
|
650
|
-
});
|
|
651
|
-
const UpdateDomainNameserversRequestFilterSensitiveLog = (obj) => ({
|
|
652
|
-
...obj,
|
|
653
|
-
...(obj.FIAuthKey && { FIAuthKey: smithyClient.SENSITIVE_STRING }),
|
|
654
|
-
});
|
|
655
580
|
|
|
656
|
-
const
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
const
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
const
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
const
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
const
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
const
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
const
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
const
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
const
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
const
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
const
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
const
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
const
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
const
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
const
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
const
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
const
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
const
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
const
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
const
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
const
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
const
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
const
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
const
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
const
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
const
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
const
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
const
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
const
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
const
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
const
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
const
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
const
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
const
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
const
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
const
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
const
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
const
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
581
|
+
const _A = "Availability";
|
|
582
|
+
const _AC = "AuthCode";
|
|
583
|
+
const _ACE = "AbuseContactEmail";
|
|
584
|
+
const _ACP = "AbuseContactPhone";
|
|
585
|
+
const _ACd = "AdminContact";
|
|
586
|
+
const _ADSTD = "AssociateDelegationSignerToDomain";
|
|
587
|
+
const _ADSTDR = "AssociateDelegationSignerToDomainRequest";
|
|
588
|
+
const _ADSTDRs = "AssociateDelegationSignerToDomainResponse";
|
|
589
|
+
const _ADTFAAA = "AcceptDomainTransferFromAnotherAwsAccount";
|
|
590
|
+
const _ADTFAAAR = "AcceptDomainTransferFromAnotherAwsAccountRequest";
|
|
591
|
+
const _ADTFAAARc = "AcceptDomainTransferFromAnotherAwsAccountResponse";
|
|
592
|
+
const _AI = "AccountId";
|
|
593
|
+
const _AL = "AddressLine";
|
|
594
|
+
const _ALd = "AddressLine1";
|
|
595
|
+
const _ALdd = "AddressLine2";
|
|
596
|
+
const _AP = "AdminPrivacy";
|
|
597
|
+
const _AR = "AutoRenew";
|
|
598
|
+
const _Al = "Algorithm";
|
|
599
|
+
const _BC = "BillingContact";
|
|
600
|
+
const _BD = "BillDate";
|
|
601
|
+
const _BP = "BillingPrivacy";
|
|
602
|
+
const _BR = "BillingRecord";
|
|
603
|
+
const _BRi = "BillingRecords";
|
|
604
|
+
const _C = "City";
|
|
605
|
+
const _CC = "CountryCode";
|
|
606
|
+
const _CD = "ContactDetail";
|
|
607
|
+
const _CDA = "CheckDomainAvailability";
|
|
608
|
+
const _CDAR = "CheckDomainAvailabilityRequest";
|
|
609
|
+
const _CDARh = "CheckDomainAvailabilityResponse";
|
|
610
|
+
const _CDT = "CheckDomainTransferability";
|
|
611
|
+
const _CDTR = "CheckDomainTransferabilityRequest";
|
|
612
|
+
const _CDTRh = "CheckDomainTransferabilityResponse";
|
|
613
|
+
const _CDTTAAA = "CancelDomainTransferToAnotherAwsAccount";
|
|
614
|
+
const _CDTTAAAR = "CancelDomainTransferToAnotherAwsAccountRequest";
|
|
615
|
+
const _CDTTAAARa = "CancelDomainTransferToAnotherAwsAccountResponse";
|
|
616
|
+
const _CDr = "CreationDate";
|
|
617
|
+
const _CEY = "CurrentExpiryYear";
|
|
618
|
+
const _CN = "ContactName";
|
|
619
|
+
const _CNo = "ContactNumber";
|
|
620
|
+
const _COP = "ChangeOwnershipPrice";
|
|
621
|
+
const _CT = "ContactType";
|
|
622
|
+
const _Co = "Consent";
|
|
623
|
+
const _Cu = "Currency";
|
|
624
|
+
const _D = "Digest";
|
|
625
|
+
const _DAC = "DomainAuthCode";
|
|
626
|
+
const _DD = "DeleteDomain";
|
|
627
|
+
const _DDAR = "DisableDomainAutoRenew";
|
|
628
|
+
const _DDARR = "DisableDomainAutoRenewRequest";
|
|
629
|
+
const _DDARRi = "DisableDomainAutoRenewResponse";
|
|
630
|
+
const _DDR = "DeleteDomainRequest";
|
|
631
|
+
const _DDRe = "DeleteDomainResponse";
|
|
632
|
+
const _DDSFD = "DisassociateDelegationSignerFromDomain";
|
|
633
|
+
const _DDSFDR = "DisassociateDelegationSignerFromDomainRequest";
|
|
634
|
+
const _DDSFDRi = "DisassociateDelegationSignerFromDomainResponse";
|
|
635
|
+
const _DDTL = "DisableDomainTransferLock";
|
|
636
|
+
const _DDTLR = "DisableDomainTransferLockRequest";
|
|
637
|
+
const _DDTLRi = "DisableDomainTransferLockResponse";
|
|
638
|
+
const _DIY = "DurationInYears";
|
|
639
|
+
const _DK = "DnssecKey";
|
|
640
|
+
const _DKL = "DnssecKeyList";
|
|
641
|
+
const _DKn = "DnssecKeys";
|
|
642
|
+
const _DLE = "DnssecLimitExceeded";
|
|
643
|
+
const _DLEo = "DomainLimitExceeded";
|
|
644
|
+
const _DN = "DomainName";
|
|
645
|
+
const _DP = "DomainPrice";
|
|
646
|
+
const _DPL = "DomainPriceList";
|
|
647
|
+
const _DR = "DuplicateRequest";
|
|
648
|
+
const _DS = "DomainSuggestion";
|
|
649
|
+
const _DSA = "DnssecSigningAttributes";
|
|
650
|
+
const _DSL = "DomainSuggestionsList";
|
|
651
|
+
const _DSLo = "DomainSummaryList";
|
|
652
|
+
const _DSn = "DnsSec";
|
|
653
|
+
const _DSo = "DomainSummary";
|
|
654
|
+
const _DT = "DigestType";
|
|
655
|
+
const _DTFD = "DeleteTagsForDomain";
|
|
656
|
+
const _DTFDR = "DeleteTagsForDomainRequest";
|
|
657
|
+
const _DTFDRe = "DeleteTagsForDomainResponse";
|
|
658
|
+
const _DTo = "DomainTransferability";
|
|
659
|
+
const _Do = "Domains";
|
|
660
|
+
const _E = "Email";
|
|
661
|
+
const _ED = "ExpirationDate";
|
|
662
|
+
const _EDAR = "EnableDomainAutoRenew";
|
|
663
|
+
const _EDARR = "EnableDomainAutoRenewRequest";
|
|
664
|
+
const _EDARRn = "EnableDomainAutoRenewResponse";
|
|
665
|
+
const _EDTL = "EnableDomainTransferLock";
|
|
666
|
+
const _EDTLR = "EnableDomainTransferLockRequest";
|
|
667
|
+
const _EDTLRn = "EnableDomainTransferLockResponse";
|
|
668
|
+
const _EP = "ExtraParams";
|
|
669
|
+
const _EPL = "ExtraParamList";
|
|
670
|
+
const _EPV = "ExtraParamValue";
|
|
671
|
+
const _EPx = "ExtraParam";
|
|
672
|
+
const _En = "End";
|
|
673
|
+
const _Ex = "Expiry";
|
|
674
|
+
const _F = "Fax";
|
|
675
|
+
const _FC = "FilterCondition";
|
|
676
|
+
const _FCi = "FilterConditions";
|
|
677
|
+
const _FIAK = "FIAuthKey";
|
|
678
|
+
const _FN = "FirstName";
|
|
679
|
+
const _Fl = "Flags";
|
|
680
|
+
const _GCRS = "GetContactReachabilityStatus";
|
|
681
|
+
const _GCRSR = "GetContactReachabilityStatusRequest";
|
|
682
|
+
const _GCRSRe = "GetContactReachabilityStatusResponse";
|
|
683
|
+
const _GDD = "GetDomainDetail";
|
|
684
|
+
const _GDDR = "GetDomainDetailRequest";
|
|
685
|
+
const _GDDRe = "GetDomainDetailResponse";
|
|
686
|
+
const _GDS = "GetDomainSuggestions";
|
|
687
|
+
const _GDSR = "GetDomainSuggestionsRequest";
|
|
688
|
+
const _GDSRe = "GetDomainSuggestionsResponse";
|
|
689
|
+
const _GI = "GlueIps";
|
|
690
|
+
const _GOD = "GetOperationDetail";
|
|
691
|
+
const _GODR = "GetOperationDetailRequest";
|
|
692
|
+
const _GODRe = "GetOperationDetailResponse";
|
|
693
|
+
const _I = "Id";
|
|
694
|
+
const _II = "InvoiceId";
|
|
695
|
+
const _IIn = "InvalidInput";
|
|
696
|
+
const _ILC = "IdnLangCode";
|
|
697
|
+
const _K = "Key";
|
|
698
|
+
const _KT = "KeyTag";
|
|
699
|
+
const _LD = "ListDomains";
|
|
700
|
+
const _LDR = "ListDomainsRequest";
|
|
701
|
+
const _LDRi = "ListDomainsResponse";
|
|
702
|
+
const _LN = "LastName";
|
|
703
|
+
const _LO = "ListOperations";
|
|
704
|
+
const _LOR = "ListOperationsRequest";
|
|
705
|
+
const _LORi = "ListOperationsResponse";
|
|
706
|
+
const _LP = "ListPrices";
|
|
707
|
+
const _LPR = "ListPricesRequest";
|
|
708
|
+
const _LPRi = "ListPricesResponse";
|
|
709
|
+
const _LTFD = "ListTagsForDomain";
|
|
710
|
+
const _LTFDR = "ListTagsForDomainRequest";
|
|
711
|
+
const _LTFDRi = "ListTagsForDomainResponse";
|
|
712
|
+
const _LUD = "LastUpdatedDate";
|
|
713
|
+
const _M = "Message";
|
|
714
|
+
const _MI = "MaxItems";
|
|
715
|
+
const _MP = "MaxPrice";
|
|
716
|
+
const _Ma = "Marker";
|
|
717
|
+
const _N = "Name";
|
|
718
|
+
const _NL = "NameserverList";
|
|
719
|
+
const _NPM = "NextPageMarker";
|
|
720
|
+
const _Na = "Nameservers";
|
|
721
|
+
const _Nam = "Nameserver";
|
|
722
|
+
const _O = "Operation";
|
|
723
|
+
const _OA = "OnlyAvailable";
|
|
724
|
+
const _OI = "OperationId";
|
|
725
|
+
const _OLE = "OperationLimitExceeded";
|
|
726
|
+
const _ON = "OrganizationName";
|
|
727
|
+
const _OS = "OperationSummary";
|
|
728
|
+
const _OSL = "OperationSummaryList";
|
|
729
|
+
const _Op = "Operator";
|
|
730
|
+
const _Ope = "Operations";
|
|
731
|
+
const _P = "Password";
|
|
732
|
+
const _PD = "PushDomain";
|
|
733
|
+
const _PDR = "PushDomainRequest";
|
|
734
|
+
const _PK = "PublicKey";
|
|
735
|
+
const _PN = "PhoneNumber";
|
|
736
|
+
const _PPAC = "PrivacyProtectAdminContact";
|
|
737
|
+
const _PPBC = "PrivacyProtectBillingContact";
|
|
738
|
+
const _PPRC = "PrivacyProtectRegistrantContact";
|
|
739
|
+
const _PPTC = "PrivacyProtectTechContact";
|
|
740
|
+
const _PWC = "PriceWithCurrency";
|
|
741
|
+
const _Pr = "Price";
|
|
742
|
+
const _Pri = "Prices";
|
|
743
|
+
const _R = "Reseller";
|
|
744
|
+
const _RC = "RegistrantContact";
|
|
745
|
+
const _RCRE = "ResendContactReachabilityEmail";
|
|
746
|
+
const _RCRER = "ResendContactReachabilityEmailRequest";
|
|
747
|
+
const _RCRERe = "ResendContactReachabilityEmailResponse";
|
|
748
|
+
const _RD = "RegisterDomain";
|
|
749
|
+
const _RDAC = "RetrieveDomainAuthCode";
|
|
750
|
+
const _RDACR = "RetrieveDomainAuthCodeRequest";
|
|
751
|
+
const _RDACRe = "RetrieveDomainAuthCodeResponse";
|
|
752
|
+
const _RDI = "RegistryDomainId";
|
|
753
|
+
const _RDR = "RegisterDomainRequest";
|
|
754
|
+
const _RDRe = "RegisterDomainResponse";
|
|
755
|
+
const _RDRen = "RenewDomainRequest";
|
|
756
|
+
const _RDRene = "RenewDomainResponse";
|
|
757
|
+
const _RDTFAAA = "RejectDomainTransferFromAnotherAwsAccount";
|
|
758
|
+
const _RDTFAAAR = "RejectDomainTransferFromAnotherAwsAccountRequest";
|
|
759
|
+
const _RDTFAAARe = "RejectDomainTransferFromAnotherAwsAccountResponse";
|
|
760
|
+
const _RDe = "RenewDomain";
|
|
761
|
+
const _RN = "RegistrarName";
|
|
762
|
+
const _ROA = "ResendOperationAuthorization";
|
|
763
|
+
const _ROAR = "ResendOperationAuthorizationRequest";
|
|
764
|
+
const _RP = "RegistrationPrice";
|
|
765
|
+
const _RPe = "RenewalPrice";
|
|
766
|
+
const _RPeg = "RegistrantPrivacy";
|
|
767
|
+
const _RPes = "RestorationPrice";
|
|
768
|
+
const _RU = "RegistrarUrl";
|
|
769
|
+
const _S = "State";
|
|
770
|
+
const _SA = "SigningAttributes";
|
|
771
|
+
const _SB = "SortBy";
|
|
772
|
+
const _SC = "SuggestionCount";
|
|
773
|
+
const _SCo = "SortCondition";
|
|
774
|
+
const _SD = "SubmittedDate";
|
|
775
|
+
const _SF = "StatusFlag";
|
|
776
|
+
const _SL = "StatusList";
|
|
777
|
+
const _SLu = "SuggestionsList";
|
|
778
|
+
const _SO = "SortOrder";
|
|
779
|
+
const _SS = "SubmittedSince";
|
|
780
|
+
const _St = "Status";
|
|
781
|
+
const _Sta = "Start";
|
|
782
|
+
const _T = "Transferability";
|
|
783
|
+
const _TC = "TechContact";
|
|
784
|
+
const _TD = "TransferDomain";
|
|
785
|
+
const _TDR = "TransferDomainRequest";
|
|
786
|
+
const _TDRr = "TransferDomainResponse";
|
|
787
|
+
const _TDTAAA = "TransferDomainToAnotherAwsAccount";
|
|
788
|
+
const _TDTAAAR = "TransferDomainToAnotherAwsAccountRequest";
|
|
789
|
+
const _TDTAAARr = "TransferDomainToAnotherAwsAccountResponse";
|
|
790
|
+
const _TL = "TransferLock";
|
|
791
|
+
const _TLDRV = "TLDRulesViolation";
|
|
792
|
+
const _TLa = "TagList";
|
|
793
|
+
const _TP = "TransferPrice";
|
|
794
|
+
const _TPe = "TechPrivacy";
|
|
795
|
+
const _TTD = "TagsToDelete";
|
|
796
|
+
const _TTU = "TagsToUpdate";
|
|
797
|
+
const _Ta = "Target";
|
|
798
|
+
const _Tag = "Tag";
|
|
799
|
+
const _Tl = "Tld";
|
|
800
|
+
const _Tr = "Transferable";
|
|
801
|
+
const _Ty = "Type";
|
|
802
|
+
const _UD = "UpdatedDate";
|
|
803
|
+
const _UDC = "UpdateDomainContact";
|
|
804
|
+
const _UDCP = "UpdateDomainContactPrivacy";
|
|
805
|
+
const _UDCPR = "UpdateDomainContactPrivacyRequest";
|
|
806
|
+
const _UDCPRp = "UpdateDomainContactPrivacyResponse";
|
|
807
|
+
const _UDCR = "UpdateDomainContactRequest";
|
|
808
|
+
const _UDCRp = "UpdateDomainContactResponse";
|
|
809
|
+
const _UDN = "UpdateDomainNameservers";
|
|
810
|
+
const _UDNR = "UpdateDomainNameserversRequest";
|
|
811
|
+
const _UDNRp = "UpdateDomainNameserversResponse";
|
|
812
|
+
const _UTFD = "UpdateTagsForDomain";
|
|
813
|
+
const _UTFDR = "UpdateTagsForDomainRequest";
|
|
814
|
+
const _UTFDRp = "UpdateTagsForDomainResponse";
|
|
815
|
+
const _UTLD = "UnsupportedTLD";
|
|
816
|
+
const _V = "Value";
|
|
817
|
+
const _VB = "ViewBilling";
|
|
818
|
+
const _VBR = "ViewBillingRequest";
|
|
819
|
+
const _VBRi = "ViewBillingResponse";
|
|
820
|
+
const _Va = "Values";
|
|
821
|
+
const _WIS = "WhoIsServer";
|
|
822
|
+
const _ZC = "ZipCode";
|
|
823
|
+
const _c = "client";
|
|
824
|
+
const _dN = "domainName";
|
|
825
|
+
const _e = "error";
|
|
826
|
+
const _eA = "emailAddress";
|
|
827
|
+
const _hE = "httpError";
|
|
828
|
+
const _iAV = "isAlreadyVerified";
|
|
829
|
+
const _m = "message";
|
|
830
|
+
const _rI = "requestId";
|
|
831
|
+
const _s = "status";
|
|
832
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53domains";
|
|
833
|
+
const n0 = "com.amazonaws.route53domains";
|
|
834
|
+
var AddressLine = [0, n0, _AL, 8, 0];
|
|
835
|
+
var City = [0, n0, _C, 8, 0];
|
|
836
|
+
var ContactName = [0, n0, _CN, 8, 0];
|
|
837
|
+
var ContactNumber = [0, n0, _CNo, 8, 0];
|
|
838
|
+
var CountryCode = [0, n0, _CC, 8, 0];
|
|
839
|
+
var DomainAuthCode = [0, n0, _DAC, 8, 0];
|
|
840
|
+
var Email = [0, n0, _E, 8, 0];
|
|
841
|
+
var ExtraParamValue = [0, n0, _EPV, 8, 0];
|
|
842
|
+
var FIAuthKey = [0, n0, _FIAK, 8, 0];
|
|
843
|
+
var Password = [0, n0, _P, 8, 0];
|
|
844
|
+
var State = [0, n0, _S, 8, 0];
|
|
845
|
+
var ZipCode = [0, n0, _ZC, 8, 0];
|
|
846
|
+
var AcceptDomainTransferFromAnotherAwsAccountRequest = [
|
|
847
|
+
3,
|
|
848
|
+
n0,
|
|
849
|
+
_ADTFAAAR,
|
|
850
|
+
0,
|
|
851
|
+
[_DN, _P],
|
|
852
|
+
[0, [() => Password, 0]],
|
|
853
|
+
];
|
|
854
|
+
var AcceptDomainTransferFromAnotherAwsAccountResponse = [
|
|
855
|
+
3,
|
|
856
|
+
n0,
|
|
857
|
+
_ADTFAAARc,
|
|
858
|
+
0,
|
|
859
|
+
[_OI],
|
|
860
|
+
[0],
|
|
861
|
+
];
|
|
862
|
+
var AssociateDelegationSignerToDomainRequest = [
|
|
863
|
+
3,
|
|
864
|
+
n0,
|
|
865
|
+
_ADSTDR,
|
|
866
|
+
0,
|
|
867
|
+
[_DN, _SA],
|
|
868
|
+
[0, () => DnssecSigningAttributes],
|
|
869
|
+
];
|
|
870
|
+
var AssociateDelegationSignerToDomainResponse = [3, n0, _ADSTDRs, 0, [_OI], [0]];
|
|
871
|
+
var BillingRecord = [3, n0, _BR, 0, [_DN, _O, _II, _BD, _Pr], [0, 0, 0, 4, 1]];
|
|
872
|
+
var CancelDomainTransferToAnotherAwsAccountRequest = [3, n0, _CDTTAAAR, 0, [_DN], [0]];
|
|
873
|
+
var CancelDomainTransferToAnotherAwsAccountResponse = [3, n0, _CDTTAAARa, 0, [_OI], [0]];
|
|
874
|
+
var CheckDomainAvailabilityRequest = [3, n0, _CDAR, 0, [_DN, _ILC], [0, 0]];
|
|
875
|
+
var CheckDomainAvailabilityResponse = [3, n0, _CDARh, 0, [_A], [0]];
|
|
876
|
+
var CheckDomainTransferabilityRequest = [
|
|
877
|
+
3,
|
|
878
|
+
n0,
|
|
879
|
+
_CDTR,
|
|
880
|
+
0,
|
|
881
|
+
[_DN, _AC],
|
|
882
|
+
[0, [() => DomainAuthCode, 0]],
|
|
883
|
+
];
|
|
884
|
+
var CheckDomainTransferabilityResponse = [
|
|
885
|
+
3,
|
|
886
|
+
n0,
|
|
887
|
+
_CDTRh,
|
|
888
|
+
0,
|
|
889
|
+
[_T, _M],
|
|
890
|
+
[() => DomainTransferability, 0],
|
|
891
|
+
];
|
|
892
|
+
var Consent = [3, n0, _Co, 0, [_MP, _Cu], [1, 0]];
|
|
893
|
+
var ContactDetail = [
|
|
894
|
+
3,
|
|
895
|
+
n0,
|
|
896
|
+
_CD,
|
|
897
|
+
8,
|
|
898
|
+
[_FN, _LN, _CT, _ON, _ALd, _ALdd, _C, _S, _CC, _ZC, _PN, _E, _F, _EP],
|
|
899
|
+
[
|
|
900
|
+
[() => ContactName, 0],
|
|
901
|
+
[() => ContactName, 0],
|
|
902
|
+
0,
|
|
903
|
+
[() => ContactName, 0],
|
|
904
|
+
[() => AddressLine, 0],
|
|
905
|
+
[() => AddressLine, 0],
|
|
906
|
+
[() => City, 0],
|
|
907
|
+
[() => State, 0],
|
|
908
|
+
[() => CountryCode, 0],
|
|
909
|
+
[() => ZipCode, 0],
|
|
910
|
+
[() => ContactNumber, 0],
|
|
911
|
+
[() => Email, 0],
|
|
912
|
+
[() => ContactNumber, 0],
|
|
913
|
+
[() => ExtraParamList, 0],
|
|
914
|
+
],
|
|
915
|
+
];
|
|
916
|
+
var DeleteDomainRequest = [3, n0, _DDR, 0, [_DN], [0]];
|
|
917
|
+
var DeleteDomainResponse = [3, n0, _DDRe, 0, [_OI], [0]];
|
|
918
|
+
var DeleteTagsForDomainRequest = [3, n0, _DTFDR, 0, [_DN, _TTD], [0, 64 | 0]];
|
|
919
|
+
var DeleteTagsForDomainResponse = [3, n0, _DTFDRe, 0, [], []];
|
|
920
|
+
var DisableDomainAutoRenewRequest = [3, n0, _DDARR, 0, [_DN], [0]];
|
|
921
|
+
var DisableDomainAutoRenewResponse = [3, n0, _DDARRi, 0, [], []];
|
|
922
|
+
var DisableDomainTransferLockRequest = [3, n0, _DDTLR, 0, [_DN], [0]];
|
|
923
|
+
var DisableDomainTransferLockResponse = [3, n0, _DDTLRi, 0, [_OI], [0]];
|
|
924
|
+
var DisassociateDelegationSignerFromDomainRequest = [
|
|
925
|
+
3,
|
|
926
|
+
n0,
|
|
927
|
+
_DDSFDR,
|
|
928
|
+
0,
|
|
929
|
+
[_DN, _I],
|
|
930
|
+
[0, 0],
|
|
931
|
+
];
|
|
932
|
+
var DisassociateDelegationSignerFromDomainResponse = [3, n0, _DDSFDRi, 0, [_OI], [0]];
|
|
933
|
+
var DnssecKey = [3, n0, _DK, 0, [_Al, _Fl, _PK, _DT, _D, _KT, _I], [1, 1, 0, 1, 0, 1, 0]];
|
|
934
|
+
var DnssecLimitExceeded = [
|
|
935
|
+
-3,
|
|
936
|
+
n0,
|
|
937
|
+
_DLE,
|
|
938
|
+
{
|
|
939
|
+
[_e]: _c,
|
|
940
|
+
[_hE]: 400,
|
|
941
|
+
},
|
|
942
|
+
[_m],
|
|
943
|
+
[0],
|
|
944
|
+
];
|
|
945
|
+
schema.TypeRegistry.for(n0).registerError(DnssecLimitExceeded, DnssecLimitExceeded$1);
|
|
946
|
+
var DnssecSigningAttributes = [3, n0, _DSA, 0, [_Al, _Fl, _PK], [1, 1, 0]];
|
|
947
|
+
var DomainLimitExceeded = [
|
|
948
|
+
-3,
|
|
949
|
+
n0,
|
|
950
|
+
_DLEo,
|
|
951
|
+
{
|
|
952
|
+
[_e]: _c,
|
|
953
|
+
[_hE]: 400,
|
|
954
|
+
},
|
|
955
|
+
[_m],
|
|
956
|
+
[0],
|
|
957
|
+
];
|
|
958
|
+
schema.TypeRegistry.for(n0).registerError(DomainLimitExceeded, DomainLimitExceeded$1);
|
|
959
|
+
var DomainPrice = [
|
|
960
|
+
3,
|
|
961
|
+
n0,
|
|
962
|
+
_DP,
|
|
963
|
+
0,
|
|
964
|
+
[_N, _RP, _TP, _RPe, _COP, _RPes],
|
|
965
|
+
[
|
|
966
|
+
0,
|
|
967
|
+
() => PriceWithCurrency,
|
|
968
|
+
() => PriceWithCurrency,
|
|
969
|
+
() => PriceWithCurrency,
|
|
970
|
+
() => PriceWithCurrency,
|
|
971
|
+
() => PriceWithCurrency,
|
|
972
|
+
],
|
|
973
|
+
];
|
|
974
|
+
var DomainSuggestion = [3, n0, _DS, 0, [_DN, _A], [0, 0]];
|
|
975
|
+
var DomainSummary = [3, n0, _DSo, 0, [_DN, _AR, _TL, _Ex], [0, 2, 2, 4]];
|
|
976
|
+
var DomainTransferability = [3, n0, _DTo, 0, [_Tr], [0]];
|
|
977
|
+
var DuplicateRequest = [
|
|
978
|
+
-3,
|
|
979
|
+
n0,
|
|
980
|
+
_DR,
|
|
981
|
+
{
|
|
982
|
+
[_e]: _c,
|
|
983
|
+
[_hE]: 400,
|
|
984
|
+
},
|
|
985
|
+
[_rI, _m],
|
|
986
|
+
[0, 0],
|
|
987
|
+
];
|
|
988
|
+
schema.TypeRegistry.for(n0).registerError(DuplicateRequest, DuplicateRequest$1);
|
|
989
|
+
var EnableDomainAutoRenewRequest = [3, n0, _EDARR, 0, [_DN], [0]];
|
|
990
|
+
var EnableDomainAutoRenewResponse = [3, n0, _EDARRn, 0, [], []];
|
|
991
|
+
var EnableDomainTransferLockRequest = [3, n0, _EDTLR, 0, [_DN], [0]];
|
|
992
|
+
var EnableDomainTransferLockResponse = [3, n0, _EDTLRn, 0, [_OI], [0]];
|
|
993
|
+
var ExtraParam = [3, n0, _EPx, 0, [_N, _V], [0, [() => ExtraParamValue, 0]]];
|
|
994
|
+
var FilterCondition = [3, n0, _FC, 0, [_N, _Op, _Va], [0, 0, 64 | 0]];
|
|
995
|
+
var GetContactReachabilityStatusRequest = [3, n0, _GCRSR, 0, [_dN], [0]];
|
|
996
|
+
var GetContactReachabilityStatusResponse = [3, n0, _GCRSRe, 0, [_dN, _s], [0, 0]];
|
|
997
|
+
var GetDomainDetailRequest = [3, n0, _GDDR, 0, [_DN], [0]];
|
|
998
|
+
var GetDomainDetailResponse = [
|
|
999
|
+
3,
|
|
1000
|
+
n0,
|
|
1001
|
+
_GDDRe,
|
|
1002
|
+
0,
|
|
1003
|
+
[
|
|
1004
|
+
_DN,
|
|
1005
|
+
_Na,
|
|
1006
|
+
_AR,
|
|
1007
|
+
_ACd,
|
|
1008
|
+
_RC,
|
|
1009
|
+
_TC,
|
|
1010
|
+
_AP,
|
|
1011
|
+
_RPeg,
|
|
1012
|
+
_TPe,
|
|
1013
|
+
_RN,
|
|
1014
|
+
_WIS,
|
|
1015
|
+
_RU,
|
|
1016
|
+
_ACE,
|
|
1017
|
+
_ACP,
|
|
1018
|
+
_RDI,
|
|
1019
|
+
_CDr,
|
|
1020
|
+
_UD,
|
|
1021
|
+
_ED,
|
|
1022
|
+
_R,
|
|
1023
|
+
_DSn,
|
|
1024
|
+
_SL,
|
|
1025
|
+
_DKn,
|
|
1026
|
+
_BC,
|
|
1027
|
+
_BP,
|
|
1028
|
+
],
|
|
1029
|
+
[
|
|
1030
|
+
0,
|
|
1031
|
+
() => NameserverList,
|
|
1032
|
+
2,
|
|
1033
|
+
[() => ContactDetail, 0],
|
|
1034
|
+
[() => ContactDetail, 0],
|
|
1035
|
+
[() => ContactDetail, 0],
|
|
1036
|
+
2,
|
|
1037
|
+
2,
|
|
1038
|
+
2,
|
|
1039
|
+
0,
|
|
1040
|
+
0,
|
|
1041
|
+
0,
|
|
1042
|
+
[() => Email, 0],
|
|
1043
|
+
[() => ContactNumber, 0],
|
|
1044
|
+
0,
|
|
1045
|
+
4,
|
|
1046
|
+
4,
|
|
1047
|
+
4,
|
|
1048
|
+
0,
|
|
1049
|
+
0,
|
|
1050
|
+
64 | 0,
|
|
1051
|
+
() => DnssecKeyList,
|
|
1052
|
+
[() => ContactDetail, 0],
|
|
1053
|
+
2,
|
|
1054
|
+
],
|
|
1055
|
+
];
|
|
1056
|
+
var GetDomainSuggestionsRequest = [3, n0, _GDSR, 0, [_DN, _SC, _OA], [0, 1, 2]];
|
|
1057
|
+
var GetDomainSuggestionsResponse = [
|
|
1058
|
+
3,
|
|
1059
|
+
n0,
|
|
1060
|
+
_GDSRe,
|
|
1061
|
+
0,
|
|
1062
|
+
[_SLu],
|
|
1063
|
+
[() => DomainSuggestionsList],
|
|
1064
|
+
];
|
|
1065
|
+
var GetOperationDetailRequest = [3, n0, _GODR, 0, [_OI], [0]];
|
|
1066
|
+
var GetOperationDetailResponse = [
|
|
1067
|
+
3,
|
|
1068
|
+
n0,
|
|
1069
|
+
_GODRe,
|
|
1070
|
+
0,
|
|
1071
|
+
[_OI, _St, _M, _DN, _Ty, _SD, _LUD, _SF],
|
|
1072
|
+
[0, 0, 0, 0, 0, 4, 4, 0],
|
|
1073
|
+
];
|
|
1074
|
+
var InvalidInput = [
|
|
1075
|
+
-3,
|
|
1076
|
+
n0,
|
|
1077
|
+
_IIn,
|
|
1078
|
+
{
|
|
1079
|
+
[_e]: _c,
|
|
1080
|
+
[_hE]: 400,
|
|
1081
|
+
},
|
|
1082
|
+
[_m],
|
|
1083
|
+
[0],
|
|
1084
|
+
];
|
|
1085
|
+
schema.TypeRegistry.for(n0).registerError(InvalidInput, InvalidInput$1);
|
|
1086
|
+
var ListDomainsRequest = [
|
|
1087
|
+
3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_LDR,
|
|
1090
|
+
0,
|
|
1091
|
+
[_FCi, _SCo, _Ma, _MI],
|
|
1092
|
+
[() => FilterConditions, () => SortCondition, 0, 1],
|
|
1093
|
+
];
|
|
1094
|
+
var ListDomainsResponse = [3, n0, _LDRi, 0, [_Do, _NPM], [() => DomainSummaryList, 0]];
|
|
1095
|
+
var ListOperationsRequest = [
|
|
1096
|
+
3,
|
|
1097
|
+
n0,
|
|
1098
|
+
_LOR,
|
|
1099
|
+
0,
|
|
1100
|
+
[_SS, _Ma, _MI, _St, _Ty, _SB, _SO],
|
|
1101
|
+
[4, 0, 1, 64 | 0, 64 | 0, 0, 0],
|
|
1102
|
+
];
|
|
1103
|
+
var ListOperationsResponse = [
|
|
1104
|
+
3,
|
|
1105
|
+
n0,
|
|
1106
|
+
_LORi,
|
|
1107
|
+
0,
|
|
1108
|
+
[_Ope, _NPM],
|
|
1109
|
+
[() => OperationSummaryList, 0],
|
|
1110
|
+
];
|
|
1111
|
+
var ListPricesRequest = [3, n0, _LPR, 0, [_Tl, _Ma, _MI], [0, 0, 1]];
|
|
1112
|
+
var ListPricesResponse = [3, n0, _LPRi, 0, [_Pri, _NPM], [() => DomainPriceList, 0]];
|
|
1113
|
+
var ListTagsForDomainRequest = [3, n0, _LTFDR, 0, [_DN], [0]];
|
|
1114
|
+
var ListTagsForDomainResponse = [3, n0, _LTFDRi, 0, [_TLa], [() => TagList]];
|
|
1115
|
+
var Nameserver = [3, n0, _Nam, 0, [_N, _GI], [0, 64 | 0]];
|
|
1116
|
+
var OperationLimitExceeded = [
|
|
1117
|
+
-3,
|
|
1118
|
+
n0,
|
|
1119
|
+
_OLE,
|
|
1120
|
+
{
|
|
1121
|
+
[_e]: _c,
|
|
1122
|
+
[_hE]: 400,
|
|
1123
|
+
},
|
|
1124
|
+
[_m],
|
|
1125
|
+
[0],
|
|
1126
|
+
];
|
|
1127
|
+
schema.TypeRegistry.for(n0).registerError(OperationLimitExceeded, OperationLimitExceeded$1);
|
|
1128
|
+
var OperationSummary = [
|
|
1129
|
+
3,
|
|
1130
|
+
n0,
|
|
1131
|
+
_OS,
|
|
1132
|
+
0,
|
|
1133
|
+
[_OI, _St, _Ty, _SD, _DN, _M, _SF, _LUD],
|
|
1134
|
+
[0, 0, 0, 4, 0, 0, 0, 4],
|
|
1135
|
+
];
|
|
1136
|
+
var PriceWithCurrency = [3, n0, _PWC, 0, [_Pr, _Cu], [1, 0]];
|
|
1137
|
+
var PushDomainRequest = [3, n0, _PDR, 0, [_DN, _Ta], [0, 0]];
|
|
1138
|
+
var RegisterDomainRequest = [
|
|
1139
|
+
3,
|
|
1140
|
+
n0,
|
|
1141
|
+
_RDR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_DN, _ILC, _DIY, _AR, _ACd, _RC, _TC, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
|
|
1144
|
+
[
|
|
1145
|
+
0,
|
|
1146
|
+
0,
|
|
1147
|
+
1,
|
|
1148
|
+
2,
|
|
1149
|
+
[() => ContactDetail, 0],
|
|
1150
|
+
[() => ContactDetail, 0],
|
|
1151
|
+
[() => ContactDetail, 0],
|
|
1152
|
+
2,
|
|
1153
|
+
2,
|
|
1154
|
+
2,
|
|
1155
|
+
[() => ContactDetail, 0],
|
|
1156
|
+
2,
|
|
1157
|
+
],
|
|
1158
|
+
];
|
|
1159
|
+
var RegisterDomainResponse = [3, n0, _RDRe, 0, [_OI], [0]];
|
|
1160
|
+
var RejectDomainTransferFromAnotherAwsAccountRequest = [3, n0, _RDTFAAAR, 0, [_DN], [0]];
|
|
1161
|
+
var RejectDomainTransferFromAnotherAwsAccountResponse = [
|
|
1162
|
+
3,
|
|
1163
|
+
n0,
|
|
1164
|
+
_RDTFAAARe,
|
|
1165
|
+
0,
|
|
1166
|
+
[_OI],
|
|
1167
|
+
[0],
|
|
1168
|
+
];
|
|
1169
|
+
var RenewDomainRequest = [3, n0, _RDRen, 0, [_DN, _DIY, _CEY], [0, 1, 1]];
|
|
1170
|
+
var RenewDomainResponse = [3, n0, _RDRene, 0, [_OI], [0]];
|
|
1171
|
+
var ResendContactReachabilityEmailRequest = [3, n0, _RCRER, 0, [_dN], [0]];
|
|
1172
|
+
var ResendContactReachabilityEmailResponse = [
|
|
1173
|
+
3,
|
|
1174
|
+
n0,
|
|
1175
|
+
_RCRERe,
|
|
1176
|
+
0,
|
|
1177
|
+
[_dN, _eA, _iAV],
|
|
1178
|
+
[0, [() => Email, 0], 2],
|
|
1179
|
+
];
|
|
1180
|
+
var ResendOperationAuthorizationRequest = [3, n0, _ROAR, 0, [_OI], [0]];
|
|
1181
|
+
var RetrieveDomainAuthCodeRequest = [3, n0, _RDACR, 0, [_DN], [0]];
|
|
1182
|
+
var RetrieveDomainAuthCodeResponse = [
|
|
1183
|
+
3,
|
|
1184
|
+
n0,
|
|
1185
|
+
_RDACRe,
|
|
1186
|
+
0,
|
|
1187
|
+
[_AC],
|
|
1188
|
+
[[() => DomainAuthCode, 0]],
|
|
1189
|
+
];
|
|
1190
|
+
var SortCondition = [3, n0, _SCo, 0, [_N, _SO], [0, 0]];
|
|
1191
|
+
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
1192
|
+
var TLDRulesViolation = [
|
|
1193
|
+
-3,
|
|
1194
|
+
n0,
|
|
1195
|
+
_TLDRV,
|
|
1196
|
+
{
|
|
1197
|
+
[_e]: _c,
|
|
1198
|
+
[_hE]: 400,
|
|
1199
|
+
},
|
|
1200
|
+
[_m],
|
|
1201
|
+
[0],
|
|
1202
|
+
];
|
|
1203
|
+
schema.TypeRegistry.for(n0).registerError(TLDRulesViolation, TLDRulesViolation$1);
|
|
1204
|
+
var TransferDomainRequest = [
|
|
1205
|
+
3,
|
|
1206
|
+
n0,
|
|
1207
|
+
_TDR,
|
|
1208
|
+
0,
|
|
1209
|
+
[_DN, _ILC, _DIY, _Na, _AC, _AR, _ACd, _RC, _TC, _PPAC, _PPRC, _PPTC, _BC, _PPBC],
|
|
1210
|
+
[
|
|
1211
|
+
0,
|
|
1212
|
+
0,
|
|
1213
|
+
1,
|
|
1214
|
+
() => NameserverList,
|
|
1215
|
+
[() => DomainAuthCode, 0],
|
|
1216
|
+
2,
|
|
1217
|
+
[() => ContactDetail, 0],
|
|
1218
|
+
[() => ContactDetail, 0],
|
|
1219
|
+
[() => ContactDetail, 0],
|
|
1220
|
+
2,
|
|
1221
|
+
2,
|
|
1222
|
+
2,
|
|
1223
|
+
[() => ContactDetail, 0],
|
|
1224
|
+
2,
|
|
1225
|
+
],
|
|
1226
|
+
];
|
|
1227
|
+
var TransferDomainResponse = [3, n0, _TDRr, 0, [_OI], [0]];
|
|
1228
|
+
var TransferDomainToAnotherAwsAccountRequest = [3, n0, _TDTAAAR, 0, [_DN, _AI], [0, 0]];
|
|
1229
|
+
var TransferDomainToAnotherAwsAccountResponse = [
|
|
1230
|
+
3,
|
|
1231
|
+
n0,
|
|
1232
|
+
_TDTAAARr,
|
|
1233
|
+
0,
|
|
1234
|
+
[_OI, _P],
|
|
1235
|
+
[0, [() => Password, 0]],
|
|
1236
|
+
];
|
|
1237
|
+
var UnsupportedTLD = [
|
|
1238
|
+
-3,
|
|
1239
|
+
n0,
|
|
1240
|
+
_UTLD,
|
|
1241
|
+
{
|
|
1242
|
+
[_e]: _c,
|
|
1243
|
+
[_hE]: 400,
|
|
1244
|
+
},
|
|
1245
|
+
[_m],
|
|
1246
|
+
[0],
|
|
1247
|
+
];
|
|
1248
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedTLD, UnsupportedTLD$1);
|
|
1249
|
+
var UpdateDomainContactPrivacyRequest = [
|
|
1250
|
+
3,
|
|
1251
|
+
n0,
|
|
1252
|
+
_UDCPR,
|
|
1253
|
+
0,
|
|
1254
|
+
[_DN, _AP, _RPeg, _TPe, _BP],
|
|
1255
|
+
[0, 2, 2, 2, 2],
|
|
1256
|
+
];
|
|
1257
|
+
var UpdateDomainContactPrivacyResponse = [3, n0, _UDCPRp, 0, [_OI], [0]];
|
|
1258
|
+
var UpdateDomainContactRequest = [
|
|
1259
|
+
3,
|
|
1260
|
+
n0,
|
|
1261
|
+
_UDCR,
|
|
1262
|
+
0,
|
|
1263
|
+
[_DN, _ACd, _RC, _TC, _Co, _BC],
|
|
1264
|
+
[
|
|
1265
|
+
0,
|
|
1266
|
+
[() => ContactDetail, 0],
|
|
1267
|
+
[() => ContactDetail, 0],
|
|
1268
|
+
[() => ContactDetail, 0],
|
|
1269
|
+
() => Consent,
|
|
1270
|
+
[() => ContactDetail, 0],
|
|
1271
|
+
],
|
|
1272
|
+
];
|
|
1273
|
+
var UpdateDomainContactResponse = [3, n0, _UDCRp, 0, [_OI], [0]];
|
|
1274
|
+
var UpdateDomainNameserversRequest = [
|
|
1275
|
+
3,
|
|
1276
|
+
n0,
|
|
1277
|
+
_UDNR,
|
|
1278
|
+
0,
|
|
1279
|
+
[_DN, _FIAK, _Na],
|
|
1280
|
+
[0, [() => FIAuthKey, 0], () => NameserverList],
|
|
1281
|
+
];
|
|
1282
|
+
var UpdateDomainNameserversResponse = [3, n0, _UDNRp, 0, [_OI], [0]];
|
|
1283
|
+
var UpdateTagsForDomainRequest = [3, n0, _UTFDR, 0, [_DN, _TTU], [0, () => TagList]];
|
|
1284
|
+
var UpdateTagsForDomainResponse = [3, n0, _UTFDRp, 0, [], []];
|
|
1285
|
+
var ViewBillingRequest = [3, n0, _VBR, 0, [_Sta, _En, _Ma, _MI], [4, 4, 0, 1]];
|
|
1286
|
+
var ViewBillingResponse = [3, n0, _VBRi, 0, [_NPM, _BRi], [0, () => BillingRecords]];
|
|
1287
|
+
var __Unit = "unit";
|
|
1288
|
+
var Route53DomainsServiceException = [-3, _sm, "Route53DomainsServiceException", 0, [], []];
|
|
1289
|
+
schema.TypeRegistry.for(_sm).registerError(Route53DomainsServiceException, Route53DomainsServiceException$1);
|
|
1290
|
+
var BillingRecords = [1, n0, _BRi, 0, () => BillingRecord];
|
|
1291
|
+
var DnssecKeyList = [1, n0, _DKL, 0, () => DnssecKey];
|
|
1292
|
+
var DomainPriceList = [1, n0, _DPL, 0, () => DomainPrice];
|
|
1293
|
+
var DomainSuggestionsList = [1, n0, _DSL, 0, () => DomainSuggestion];
|
|
1294
|
+
var DomainSummaryList = [1, n0, _DSLo, 0, () => DomainSummary];
|
|
1295
|
+
var ExtraParamList = [1, n0, _EPL, 0, [() => ExtraParam, 0]];
|
|
1296
|
+
var FilterConditions = [1, n0, _FCi, 0, () => FilterCondition];
|
|
1297
|
+
var NameserverList = [1, n0, _NL, 0, () => Nameserver];
|
|
1298
|
+
var OperationSummaryList = [1, n0, _OSL, 0, () => OperationSummary];
|
|
1299
|
+
var TagList = [1, n0, _TLa, 0, () => Tag];
|
|
1300
|
+
var AcceptDomainTransferFromAnotherAwsAccount = [
|
|
1301
|
+
9,
|
|
1302
|
+
n0,
|
|
1303
|
+
_ADTFAAA,
|
|
1304
|
+
0,
|
|
1305
|
+
() => AcceptDomainTransferFromAnotherAwsAccountRequest,
|
|
1306
|
+
() => AcceptDomainTransferFromAnotherAwsAccountResponse,
|
|
1307
|
+
];
|
|
1308
|
+
var AssociateDelegationSignerToDomain = [
|
|
1309
|
+
9,
|
|
1310
|
+
n0,
|
|
1311
|
+
_ADSTD,
|
|
1312
|
+
0,
|
|
1313
|
+
() => AssociateDelegationSignerToDomainRequest,
|
|
1314
|
+
() => AssociateDelegationSignerToDomainResponse,
|
|
1315
|
+
];
|
|
1316
|
+
var CancelDomainTransferToAnotherAwsAccount = [
|
|
1317
|
+
9,
|
|
1318
|
+
n0,
|
|
1319
|
+
_CDTTAAA,
|
|
1320
|
+
0,
|
|
1321
|
+
() => CancelDomainTransferToAnotherAwsAccountRequest,
|
|
1322
|
+
() => CancelDomainTransferToAnotherAwsAccountResponse,
|
|
1323
|
+
];
|
|
1324
|
+
var CheckDomainAvailability = [
|
|
1325
|
+
9,
|
|
1326
|
+
n0,
|
|
1327
|
+
_CDA,
|
|
1328
|
+
0,
|
|
1329
|
+
() => CheckDomainAvailabilityRequest,
|
|
1330
|
+
() => CheckDomainAvailabilityResponse,
|
|
1331
|
+
];
|
|
1332
|
+
var CheckDomainTransferability = [
|
|
1333
|
+
9,
|
|
1334
|
+
n0,
|
|
1335
|
+
_CDT,
|
|
1336
|
+
0,
|
|
1337
|
+
() => CheckDomainTransferabilityRequest,
|
|
1338
|
+
() => CheckDomainTransferabilityResponse,
|
|
1339
|
+
];
|
|
1340
|
+
var DeleteDomain = [9, n0, _DD, 0, () => DeleteDomainRequest, () => DeleteDomainResponse];
|
|
1341
|
+
var DeleteTagsForDomain = [
|
|
1342
|
+
9,
|
|
1343
|
+
n0,
|
|
1344
|
+
_DTFD,
|
|
1345
|
+
0,
|
|
1346
|
+
() => DeleteTagsForDomainRequest,
|
|
1347
|
+
() => DeleteTagsForDomainResponse,
|
|
1348
|
+
];
|
|
1349
|
+
var DisableDomainAutoRenew = [
|
|
1350
|
+
9,
|
|
1351
|
+
n0,
|
|
1352
|
+
_DDAR,
|
|
1353
|
+
0,
|
|
1354
|
+
() => DisableDomainAutoRenewRequest,
|
|
1355
|
+
() => DisableDomainAutoRenewResponse,
|
|
1356
|
+
];
|
|
1357
|
+
var DisableDomainTransferLock = [
|
|
1358
|
+
9,
|
|
1359
|
+
n0,
|
|
1360
|
+
_DDTL,
|
|
1361
|
+
0,
|
|
1362
|
+
() => DisableDomainTransferLockRequest,
|
|
1363
|
+
() => DisableDomainTransferLockResponse,
|
|
1364
|
+
];
|
|
1365
|
+
var DisassociateDelegationSignerFromDomain = [
|
|
1366
|
+
9,
|
|
1367
|
+
n0,
|
|
1368
|
+
_DDSFD,
|
|
1369
|
+
0,
|
|
1370
|
+
() => DisassociateDelegationSignerFromDomainRequest,
|
|
1371
|
+
() => DisassociateDelegationSignerFromDomainResponse,
|
|
1372
|
+
];
|
|
1373
|
+
var EnableDomainAutoRenew = [
|
|
1374
|
+
9,
|
|
1375
|
+
n0,
|
|
1376
|
+
_EDAR,
|
|
1377
|
+
0,
|
|
1378
|
+
() => EnableDomainAutoRenewRequest,
|
|
1379
|
+
() => EnableDomainAutoRenewResponse,
|
|
1380
|
+
];
|
|
1381
|
+
var EnableDomainTransferLock = [
|
|
1382
|
+
9,
|
|
1383
|
+
n0,
|
|
1384
|
+
_EDTL,
|
|
1385
|
+
0,
|
|
1386
|
+
() => EnableDomainTransferLockRequest,
|
|
1387
|
+
() => EnableDomainTransferLockResponse,
|
|
1388
|
+
];
|
|
1389
|
+
var GetContactReachabilityStatus = [
|
|
1390
|
+
9,
|
|
1391
|
+
n0,
|
|
1392
|
+
_GCRS,
|
|
1393
|
+
0,
|
|
1394
|
+
() => GetContactReachabilityStatusRequest,
|
|
1395
|
+
() => GetContactReachabilityStatusResponse,
|
|
1396
|
+
];
|
|
1397
|
+
var GetDomainDetail = [
|
|
1398
|
+
9,
|
|
1399
|
+
n0,
|
|
1400
|
+
_GDD,
|
|
1401
|
+
0,
|
|
1402
|
+
() => GetDomainDetailRequest,
|
|
1403
|
+
() => GetDomainDetailResponse,
|
|
1404
|
+
];
|
|
1405
|
+
var GetDomainSuggestions = [
|
|
1406
|
+
9,
|
|
1407
|
+
n0,
|
|
1408
|
+
_GDS,
|
|
1409
|
+
0,
|
|
1410
|
+
() => GetDomainSuggestionsRequest,
|
|
1411
|
+
() => GetDomainSuggestionsResponse,
|
|
1412
|
+
];
|
|
1413
|
+
var GetOperationDetail = [
|
|
1414
|
+
9,
|
|
1415
|
+
n0,
|
|
1416
|
+
_GOD,
|
|
1417
|
+
0,
|
|
1418
|
+
() => GetOperationDetailRequest,
|
|
1419
|
+
() => GetOperationDetailResponse,
|
|
1420
|
+
];
|
|
1421
|
+
var ListDomains = [9, n0, _LD, 0, () => ListDomainsRequest, () => ListDomainsResponse];
|
|
1422
|
+
var ListOperations = [
|
|
1423
|
+
9,
|
|
1424
|
+
n0,
|
|
1425
|
+
_LO,
|
|
1426
|
+
0,
|
|
1427
|
+
() => ListOperationsRequest,
|
|
1428
|
+
() => ListOperationsResponse,
|
|
1429
|
+
];
|
|
1430
|
+
var ListPrices = [9, n0, _LP, 0, () => ListPricesRequest, () => ListPricesResponse];
|
|
1431
|
+
var ListTagsForDomain = [
|
|
1432
|
+
9,
|
|
1433
|
+
n0,
|
|
1434
|
+
_LTFD,
|
|
1435
|
+
0,
|
|
1436
|
+
() => ListTagsForDomainRequest,
|
|
1437
|
+
() => ListTagsForDomainResponse,
|
|
1438
|
+
];
|
|
1439
|
+
var PushDomain = [9, n0, _PD, 0, () => PushDomainRequest, () => __Unit];
|
|
1440
|
+
var RegisterDomain = [
|
|
1441
|
+
9,
|
|
1442
|
+
n0,
|
|
1443
|
+
_RD,
|
|
1444
|
+
0,
|
|
1445
|
+
() => RegisterDomainRequest,
|
|
1446
|
+
() => RegisterDomainResponse,
|
|
1447
|
+
];
|
|
1448
|
+
var RejectDomainTransferFromAnotherAwsAccount = [
|
|
1449
|
+
9,
|
|
1450
|
+
n0,
|
|
1451
|
+
_RDTFAAA,
|
|
1452
|
+
0,
|
|
1453
|
+
() => RejectDomainTransferFromAnotherAwsAccountRequest,
|
|
1454
|
+
() => RejectDomainTransferFromAnotherAwsAccountResponse,
|
|
1455
|
+
];
|
|
1456
|
+
var RenewDomain = [9, n0, _RDe, 0, () => RenewDomainRequest, () => RenewDomainResponse];
|
|
1457
|
+
var ResendContactReachabilityEmail = [
|
|
1458
|
+
9,
|
|
1459
|
+
n0,
|
|
1460
|
+
_RCRE,
|
|
1461
|
+
0,
|
|
1462
|
+
() => ResendContactReachabilityEmailRequest,
|
|
1463
|
+
() => ResendContactReachabilityEmailResponse,
|
|
1464
|
+
];
|
|
1465
|
+
var ResendOperationAuthorization = [
|
|
1466
|
+
9,
|
|
1467
|
+
n0,
|
|
1468
|
+
_ROA,
|
|
1469
|
+
0,
|
|
1470
|
+
() => ResendOperationAuthorizationRequest,
|
|
1471
|
+
() => __Unit,
|
|
1472
|
+
];
|
|
1473
|
+
var RetrieveDomainAuthCode = [
|
|
1474
|
+
9,
|
|
1475
|
+
n0,
|
|
1476
|
+
_RDAC,
|
|
1477
|
+
0,
|
|
1478
|
+
() => RetrieveDomainAuthCodeRequest,
|
|
1479
|
+
() => RetrieveDomainAuthCodeResponse,
|
|
1480
|
+
];
|
|
1481
|
+
var TransferDomain = [
|
|
1482
|
+
9,
|
|
1483
|
+
n0,
|
|
1484
|
+
_TD,
|
|
1485
|
+
0,
|
|
1486
|
+
() => TransferDomainRequest,
|
|
1487
|
+
() => TransferDomainResponse,
|
|
1488
|
+
];
|
|
1489
|
+
var TransferDomainToAnotherAwsAccount = [
|
|
1490
|
+
9,
|
|
1491
|
+
n0,
|
|
1492
|
+
_TDTAAA,
|
|
1493
|
+
0,
|
|
1494
|
+
() => TransferDomainToAnotherAwsAccountRequest,
|
|
1495
|
+
() => TransferDomainToAnotherAwsAccountResponse,
|
|
1496
|
+
];
|
|
1497
|
+
var UpdateDomainContact = [
|
|
1498
|
+
9,
|
|
1499
|
+
n0,
|
|
1500
|
+
_UDC,
|
|
1501
|
+
0,
|
|
1502
|
+
() => UpdateDomainContactRequest,
|
|
1503
|
+
() => UpdateDomainContactResponse,
|
|
1504
|
+
];
|
|
1505
|
+
var UpdateDomainContactPrivacy = [
|
|
1506
|
+
9,
|
|
1507
|
+
n0,
|
|
1508
|
+
_UDCP,
|
|
1509
|
+
0,
|
|
1510
|
+
() => UpdateDomainContactPrivacyRequest,
|
|
1511
|
+
() => UpdateDomainContactPrivacyResponse,
|
|
1512
|
+
];
|
|
1513
|
+
var UpdateDomainNameservers = [
|
|
1514
|
+
9,
|
|
1515
|
+
n0,
|
|
1516
|
+
_UDN,
|
|
1517
|
+
0,
|
|
1518
|
+
() => UpdateDomainNameserversRequest,
|
|
1519
|
+
() => UpdateDomainNameserversResponse,
|
|
1520
|
+
];
|
|
1521
|
+
var UpdateTagsForDomain = [
|
|
1522
|
+
9,
|
|
1523
|
+
n0,
|
|
1524
|
+
_UTFD,
|
|
1525
|
+
0,
|
|
1526
|
+
() => UpdateTagsForDomainRequest,
|
|
1527
|
+
() => UpdateTagsForDomainResponse,
|
|
1528
|
+
];
|
|
1529
|
+
var ViewBilling = [9, n0, _VB, 0, () => ViewBillingRequest, () => ViewBillingResponse];
|
|
1600
1530
|
|
|
1601
1531
|
class AcceptDomainTransferFromAnotherAwsAccountCommand extends smithyClient.Command
|
|
1602
1532
|
.classBuilder()
|
|
1603
1533
|
.ep(commonParams)
|
|
1604
1534
|
.m(function (Command, cs, config, o) {
|
|
1605
|
-
return [
|
|
1606
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1607
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1608
|
-
];
|
|
1535
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1609
1536
|
})
|
|
1610
1537
|
.s("Route53Domains_v20140515", "AcceptDomainTransferFromAnotherAwsAccount", {})
|
|
1611
1538
|
.n("Route53DomainsClient", "AcceptDomainTransferFromAnotherAwsAccountCommand")
|
|
1612
|
-
.
|
|
1613
|
-
.ser(se_AcceptDomainTransferFromAnotherAwsAccountCommand)
|
|
1614
|
-
.de(de_AcceptDomainTransferFromAnotherAwsAccountCommand)
|
|
1539
|
+
.sc(AcceptDomainTransferFromAnotherAwsAccount)
|
|
1615
1540
|
.build() {
|
|
1616
1541
|
}
|
|
1617
1542
|
|
|
@@ -1619,16 +1544,11 @@ class AssociateDelegationSignerToDomainCommand extends smithyClient.Command
|
|
|
1619
1544
|
.classBuilder()
|
|
1620
1545
|
.ep(commonParams)
|
|
1621
1546
|
.m(function (Command, cs, config, o) {
|
|
1622
|
-
return [
|
|
1623
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1624
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1625
|
-
];
|
|
1547
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1626
1548
|
})
|
|
1627
1549
|
.s("Route53Domains_v20140515", "AssociateDelegationSignerToDomain", {})
|
|
1628
1550
|
.n("Route53DomainsClient", "AssociateDelegationSignerToDomainCommand")
|
|
1629
|
-
.
|
|
1630
|
-
.ser(se_AssociateDelegationSignerToDomainCommand)
|
|
1631
|
-
.de(de_AssociateDelegationSignerToDomainCommand)
|
|
1551
|
+
.sc(AssociateDelegationSignerToDomain)
|
|
1632
1552
|
.build() {
|
|
1633
1553
|
}
|
|
1634
1554
|
|
|
@@ -1636,16 +1556,11 @@ class CancelDomainTransferToAnotherAwsAccountCommand extends smithyClient.Comman
|
|
|
1636
1556
|
.classBuilder()
|
|
1637
1557
|
.ep(commonParams)
|
|
1638
1558
|
.m(function (Command, cs, config, o) {
|
|
1639
|
-
return [
|
|
1640
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1641
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1642
|
-
];
|
|
1559
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1643
1560
|
})
|
|
1644
1561
|
.s("Route53Domains_v20140515", "CancelDomainTransferToAnotherAwsAccount", {})
|
|
1645
1562
|
.n("Route53DomainsClient", "CancelDomainTransferToAnotherAwsAccountCommand")
|
|
1646
|
-
.
|
|
1647
|
-
.ser(se_CancelDomainTransferToAnotherAwsAccountCommand)
|
|
1648
|
-
.de(de_CancelDomainTransferToAnotherAwsAccountCommand)
|
|
1563
|
+
.sc(CancelDomainTransferToAnotherAwsAccount)
|
|
1649
1564
|
.build() {
|
|
1650
1565
|
}
|
|
1651
1566
|
|
|
@@ -1653,16 +1568,11 @@ class CheckDomainAvailabilityCommand extends smithyClient.Command
|
|
|
1653
1568
|
.classBuilder()
|
|
1654
1569
|
.ep(commonParams)
|
|
1655
1570
|
.m(function (Command, cs, config, o) {
|
|
1656
|
-
return [
|
|
1657
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1658
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1659
|
-
];
|
|
1571
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1660
1572
|
})
|
|
1661
1573
|
.s("Route53Domains_v20140515", "CheckDomainAvailability", {})
|
|
1662
1574
|
.n("Route53DomainsClient", "CheckDomainAvailabilityCommand")
|
|
1663
|
-
.
|
|
1664
|
-
.ser(se_CheckDomainAvailabilityCommand)
|
|
1665
|
-
.de(de_CheckDomainAvailabilityCommand)
|
|
1575
|
+
.sc(CheckDomainAvailability)
|
|
1666
1576
|
.build() {
|
|
1667
1577
|
}
|
|
1668
1578
|
|
|
@@ -1670,16 +1580,11 @@ class CheckDomainTransferabilityCommand extends smithyClient.Command
|
|
|
1670
1580
|
.classBuilder()
|
|
1671
1581
|
.ep(commonParams)
|
|
1672
1582
|
.m(function (Command, cs, config, o) {
|
|
1673
|
-
return [
|
|
1674
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1675
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1676
|
-
];
|
|
1583
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1677
1584
|
})
|
|
1678
1585
|
.s("Route53Domains_v20140515", "CheckDomainTransferability", {})
|
|
1679
1586
|
.n("Route53DomainsClient", "CheckDomainTransferabilityCommand")
|
|
1680
|
-
.
|
|
1681
|
-
.ser(se_CheckDomainTransferabilityCommand)
|
|
1682
|
-
.de(de_CheckDomainTransferabilityCommand)
|
|
1587
|
+
.sc(CheckDomainTransferability)
|
|
1683
1588
|
.build() {
|
|
1684
1589
|
}
|
|
1685
1590
|
|
|
@@ -1687,16 +1592,11 @@ class DeleteDomainCommand extends smithyClient.Command
|
|
|
1687
1592
|
.classBuilder()
|
|
1688
1593
|
.ep(commonParams)
|
|
1689
1594
|
.m(function (Command, cs, config, o) {
|
|
1690
|
-
return [
|
|
1691
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1692
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1693
|
-
];
|
|
1595
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1694
1596
|
})
|
|
1695
1597
|
.s("Route53Domains_v20140515", "DeleteDomain", {})
|
|
1696
1598
|
.n("Route53DomainsClient", "DeleteDomainCommand")
|
|
1697
|
-
.
|
|
1698
|
-
.ser(se_DeleteDomainCommand)
|
|
1699
|
-
.de(de_DeleteDomainCommand)
|
|
1599
|
+
.sc(DeleteDomain)
|
|
1700
1600
|
.build() {
|
|
1701
1601
|
}
|
|
1702
1602
|
|
|
@@ -1704,16 +1604,11 @@ class DeleteTagsForDomainCommand extends smithyClient.Command
|
|
|
1704
1604
|
.classBuilder()
|
|
1705
1605
|
.ep(commonParams)
|
|
1706
1606
|
.m(function (Command, cs, config, o) {
|
|
1707
|
-
return [
|
|
1708
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1709
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1710
|
-
];
|
|
1607
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1711
1608
|
})
|
|
1712
1609
|
.s("Route53Domains_v20140515", "DeleteTagsForDomain", {})
|
|
1713
1610
|
.n("Route53DomainsClient", "DeleteTagsForDomainCommand")
|
|
1714
|
-
.
|
|
1715
|
-
.ser(se_DeleteTagsForDomainCommand)
|
|
1716
|
-
.de(de_DeleteTagsForDomainCommand)
|
|
1611
|
+
.sc(DeleteTagsForDomain)
|
|
1717
1612
|
.build() {
|
|
1718
1613
|
}
|
|
1719
1614
|
|
|
@@ -1721,16 +1616,11 @@ class DisableDomainAutoRenewCommand extends smithyClient.Command
|
|
|
1721
1616
|
.classBuilder()
|
|
1722
1617
|
.ep(commonParams)
|
|
1723
1618
|
.m(function (Command, cs, config, o) {
|
|
1724
|
-
return [
|
|
1725
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1726
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1727
|
-
];
|
|
1619
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1728
1620
|
})
|
|
1729
1621
|
.s("Route53Domains_v20140515", "DisableDomainAutoRenew", {})
|
|
1730
1622
|
.n("Route53DomainsClient", "DisableDomainAutoRenewCommand")
|
|
1731
|
-
.
|
|
1732
|
-
.ser(se_DisableDomainAutoRenewCommand)
|
|
1733
|
-
.de(de_DisableDomainAutoRenewCommand)
|
|
1623
|
+
.sc(DisableDomainAutoRenew)
|
|
1734
1624
|
.build() {
|
|
1735
1625
|
}
|
|
1736
1626
|
|
|
@@ -1738,16 +1628,11 @@ class DisableDomainTransferLockCommand extends smithyClient.Command
|
|
|
1738
1628
|
.classBuilder()
|
|
1739
1629
|
.ep(commonParams)
|
|
1740
1630
|
.m(function (Command, cs, config, o) {
|
|
1741
|
-
return [
|
|
1742
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1743
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1744
|
-
];
|
|
1631
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1745
1632
|
})
|
|
1746
1633
|
.s("Route53Domains_v20140515", "DisableDomainTransferLock", {})
|
|
1747
1634
|
.n("Route53DomainsClient", "DisableDomainTransferLockCommand")
|
|
1748
|
-
.
|
|
1749
|
-
.ser(se_DisableDomainTransferLockCommand)
|
|
1750
|
-
.de(de_DisableDomainTransferLockCommand)
|
|
1635
|
+
.sc(DisableDomainTransferLock)
|
|
1751
1636
|
.build() {
|
|
1752
1637
|
}
|
|
1753
1638
|
|
|
@@ -1755,16 +1640,11 @@ class DisassociateDelegationSignerFromDomainCommand extends smithyClient.Command
|
|
|
1755
1640
|
.classBuilder()
|
|
1756
1641
|
.ep(commonParams)
|
|
1757
1642
|
.m(function (Command, cs, config, o) {
|
|
1758
|
-
return [
|
|
1759
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1760
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1761
|
-
];
|
|
1643
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1762
1644
|
})
|
|
1763
1645
|
.s("Route53Domains_v20140515", "DisassociateDelegationSignerFromDomain", {})
|
|
1764
1646
|
.n("Route53DomainsClient", "DisassociateDelegationSignerFromDomainCommand")
|
|
1765
|
-
.
|
|
1766
|
-
.ser(se_DisassociateDelegationSignerFromDomainCommand)
|
|
1767
|
-
.de(de_DisassociateDelegationSignerFromDomainCommand)
|
|
1647
|
+
.sc(DisassociateDelegationSignerFromDomain)
|
|
1768
1648
|
.build() {
|
|
1769
1649
|
}
|
|
1770
1650
|
|
|
@@ -1772,16 +1652,11 @@ class EnableDomainAutoRenewCommand extends smithyClient.Command
|
|
|
1772
1652
|
.classBuilder()
|
|
1773
1653
|
.ep(commonParams)
|
|
1774
1654
|
.m(function (Command, cs, config, o) {
|
|
1775
|
-
return [
|
|
1776
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1777
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1778
|
-
];
|
|
1655
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1779
1656
|
})
|
|
1780
1657
|
.s("Route53Domains_v20140515", "EnableDomainAutoRenew", {})
|
|
1781
1658
|
.n("Route53DomainsClient", "EnableDomainAutoRenewCommand")
|
|
1782
|
-
.
|
|
1783
|
-
.ser(se_EnableDomainAutoRenewCommand)
|
|
1784
|
-
.de(de_EnableDomainAutoRenewCommand)
|
|
1659
|
+
.sc(EnableDomainAutoRenew)
|
|
1785
1660
|
.build() {
|
|
1786
1661
|
}
|
|
1787
1662
|
|
|
@@ -1789,16 +1664,11 @@ class EnableDomainTransferLockCommand extends smithyClient.Command
|
|
|
1789
1664
|
.classBuilder()
|
|
1790
1665
|
.ep(commonParams)
|
|
1791
1666
|
.m(function (Command, cs, config, o) {
|
|
1792
|
-
return [
|
|
1793
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1794
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1795
|
-
];
|
|
1667
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1796
1668
|
})
|
|
1797
1669
|
.s("Route53Domains_v20140515", "EnableDomainTransferLock", {})
|
|
1798
1670
|
.n("Route53DomainsClient", "EnableDomainTransferLockCommand")
|
|
1799
|
-
.
|
|
1800
|
-
.ser(se_EnableDomainTransferLockCommand)
|
|
1801
|
-
.de(de_EnableDomainTransferLockCommand)
|
|
1671
|
+
.sc(EnableDomainTransferLock)
|
|
1802
1672
|
.build() {
|
|
1803
1673
|
}
|
|
1804
1674
|
|
|
@@ -1806,16 +1676,11 @@ class GetContactReachabilityStatusCommand extends smithyClient.Command
|
|
|
1806
1676
|
.classBuilder()
|
|
1807
1677
|
.ep(commonParams)
|
|
1808
1678
|
.m(function (Command, cs, config, o) {
|
|
1809
|
-
return [
|
|
1810
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1811
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1812
|
-
];
|
|
1679
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1813
1680
|
})
|
|
1814
1681
|
.s("Route53Domains_v20140515", "GetContactReachabilityStatus", {})
|
|
1815
1682
|
.n("Route53DomainsClient", "GetContactReachabilityStatusCommand")
|
|
1816
|
-
.
|
|
1817
|
-
.ser(se_GetContactReachabilityStatusCommand)
|
|
1818
|
-
.de(de_GetContactReachabilityStatusCommand)
|
|
1683
|
+
.sc(GetContactReachabilityStatus)
|
|
1819
1684
|
.build() {
|
|
1820
1685
|
}
|
|
1821
1686
|
|
|
@@ -1823,16 +1688,11 @@ class GetDomainDetailCommand extends smithyClient.Command
|
|
|
1823
1688
|
.classBuilder()
|
|
1824
1689
|
.ep(commonParams)
|
|
1825
1690
|
.m(function (Command, cs, config, o) {
|
|
1826
|
-
return [
|
|
1827
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1828
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1829
|
-
];
|
|
1691
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1830
1692
|
})
|
|
1831
1693
|
.s("Route53Domains_v20140515", "GetDomainDetail", {})
|
|
1832
1694
|
.n("Route53DomainsClient", "GetDomainDetailCommand")
|
|
1833
|
-
.
|
|
1834
|
-
.ser(se_GetDomainDetailCommand)
|
|
1835
|
-
.de(de_GetDomainDetailCommand)
|
|
1695
|
+
.sc(GetDomainDetail)
|
|
1836
1696
|
.build() {
|
|
1837
1697
|
}
|
|
1838
1698
|
|
|
@@ -1840,16 +1700,11 @@ class GetDomainSuggestionsCommand extends smithyClient.Command
|
|
|
1840
1700
|
.classBuilder()
|
|
1841
1701
|
.ep(commonParams)
|
|
1842
1702
|
.m(function (Command, cs, config, o) {
|
|
1843
|
-
return [
|
|
1844
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1845
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1846
|
-
];
|
|
1703
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1847
1704
|
})
|
|
1848
1705
|
.s("Route53Domains_v20140515", "GetDomainSuggestions", {})
|
|
1849
1706
|
.n("Route53DomainsClient", "GetDomainSuggestionsCommand")
|
|
1850
|
-
.
|
|
1851
|
-
.ser(se_GetDomainSuggestionsCommand)
|
|
1852
|
-
.de(de_GetDomainSuggestionsCommand)
|
|
1707
|
+
.sc(GetDomainSuggestions)
|
|
1853
1708
|
.build() {
|
|
1854
1709
|
}
|
|
1855
1710
|
|
|
@@ -1857,16 +1712,11 @@ class GetOperationDetailCommand extends smithyClient.Command
|
|
|
1857
1712
|
.classBuilder()
|
|
1858
1713
|
.ep(commonParams)
|
|
1859
1714
|
.m(function (Command, cs, config, o) {
|
|
1860
|
-
return [
|
|
1861
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1862
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1863
|
-
];
|
|
1715
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1864
1716
|
})
|
|
1865
1717
|
.s("Route53Domains_v20140515", "GetOperationDetail", {})
|
|
1866
1718
|
.n("Route53DomainsClient", "GetOperationDetailCommand")
|
|
1867
|
-
.
|
|
1868
|
-
.ser(se_GetOperationDetailCommand)
|
|
1869
|
-
.de(de_GetOperationDetailCommand)
|
|
1719
|
+
.sc(GetOperationDetail)
|
|
1870
1720
|
.build() {
|
|
1871
1721
|
}
|
|
1872
1722
|
|
|
@@ -1874,16 +1724,11 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
1874
1724
|
.classBuilder()
|
|
1875
1725
|
.ep(commonParams)
|
|
1876
1726
|
.m(function (Command, cs, config, o) {
|
|
1877
|
-
return [
|
|
1878
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1879
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1880
|
-
];
|
|
1727
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1881
1728
|
})
|
|
1882
1729
|
.s("Route53Domains_v20140515", "ListDomains", {})
|
|
1883
1730
|
.n("Route53DomainsClient", "ListDomainsCommand")
|
|
1884
|
-
.
|
|
1885
|
-
.ser(se_ListDomainsCommand)
|
|
1886
|
-
.de(de_ListDomainsCommand)
|
|
1731
|
+
.sc(ListDomains)
|
|
1887
1732
|
.build() {
|
|
1888
1733
|
}
|
|
1889
1734
|
|
|
@@ -1891,16 +1736,11 @@ class ListOperationsCommand extends smithyClient.Command
|
|
|
1891
1736
|
.classBuilder()
|
|
1892
1737
|
.ep(commonParams)
|
|
1893
1738
|
.m(function (Command, cs, config, o) {
|
|
1894
|
-
return [
|
|
1895
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1896
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1897
|
-
];
|
|
1739
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1898
1740
|
})
|
|
1899
1741
|
.s("Route53Domains_v20140515", "ListOperations", {})
|
|
1900
1742
|
.n("Route53DomainsClient", "ListOperationsCommand")
|
|
1901
|
-
.
|
|
1902
|
-
.ser(se_ListOperationsCommand)
|
|
1903
|
-
.de(de_ListOperationsCommand)
|
|
1743
|
+
.sc(ListOperations)
|
|
1904
1744
|
.build() {
|
|
1905
1745
|
}
|
|
1906
1746
|
|
|
@@ -1908,16 +1748,11 @@ class ListPricesCommand extends smithyClient.Command
|
|
|
1908
1748
|
.classBuilder()
|
|
1909
1749
|
.ep(commonParams)
|
|
1910
1750
|
.m(function (Command, cs, config, o) {
|
|
1911
|
-
return [
|
|
1912
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1913
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1914
|
-
];
|
|
1751
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1915
1752
|
})
|
|
1916
1753
|
.s("Route53Domains_v20140515", "ListPrices", {})
|
|
1917
1754
|
.n("Route53DomainsClient", "ListPricesCommand")
|
|
1918
|
-
.
|
|
1919
|
-
.ser(se_ListPricesCommand)
|
|
1920
|
-
.de(de_ListPricesCommand)
|
|
1755
|
+
.sc(ListPrices)
|
|
1921
1756
|
.build() {
|
|
1922
1757
|
}
|
|
1923
1758
|
|
|
@@ -1925,16 +1760,11 @@ class ListTagsForDomainCommand extends smithyClient.Command
|
|
|
1925
1760
|
.classBuilder()
|
|
1926
1761
|
.ep(commonParams)
|
|
1927
1762
|
.m(function (Command, cs, config, o) {
|
|
1928
|
-
return [
|
|
1929
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1930
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1931
|
-
];
|
|
1763
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1932
1764
|
})
|
|
1933
1765
|
.s("Route53Domains_v20140515", "ListTagsForDomain", {})
|
|
1934
1766
|
.n("Route53DomainsClient", "ListTagsForDomainCommand")
|
|
1935
|
-
.
|
|
1936
|
-
.ser(se_ListTagsForDomainCommand)
|
|
1937
|
-
.de(de_ListTagsForDomainCommand)
|
|
1767
|
+
.sc(ListTagsForDomain)
|
|
1938
1768
|
.build() {
|
|
1939
1769
|
}
|
|
1940
1770
|
|
|
@@ -1942,16 +1772,11 @@ class PushDomainCommand extends smithyClient.Command
|
|
|
1942
1772
|
.classBuilder()
|
|
1943
1773
|
.ep(commonParams)
|
|
1944
1774
|
.m(function (Command, cs, config, o) {
|
|
1945
|
-
return [
|
|
1946
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1947
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1948
|
-
];
|
|
1775
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1949
1776
|
})
|
|
1950
1777
|
.s("Route53Domains_v20140515", "PushDomain", {})
|
|
1951
1778
|
.n("Route53DomainsClient", "PushDomainCommand")
|
|
1952
|
-
.
|
|
1953
|
-
.ser(se_PushDomainCommand)
|
|
1954
|
-
.de(de_PushDomainCommand)
|
|
1779
|
+
.sc(PushDomain)
|
|
1955
1780
|
.build() {
|
|
1956
1781
|
}
|
|
1957
1782
|
|
|
@@ -1959,16 +1784,11 @@ class RegisterDomainCommand extends smithyClient.Command
|
|
|
1959
1784
|
.classBuilder()
|
|
1960
1785
|
.ep(commonParams)
|
|
1961
1786
|
.m(function (Command, cs, config, o) {
|
|
1962
|
-
return [
|
|
1963
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1964
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1965
|
-
];
|
|
1787
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1966
1788
|
})
|
|
1967
1789
|
.s("Route53Domains_v20140515", "RegisterDomain", {})
|
|
1968
1790
|
.n("Route53DomainsClient", "RegisterDomainCommand")
|
|
1969
|
-
.
|
|
1970
|
-
.ser(se_RegisterDomainCommand)
|
|
1971
|
-
.de(de_RegisterDomainCommand)
|
|
1791
|
+
.sc(RegisterDomain)
|
|
1972
1792
|
.build() {
|
|
1973
1793
|
}
|
|
1974
1794
|
|
|
@@ -1976,16 +1796,11 @@ class RejectDomainTransferFromAnotherAwsAccountCommand extends smithyClient.Comm
|
|
|
1976
1796
|
.classBuilder()
|
|
1977
1797
|
.ep(commonParams)
|
|
1978
1798
|
.m(function (Command, cs, config, o) {
|
|
1979
|
-
return [
|
|
1980
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1981
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1982
|
-
];
|
|
1799
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1983
1800
|
})
|
|
1984
1801
|
.s("Route53Domains_v20140515", "RejectDomainTransferFromAnotherAwsAccount", {})
|
|
1985
1802
|
.n("Route53DomainsClient", "RejectDomainTransferFromAnotherAwsAccountCommand")
|
|
1986
|
-
.
|
|
1987
|
-
.ser(se_RejectDomainTransferFromAnotherAwsAccountCommand)
|
|
1988
|
-
.de(de_RejectDomainTransferFromAnotherAwsAccountCommand)
|
|
1803
|
+
.sc(RejectDomainTransferFromAnotherAwsAccount)
|
|
1989
1804
|
.build() {
|
|
1990
1805
|
}
|
|
1991
1806
|
|
|
@@ -1993,16 +1808,11 @@ class RenewDomainCommand extends smithyClient.Command
|
|
|
1993
1808
|
.classBuilder()
|
|
1994
1809
|
.ep(commonParams)
|
|
1995
1810
|
.m(function (Command, cs, config, o) {
|
|
1996
|
-
return [
|
|
1997
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1998
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1999
|
-
];
|
|
1811
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2000
1812
|
})
|
|
2001
1813
|
.s("Route53Domains_v20140515", "RenewDomain", {})
|
|
2002
1814
|
.n("Route53DomainsClient", "RenewDomainCommand")
|
|
2003
|
-
.
|
|
2004
|
-
.ser(se_RenewDomainCommand)
|
|
2005
|
-
.de(de_RenewDomainCommand)
|
|
1815
|
+
.sc(RenewDomain)
|
|
2006
1816
|
.build() {
|
|
2007
1817
|
}
|
|
2008
1818
|
|
|
@@ -2010,16 +1820,11 @@ class ResendContactReachabilityEmailCommand extends smithyClient.Command
|
|
|
2010
1820
|
.classBuilder()
|
|
2011
1821
|
.ep(commonParams)
|
|
2012
1822
|
.m(function (Command, cs, config, o) {
|
|
2013
|
-
return [
|
|
2014
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2015
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2016
|
-
];
|
|
1823
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2017
1824
|
})
|
|
2018
1825
|
.s("Route53Domains_v20140515", "ResendContactReachabilityEmail", {})
|
|
2019
1826
|
.n("Route53DomainsClient", "ResendContactReachabilityEmailCommand")
|
|
2020
|
-
.
|
|
2021
|
-
.ser(se_ResendContactReachabilityEmailCommand)
|
|
2022
|
-
.de(de_ResendContactReachabilityEmailCommand)
|
|
1827
|
+
.sc(ResendContactReachabilityEmail)
|
|
2023
1828
|
.build() {
|
|
2024
1829
|
}
|
|
2025
1830
|
|
|
@@ -2027,16 +1832,11 @@ class ResendOperationAuthorizationCommand extends smithyClient.Command
|
|
|
2027
1832
|
.classBuilder()
|
|
2028
1833
|
.ep(commonParams)
|
|
2029
1834
|
.m(function (Command, cs, config, o) {
|
|
2030
|
-
return [
|
|
2031
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2032
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2033
|
-
];
|
|
1835
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2034
1836
|
})
|
|
2035
1837
|
.s("Route53Domains_v20140515", "ResendOperationAuthorization", {})
|
|
2036
1838
|
.n("Route53DomainsClient", "ResendOperationAuthorizationCommand")
|
|
2037
|
-
.
|
|
2038
|
-
.ser(se_ResendOperationAuthorizationCommand)
|
|
2039
|
-
.de(de_ResendOperationAuthorizationCommand)
|
|
1839
|
+
.sc(ResendOperationAuthorization)
|
|
2040
1840
|
.build() {
|
|
2041
1841
|
}
|
|
2042
1842
|
|
|
@@ -2044,16 +1844,11 @@ class RetrieveDomainAuthCodeCommand extends smithyClient.Command
|
|
|
2044
1844
|
.classBuilder()
|
|
2045
1845
|
.ep(commonParams)
|
|
2046
1846
|
.m(function (Command, cs, config, o) {
|
|
2047
|
-
return [
|
|
2048
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2049
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2050
|
-
];
|
|
1847
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2051
1848
|
})
|
|
2052
1849
|
.s("Route53Domains_v20140515", "RetrieveDomainAuthCode", {})
|
|
2053
1850
|
.n("Route53DomainsClient", "RetrieveDomainAuthCodeCommand")
|
|
2054
|
-
.
|
|
2055
|
-
.ser(se_RetrieveDomainAuthCodeCommand)
|
|
2056
|
-
.de(de_RetrieveDomainAuthCodeCommand)
|
|
1851
|
+
.sc(RetrieveDomainAuthCode)
|
|
2057
1852
|
.build() {
|
|
2058
1853
|
}
|
|
2059
1854
|
|
|
@@ -2061,16 +1856,11 @@ class TransferDomainCommand extends smithyClient.Command
|
|
|
2061
1856
|
.classBuilder()
|
|
2062
1857
|
.ep(commonParams)
|
|
2063
1858
|
.m(function (Command, cs, config, o) {
|
|
2064
|
-
return [
|
|
2065
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2066
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2067
|
-
];
|
|
1859
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2068
1860
|
})
|
|
2069
1861
|
.s("Route53Domains_v20140515", "TransferDomain", {})
|
|
2070
1862
|
.n("Route53DomainsClient", "TransferDomainCommand")
|
|
2071
|
-
.
|
|
2072
|
-
.ser(se_TransferDomainCommand)
|
|
2073
|
-
.de(de_TransferDomainCommand)
|
|
1863
|
+
.sc(TransferDomain)
|
|
2074
1864
|
.build() {
|
|
2075
1865
|
}
|
|
2076
1866
|
|
|
@@ -2078,16 +1868,11 @@ class TransferDomainToAnotherAwsAccountCommand extends smithyClient.Command
|
|
|
2078
1868
|
.classBuilder()
|
|
2079
1869
|
.ep(commonParams)
|
|
2080
1870
|
.m(function (Command, cs, config, o) {
|
|
2081
|
-
return [
|
|
2082
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2083
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2084
|
-
];
|
|
1871
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2085
1872
|
})
|
|
2086
1873
|
.s("Route53Domains_v20140515", "TransferDomainToAnotherAwsAccount", {})
|
|
2087
1874
|
.n("Route53DomainsClient", "TransferDomainToAnotherAwsAccountCommand")
|
|
2088
|
-
.
|
|
2089
|
-
.ser(se_TransferDomainToAnotherAwsAccountCommand)
|
|
2090
|
-
.de(de_TransferDomainToAnotherAwsAccountCommand)
|
|
1875
|
+
.sc(TransferDomainToAnotherAwsAccount)
|
|
2091
1876
|
.build() {
|
|
2092
1877
|
}
|
|
2093
1878
|
|
|
@@ -2095,16 +1880,11 @@ class UpdateDomainContactCommand extends smithyClient.Command
|
|
|
2095
1880
|
.classBuilder()
|
|
2096
1881
|
.ep(commonParams)
|
|
2097
1882
|
.m(function (Command, cs, config, o) {
|
|
2098
|
-
return [
|
|
2099
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2100
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2101
|
-
];
|
|
1883
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2102
1884
|
})
|
|
2103
1885
|
.s("Route53Domains_v20140515", "UpdateDomainContact", {})
|
|
2104
1886
|
.n("Route53DomainsClient", "UpdateDomainContactCommand")
|
|
2105
|
-
.
|
|
2106
|
-
.ser(se_UpdateDomainContactCommand)
|
|
2107
|
-
.de(de_UpdateDomainContactCommand)
|
|
1887
|
+
.sc(UpdateDomainContact)
|
|
2108
1888
|
.build() {
|
|
2109
1889
|
}
|
|
2110
1890
|
|
|
@@ -2112,16 +1892,11 @@ class UpdateDomainContactPrivacyCommand extends smithyClient.Command
|
|
|
2112
1892
|
.classBuilder()
|
|
2113
1893
|
.ep(commonParams)
|
|
2114
1894
|
.m(function (Command, cs, config, o) {
|
|
2115
|
-
return [
|
|
2116
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2117
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2118
|
-
];
|
|
1895
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2119
1896
|
})
|
|
2120
1897
|
.s("Route53Domains_v20140515", "UpdateDomainContactPrivacy", {})
|
|
2121
1898
|
.n("Route53DomainsClient", "UpdateDomainContactPrivacyCommand")
|
|
2122
|
-
.
|
|
2123
|
-
.ser(se_UpdateDomainContactPrivacyCommand)
|
|
2124
|
-
.de(de_UpdateDomainContactPrivacyCommand)
|
|
1899
|
+
.sc(UpdateDomainContactPrivacy)
|
|
2125
1900
|
.build() {
|
|
2126
1901
|
}
|
|
2127
1902
|
|
|
@@ -2129,16 +1904,11 @@ class UpdateDomainNameserversCommand extends smithyClient.Command
|
|
|
2129
1904
|
.classBuilder()
|
|
2130
1905
|
.ep(commonParams)
|
|
2131
1906
|
.m(function (Command, cs, config, o) {
|
|
2132
|
-
return [
|
|
2133
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2134
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2135
|
-
];
|
|
1907
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2136
1908
|
})
|
|
2137
1909
|
.s("Route53Domains_v20140515", "UpdateDomainNameservers", {})
|
|
2138
1910
|
.n("Route53DomainsClient", "UpdateDomainNameserversCommand")
|
|
2139
|
-
.
|
|
2140
|
-
.ser(se_UpdateDomainNameserversCommand)
|
|
2141
|
-
.de(de_UpdateDomainNameserversCommand)
|
|
1911
|
+
.sc(UpdateDomainNameservers)
|
|
2142
1912
|
.build() {
|
|
2143
1913
|
}
|
|
2144
1914
|
|
|
@@ -2146,16 +1916,11 @@ class UpdateTagsForDomainCommand extends smithyClient.Command
|
|
|
2146
1916
|
.classBuilder()
|
|
2147
1917
|
.ep(commonParams)
|
|
2148
1918
|
.m(function (Command, cs, config, o) {
|
|
2149
|
-
return [
|
|
2150
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2151
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2152
|
-
];
|
|
1919
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2153
1920
|
})
|
|
2154
1921
|
.s("Route53Domains_v20140515", "UpdateTagsForDomain", {})
|
|
2155
1922
|
.n("Route53DomainsClient", "UpdateTagsForDomainCommand")
|
|
2156
|
-
.
|
|
2157
|
-
.ser(se_UpdateTagsForDomainCommand)
|
|
2158
|
-
.de(de_UpdateTagsForDomainCommand)
|
|
1923
|
+
.sc(UpdateTagsForDomain)
|
|
2159
1924
|
.build() {
|
|
2160
1925
|
}
|
|
2161
1926
|
|
|
@@ -2163,16 +1928,11 @@ class ViewBillingCommand extends smithyClient.Command
|
|
|
2163
1928
|
.classBuilder()
|
|
2164
1929
|
.ep(commonParams)
|
|
2165
1930
|
.m(function (Command, cs, config, o) {
|
|
2166
|
-
return [
|
|
2167
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2168
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2169
|
-
];
|
|
1931
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2170
1932
|
})
|
|
2171
1933
|
.s("Route53Domains_v20140515", "ViewBilling", {})
|
|
2172
1934
|
.n("Route53DomainsClient", "ViewBillingCommand")
|
|
2173
|
-
.
|
|
2174
|
-
.ser(se_ViewBillingCommand)
|
|
2175
|
-
.de(de_ViewBillingCommand)
|
|
1935
|
+
.sc(ViewBilling)
|
|
2176
1936
|
.build() {
|
|
2177
1937
|
}
|
|
2178
1938
|
|
|
@@ -2233,72 +1993,60 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2233
1993
|
get: function () { return smithyClient.Client; }
|
|
2234
1994
|
});
|
|
2235
1995
|
exports.AcceptDomainTransferFromAnotherAwsAccountCommand = AcceptDomainTransferFromAnotherAwsAccountCommand;
|
|
2236
|
-
exports.AcceptDomainTransferFromAnotherAwsAccountRequestFilterSensitiveLog = AcceptDomainTransferFromAnotherAwsAccountRequestFilterSensitiveLog;
|
|
2237
1996
|
exports.AssociateDelegationSignerToDomainCommand = AssociateDelegationSignerToDomainCommand;
|
|
2238
1997
|
exports.CancelDomainTransferToAnotherAwsAccountCommand = CancelDomainTransferToAnotherAwsAccountCommand;
|
|
2239
1998
|
exports.CheckDomainAvailabilityCommand = CheckDomainAvailabilityCommand;
|
|
2240
1999
|
exports.CheckDomainTransferabilityCommand = CheckDomainTransferabilityCommand;
|
|
2241
|
-
exports.CheckDomainTransferabilityRequestFilterSensitiveLog = CheckDomainTransferabilityRequestFilterSensitiveLog;
|
|
2242
|
-
exports.ContactDetailFilterSensitiveLog = ContactDetailFilterSensitiveLog;
|
|
2243
2000
|
exports.ContactType = ContactType;
|
|
2244
|
-
exports.CountryCode = CountryCode;
|
|
2001
|
+
exports.CountryCode = CountryCode$1;
|
|
2245
2002
|
exports.DeleteDomainCommand = DeleteDomainCommand;
|
|
2246
2003
|
exports.DeleteTagsForDomainCommand = DeleteTagsForDomainCommand;
|
|
2247
2004
|
exports.DisableDomainAutoRenewCommand = DisableDomainAutoRenewCommand;
|
|
2248
2005
|
exports.DisableDomainTransferLockCommand = DisableDomainTransferLockCommand;
|
|
2249
2006
|
exports.DisassociateDelegationSignerFromDomainCommand = DisassociateDelegationSignerFromDomainCommand;
|
|
2250
|
-
exports.DnssecLimitExceeded = DnssecLimitExceeded;
|
|
2007
|
+
exports.DnssecLimitExceeded = DnssecLimitExceeded$1;
|
|
2251
2008
|
exports.DomainAvailability = DomainAvailability;
|
|
2252
|
-
exports.DomainLimitExceeded = DomainLimitExceeded;
|
|
2253
|
-
exports.DuplicateRequest = DuplicateRequest;
|
|
2009
|
+
exports.DomainLimitExceeded = DomainLimitExceeded$1;
|
|
2010
|
+
exports.DuplicateRequest = DuplicateRequest$1;
|
|
2254
2011
|
exports.EnableDomainAutoRenewCommand = EnableDomainAutoRenewCommand;
|
|
2255
2012
|
exports.EnableDomainTransferLockCommand = EnableDomainTransferLockCommand;
|
|
2256
|
-
exports.ExtraParamFilterSensitiveLog = ExtraParamFilterSensitiveLog;
|
|
2257
2013
|
exports.ExtraParamName = ExtraParamName;
|
|
2258
2014
|
exports.GetContactReachabilityStatusCommand = GetContactReachabilityStatusCommand;
|
|
2259
2015
|
exports.GetDomainDetailCommand = GetDomainDetailCommand;
|
|
2260
|
-
exports.GetDomainDetailResponseFilterSensitiveLog = GetDomainDetailResponseFilterSensitiveLog;
|
|
2261
2016
|
exports.GetDomainSuggestionsCommand = GetDomainSuggestionsCommand;
|
|
2262
2017
|
exports.GetOperationDetailCommand = GetOperationDetailCommand;
|
|
2263
|
-
exports.InvalidInput = InvalidInput;
|
|
2018
|
+
exports.InvalidInput = InvalidInput$1;
|
|
2264
2019
|
exports.ListDomainsAttributeName = ListDomainsAttributeName;
|
|
2265
2020
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
2266
2021
|
exports.ListOperationsCommand = ListOperationsCommand;
|
|
2267
2022
|
exports.ListOperationsSortAttributeName = ListOperationsSortAttributeName;
|
|
2268
2023
|
exports.ListPricesCommand = ListPricesCommand;
|
|
2269
2024
|
exports.ListTagsForDomainCommand = ListTagsForDomainCommand;
|
|
2270
|
-
exports.OperationLimitExceeded = OperationLimitExceeded;
|
|
2025
|
+
exports.OperationLimitExceeded = OperationLimitExceeded$1;
|
|
2271
2026
|
exports.OperationStatus = OperationStatus;
|
|
2272
2027
|
exports.OperationType = OperationType;
|
|
2273
2028
|
exports.Operator = Operator;
|
|
2274
2029
|
exports.PushDomainCommand = PushDomainCommand;
|
|
2275
2030
|
exports.ReachabilityStatus = ReachabilityStatus;
|
|
2276
2031
|
exports.RegisterDomainCommand = RegisterDomainCommand;
|
|
2277
|
-
exports.RegisterDomainRequestFilterSensitiveLog = RegisterDomainRequestFilterSensitiveLog;
|
|
2278
2032
|
exports.RejectDomainTransferFromAnotherAwsAccountCommand = RejectDomainTransferFromAnotherAwsAccountCommand;
|
|
2279
2033
|
exports.RenewDomainCommand = RenewDomainCommand;
|
|
2280
2034
|
exports.ResendContactReachabilityEmailCommand = ResendContactReachabilityEmailCommand;
|
|
2281
|
-
exports.ResendContactReachabilityEmailResponseFilterSensitiveLog = ResendContactReachabilityEmailResponseFilterSensitiveLog;
|
|
2282
2035
|
exports.ResendOperationAuthorizationCommand = ResendOperationAuthorizationCommand;
|
|
2283
2036
|
exports.RetrieveDomainAuthCodeCommand = RetrieveDomainAuthCodeCommand;
|
|
2284
|
-
exports.RetrieveDomainAuthCodeResponseFilterSensitiveLog = RetrieveDomainAuthCodeResponseFilterSensitiveLog;
|
|
2285
2037
|
exports.Route53Domains = Route53Domains;
|
|
2286
2038
|
exports.Route53DomainsClient = Route53DomainsClient;
|
|
2287
|
-
exports.Route53DomainsServiceException = Route53DomainsServiceException;
|
|
2039
|
+
exports.Route53DomainsServiceException = Route53DomainsServiceException$1;
|
|
2288
2040
|
exports.SortOrder = SortOrder;
|
|
2289
2041
|
exports.StatusFlag = StatusFlag;
|
|
2290
|
-
exports.TLDRulesViolation = TLDRulesViolation;
|
|
2042
|
+
exports.TLDRulesViolation = TLDRulesViolation$1;
|
|
2291
2043
|
exports.TransferDomainCommand = TransferDomainCommand;
|
|
2292
|
-
exports.TransferDomainRequestFilterSensitiveLog = TransferDomainRequestFilterSensitiveLog;
|
|
2293
2044
|
exports.TransferDomainToAnotherAwsAccountCommand = TransferDomainToAnotherAwsAccountCommand;
|
|
2294
|
-
exports.TransferDomainToAnotherAwsAccountResponseFilterSensitiveLog = TransferDomainToAnotherAwsAccountResponseFilterSensitiveLog;
|
|
2295
2045
|
exports.Transferable = Transferable;
|
|
2296
|
-
exports.UnsupportedTLD = UnsupportedTLD;
|
|
2046
|
+
exports.UnsupportedTLD = UnsupportedTLD$1;
|
|
2297
2047
|
exports.UpdateDomainContactCommand = UpdateDomainContactCommand;
|
|
2298
2048
|
exports.UpdateDomainContactPrivacyCommand = UpdateDomainContactPrivacyCommand;
|
|
2299
|
-
exports.UpdateDomainContactRequestFilterSensitiveLog = UpdateDomainContactRequestFilterSensitiveLog;
|
|
2300
2049
|
exports.UpdateDomainNameserversCommand = UpdateDomainNameserversCommand;
|
|
2301
|
-
exports.UpdateDomainNameserversRequestFilterSensitiveLog = UpdateDomainNameserversRequestFilterSensitiveLog;
|
|
2302
2050
|
exports.UpdateTagsForDomainCommand = UpdateTagsForDomainCommand;
|
|
2303
2051
|
exports.ViewBillingCommand = ViewBillingCommand;
|
|
2304
2052
|
exports.paginateListDomains = paginateListDomains;
|