@aws-sdk/client-route-53-domains 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Route53Domains.d.ts +155 -0
- package/dist-types/ts3.4/Route53DomainsClient.d.ts +103 -0
- package/dist-types/ts3.4/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelDomainTransferToAnotherAwsAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CheckDomainAvailabilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CheckDomainTransferabilityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTagsForDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableDomainAutoRenewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableDomainTransferLockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableDomainAutoRenewCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableDomainTransferLockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetContactReachabilityStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDomainDetailCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDomainSuggestionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetOperationDetailCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPricesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RejectDomainTransferFromAnotherAwsAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RenewDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResendContactReachabilityEmailCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RetrieveDomainAuthCodeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TransferDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TransferDomainToAnotherAwsAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainContactPrivacyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainNameserversCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateTagsForDomainCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ViewBillingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +30 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +988 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPricesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ViewBillingPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +92 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-route-53-domains
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-route-53-domains
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput } from "./commands/AcceptDomainTransferFromAnotherAwsAccountCommand";
|
|
3
|
+
import { CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput } from "./commands/CancelDomainTransferToAnotherAwsAccountCommand";
|
|
4
|
+
import { CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput } from "./commands/CheckDomainAvailabilityCommand";
|
|
5
|
+
import { CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput } from "./commands/CheckDomainTransferabilityCommand";
|
|
6
|
+
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
7
|
+
import { DeleteTagsForDomainCommandInput, DeleteTagsForDomainCommandOutput } from "./commands/DeleteTagsForDomainCommand";
|
|
8
|
+
import { DisableDomainAutoRenewCommandInput, DisableDomainAutoRenewCommandOutput } from "./commands/DisableDomainAutoRenewCommand";
|
|
9
|
+
import { DisableDomainTransferLockCommandInput, DisableDomainTransferLockCommandOutput } from "./commands/DisableDomainTransferLockCommand";
|
|
10
|
+
import { EnableDomainAutoRenewCommandInput, EnableDomainAutoRenewCommandOutput } from "./commands/EnableDomainAutoRenewCommand";
|
|
11
|
+
import { EnableDomainTransferLockCommandInput, EnableDomainTransferLockCommandOutput } from "./commands/EnableDomainTransferLockCommand";
|
|
12
|
+
import { GetContactReachabilityStatusCommandInput, GetContactReachabilityStatusCommandOutput } from "./commands/GetContactReachabilityStatusCommand";
|
|
13
|
+
import { GetDomainDetailCommandInput, GetDomainDetailCommandOutput } from "./commands/GetDomainDetailCommand";
|
|
14
|
+
import { GetDomainSuggestionsCommandInput, GetDomainSuggestionsCommandOutput } from "./commands/GetDomainSuggestionsCommand";
|
|
15
|
+
import { GetOperationDetailCommandInput, GetOperationDetailCommandOutput } from "./commands/GetOperationDetailCommand";
|
|
16
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
17
|
+
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
18
|
+
import { ListPricesCommandInput, ListPricesCommandOutput } from "./commands/ListPricesCommand";
|
|
19
|
+
import { ListTagsForDomainCommandInput, ListTagsForDomainCommandOutput } from "./commands/ListTagsForDomainCommand";
|
|
20
|
+
import { RegisterDomainCommandInput, RegisterDomainCommandOutput } from "./commands/RegisterDomainCommand";
|
|
21
|
+
import { RejectDomainTransferFromAnotherAwsAccountCommandInput, RejectDomainTransferFromAnotherAwsAccountCommandOutput } from "./commands/RejectDomainTransferFromAnotherAwsAccountCommand";
|
|
22
|
+
import { RenewDomainCommandInput, RenewDomainCommandOutput } from "./commands/RenewDomainCommand";
|
|
23
|
+
import { ResendContactReachabilityEmailCommandInput, ResendContactReachabilityEmailCommandOutput } from "./commands/ResendContactReachabilityEmailCommand";
|
|
24
|
+
import { RetrieveDomainAuthCodeCommandInput, RetrieveDomainAuthCodeCommandOutput } from "./commands/RetrieveDomainAuthCodeCommand";
|
|
25
|
+
import { TransferDomainCommandInput, TransferDomainCommandOutput } from "./commands/TransferDomainCommand";
|
|
26
|
+
import { TransferDomainToAnotherAwsAccountCommandInput, TransferDomainToAnotherAwsAccountCommandOutput } from "./commands/TransferDomainToAnotherAwsAccountCommand";
|
|
27
|
+
import { UpdateDomainContactCommandInput, UpdateDomainContactCommandOutput } from "./commands/UpdateDomainContactCommand";
|
|
28
|
+
import { UpdateDomainContactPrivacyCommandInput, UpdateDomainContactPrivacyCommandOutput } from "./commands/UpdateDomainContactPrivacyCommand";
|
|
29
|
+
import { UpdateDomainNameserversCommandInput, UpdateDomainNameserversCommandOutput } from "./commands/UpdateDomainNameserversCommand";
|
|
30
|
+
import { UpdateTagsForDomainCommandInput, UpdateTagsForDomainCommandOutput } from "./commands/UpdateTagsForDomainCommand";
|
|
31
|
+
import { ViewBillingCommandInput, ViewBillingCommandOutput } from "./commands/ViewBillingCommand";
|
|
32
|
+
import { Route53DomainsClient } from "./Route53DomainsClient";
|
|
33
|
+
|
|
34
|
+
export declare class Route53Domains extends Route53DomainsClient {
|
|
35
|
+
|
|
36
|
+
acceptDomainTransferFromAnotherAwsAccount(args: AcceptDomainTransferFromAnotherAwsAccountCommandInput, options?: __HttpHandlerOptions): Promise<AcceptDomainTransferFromAnotherAwsAccountCommandOutput>;
|
|
37
|
+
acceptDomainTransferFromAnotherAwsAccount(args: AcceptDomainTransferFromAnotherAwsAccountCommandInput, cb: (err: any, data?: AcceptDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
|
|
38
|
+
acceptDomainTransferFromAnotherAwsAccount(args: AcceptDomainTransferFromAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
|
|
39
|
+
|
|
40
|
+
cancelDomainTransferToAnotherAwsAccount(args: CancelDomainTransferToAnotherAwsAccountCommandInput, options?: __HttpHandlerOptions): Promise<CancelDomainTransferToAnotherAwsAccountCommandOutput>;
|
|
41
|
+
cancelDomainTransferToAnotherAwsAccount(args: CancelDomainTransferToAnotherAwsAccountCommandInput, cb: (err: any, data?: CancelDomainTransferToAnotherAwsAccountCommandOutput) => void): void;
|
|
42
|
+
cancelDomainTransferToAnotherAwsAccount(args: CancelDomainTransferToAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDomainTransferToAnotherAwsAccountCommandOutput) => void): void;
|
|
43
|
+
|
|
44
|
+
checkDomainAvailability(args: CheckDomainAvailabilityCommandInput, options?: __HttpHandlerOptions): Promise<CheckDomainAvailabilityCommandOutput>;
|
|
45
|
+
checkDomainAvailability(args: CheckDomainAvailabilityCommandInput, cb: (err: any, data?: CheckDomainAvailabilityCommandOutput) => void): void;
|
|
46
|
+
checkDomainAvailability(args: CheckDomainAvailabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckDomainAvailabilityCommandOutput) => void): void;
|
|
47
|
+
|
|
48
|
+
checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, options?: __HttpHandlerOptions): Promise<CheckDomainTransferabilityCommandOutput>;
|
|
49
|
+
checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, cb: (err: any, data?: CheckDomainTransferabilityCommandOutput) => void): void;
|
|
50
|
+
checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckDomainTransferabilityCommandOutput) => void): void;
|
|
51
|
+
|
|
52
|
+
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
53
|
+
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
54
|
+
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
55
|
+
|
|
56
|
+
deleteTagsForDomain(args: DeleteTagsForDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsForDomainCommandOutput>;
|
|
57
|
+
deleteTagsForDomain(args: DeleteTagsForDomainCommandInput, cb: (err: any, data?: DeleteTagsForDomainCommandOutput) => void): void;
|
|
58
|
+
deleteTagsForDomain(args: DeleteTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsForDomainCommandOutput) => void): void;
|
|
59
|
+
|
|
60
|
+
disableDomainAutoRenew(args: DisableDomainAutoRenewCommandInput, options?: __HttpHandlerOptions): Promise<DisableDomainAutoRenewCommandOutput>;
|
|
61
|
+
disableDomainAutoRenew(args: DisableDomainAutoRenewCommandInput, cb: (err: any, data?: DisableDomainAutoRenewCommandOutput) => void): void;
|
|
62
|
+
disableDomainAutoRenew(args: DisableDomainAutoRenewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDomainAutoRenewCommandOutput) => void): void;
|
|
63
|
+
|
|
64
|
+
disableDomainTransferLock(args: DisableDomainTransferLockCommandInput, options?: __HttpHandlerOptions): Promise<DisableDomainTransferLockCommandOutput>;
|
|
65
|
+
disableDomainTransferLock(args: DisableDomainTransferLockCommandInput, cb: (err: any, data?: DisableDomainTransferLockCommandOutput) => void): void;
|
|
66
|
+
disableDomainTransferLock(args: DisableDomainTransferLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDomainTransferLockCommandOutput) => void): void;
|
|
67
|
+
|
|
68
|
+
enableDomainAutoRenew(args: EnableDomainAutoRenewCommandInput, options?: __HttpHandlerOptions): Promise<EnableDomainAutoRenewCommandOutput>;
|
|
69
|
+
enableDomainAutoRenew(args: EnableDomainAutoRenewCommandInput, cb: (err: any, data?: EnableDomainAutoRenewCommandOutput) => void): void;
|
|
70
|
+
enableDomainAutoRenew(args: EnableDomainAutoRenewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDomainAutoRenewCommandOutput) => void): void;
|
|
71
|
+
|
|
72
|
+
enableDomainTransferLock(args: EnableDomainTransferLockCommandInput, options?: __HttpHandlerOptions): Promise<EnableDomainTransferLockCommandOutput>;
|
|
73
|
+
enableDomainTransferLock(args: EnableDomainTransferLockCommandInput, cb: (err: any, data?: EnableDomainTransferLockCommandOutput) => void): void;
|
|
74
|
+
enableDomainTransferLock(args: EnableDomainTransferLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDomainTransferLockCommandOutput) => void): void;
|
|
75
|
+
|
|
76
|
+
getContactReachabilityStatus(args: GetContactReachabilityStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetContactReachabilityStatusCommandOutput>;
|
|
77
|
+
getContactReachabilityStatus(args: GetContactReachabilityStatusCommandInput, cb: (err: any, data?: GetContactReachabilityStatusCommandOutput) => void): void;
|
|
78
|
+
getContactReachabilityStatus(args: GetContactReachabilityStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactReachabilityStatusCommandOutput) => void): void;
|
|
79
|
+
|
|
80
|
+
getDomainDetail(args: GetDomainDetailCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainDetailCommandOutput>;
|
|
81
|
+
getDomainDetail(args: GetDomainDetailCommandInput, cb: (err: any, data?: GetDomainDetailCommandOutput) => void): void;
|
|
82
|
+
getDomainDetail(args: GetDomainDetailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainDetailCommandOutput) => void): void;
|
|
83
|
+
|
|
84
|
+
getDomainSuggestions(args: GetDomainSuggestionsCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainSuggestionsCommandOutput>;
|
|
85
|
+
getDomainSuggestions(args: GetDomainSuggestionsCommandInput, cb: (err: any, data?: GetDomainSuggestionsCommandOutput) => void): void;
|
|
86
|
+
getDomainSuggestions(args: GetDomainSuggestionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainSuggestionsCommandOutput) => void): void;
|
|
87
|
+
|
|
88
|
+
getOperationDetail(args: GetOperationDetailCommandInput, options?: __HttpHandlerOptions): Promise<GetOperationDetailCommandOutput>;
|
|
89
|
+
getOperationDetail(args: GetOperationDetailCommandInput, cb: (err: any, data?: GetOperationDetailCommandOutput) => void): void;
|
|
90
|
+
getOperationDetail(args: GetOperationDetailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOperationDetailCommandOutput) => void): void;
|
|
91
|
+
|
|
92
|
+
listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
|
|
93
|
+
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
94
|
+
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
95
|
+
|
|
96
|
+
listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
|
|
97
|
+
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
98
|
+
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
99
|
+
|
|
100
|
+
listPrices(args: ListPricesCommandInput, options?: __HttpHandlerOptions): Promise<ListPricesCommandOutput>;
|
|
101
|
+
listPrices(args: ListPricesCommandInput, cb: (err: any, data?: ListPricesCommandOutput) => void): void;
|
|
102
|
+
listPrices(args: ListPricesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricesCommandOutput) => void): void;
|
|
103
|
+
|
|
104
|
+
listTagsForDomain(args: ListTagsForDomainCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForDomainCommandOutput>;
|
|
105
|
+
listTagsForDomain(args: ListTagsForDomainCommandInput, cb: (err: any, data?: ListTagsForDomainCommandOutput) => void): void;
|
|
106
|
+
listTagsForDomain(args: ListTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForDomainCommandOutput) => void): void;
|
|
107
|
+
|
|
108
|
+
registerDomain(args: RegisterDomainCommandInput, options?: __HttpHandlerOptions): Promise<RegisterDomainCommandOutput>;
|
|
109
|
+
registerDomain(args: RegisterDomainCommandInput, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
|
|
110
|
+
registerDomain(args: RegisterDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
|
|
111
|
+
|
|
112
|
+
rejectDomainTransferFromAnotherAwsAccount(args: RejectDomainTransferFromAnotherAwsAccountCommandInput, options?: __HttpHandlerOptions): Promise<RejectDomainTransferFromAnotherAwsAccountCommandOutput>;
|
|
113
|
+
rejectDomainTransferFromAnotherAwsAccount(args: RejectDomainTransferFromAnotherAwsAccountCommandInput, cb: (err: any, data?: RejectDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
|
|
114
|
+
rejectDomainTransferFromAnotherAwsAccount(args: RejectDomainTransferFromAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
|
|
115
|
+
|
|
116
|
+
renewDomain(args: RenewDomainCommandInput, options?: __HttpHandlerOptions): Promise<RenewDomainCommandOutput>;
|
|
117
|
+
renewDomain(args: RenewDomainCommandInput, cb: (err: any, data?: RenewDomainCommandOutput) => void): void;
|
|
118
|
+
renewDomain(args: RenewDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewDomainCommandOutput) => void): void;
|
|
119
|
+
|
|
120
|
+
resendContactReachabilityEmail(args: ResendContactReachabilityEmailCommandInput, options?: __HttpHandlerOptions): Promise<ResendContactReachabilityEmailCommandOutput>;
|
|
121
|
+
resendContactReachabilityEmail(args: ResendContactReachabilityEmailCommandInput, cb: (err: any, data?: ResendContactReachabilityEmailCommandOutput) => void): void;
|
|
122
|
+
resendContactReachabilityEmail(args: ResendContactReachabilityEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendContactReachabilityEmailCommandOutput) => void): void;
|
|
123
|
+
|
|
124
|
+
retrieveDomainAuthCode(args: RetrieveDomainAuthCodeCommandInput, options?: __HttpHandlerOptions): Promise<RetrieveDomainAuthCodeCommandOutput>;
|
|
125
|
+
retrieveDomainAuthCode(args: RetrieveDomainAuthCodeCommandInput, cb: (err: any, data?: RetrieveDomainAuthCodeCommandOutput) => void): void;
|
|
126
|
+
retrieveDomainAuthCode(args: RetrieveDomainAuthCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetrieveDomainAuthCodeCommandOutput) => void): void;
|
|
127
|
+
|
|
128
|
+
transferDomain(args: TransferDomainCommandInput, options?: __HttpHandlerOptions): Promise<TransferDomainCommandOutput>;
|
|
129
|
+
transferDomain(args: TransferDomainCommandInput, cb: (err: any, data?: TransferDomainCommandOutput) => void): void;
|
|
130
|
+
transferDomain(args: TransferDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferDomainCommandOutput) => void): void;
|
|
131
|
+
|
|
132
|
+
transferDomainToAnotherAwsAccount(args: TransferDomainToAnotherAwsAccountCommandInput, options?: __HttpHandlerOptions): Promise<TransferDomainToAnotherAwsAccountCommandOutput>;
|
|
133
|
+
transferDomainToAnotherAwsAccount(args: TransferDomainToAnotherAwsAccountCommandInput, cb: (err: any, data?: TransferDomainToAnotherAwsAccountCommandOutput) => void): void;
|
|
134
|
+
transferDomainToAnotherAwsAccount(args: TransferDomainToAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferDomainToAnotherAwsAccountCommandOutput) => void): void;
|
|
135
|
+
|
|
136
|
+
updateDomainContact(args: UpdateDomainContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainContactCommandOutput>;
|
|
137
|
+
updateDomainContact(args: UpdateDomainContactCommandInput, cb: (err: any, data?: UpdateDomainContactCommandOutput) => void): void;
|
|
138
|
+
updateDomainContact(args: UpdateDomainContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainContactCommandOutput) => void): void;
|
|
139
|
+
|
|
140
|
+
updateDomainContactPrivacy(args: UpdateDomainContactPrivacyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainContactPrivacyCommandOutput>;
|
|
141
|
+
updateDomainContactPrivacy(args: UpdateDomainContactPrivacyCommandInput, cb: (err: any, data?: UpdateDomainContactPrivacyCommandOutput) => void): void;
|
|
142
|
+
updateDomainContactPrivacy(args: UpdateDomainContactPrivacyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainContactPrivacyCommandOutput) => void): void;
|
|
143
|
+
|
|
144
|
+
updateDomainNameservers(args: UpdateDomainNameserversCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainNameserversCommandOutput>;
|
|
145
|
+
updateDomainNameservers(args: UpdateDomainNameserversCommandInput, cb: (err: any, data?: UpdateDomainNameserversCommandOutput) => void): void;
|
|
146
|
+
updateDomainNameservers(args: UpdateDomainNameserversCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainNameserversCommandOutput) => void): void;
|
|
147
|
+
|
|
148
|
+
updateTagsForDomain(args: UpdateTagsForDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTagsForDomainCommandOutput>;
|
|
149
|
+
updateTagsForDomain(args: UpdateTagsForDomainCommandInput, cb: (err: any, data?: UpdateTagsForDomainCommandOutput) => void): void;
|
|
150
|
+
updateTagsForDomain(args: UpdateTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTagsForDomainCommandOutput) => void): void;
|
|
151
|
+
|
|
152
|
+
viewBilling(args: ViewBillingCommandInput, options?: __HttpHandlerOptions): Promise<ViewBillingCommandOutput>;
|
|
153
|
+
viewBilling(args: ViewBillingCommandInput, cb: (err: any, data?: ViewBillingCommandOutput) => void): void;
|
|
154
|
+
viewBilling(args: ViewBillingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ViewBillingCommandOutput) => void): void;
|
|
155
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput } from "./commands/AcceptDomainTransferFromAnotherAwsAccountCommand";
|
|
10
|
+
import { CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput } from "./commands/CancelDomainTransferToAnotherAwsAccountCommand";
|
|
11
|
+
import { CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput } from "./commands/CheckDomainAvailabilityCommand";
|
|
12
|
+
import { CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput } from "./commands/CheckDomainTransferabilityCommand";
|
|
13
|
+
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
14
|
+
import { DeleteTagsForDomainCommandInput, DeleteTagsForDomainCommandOutput } from "./commands/DeleteTagsForDomainCommand";
|
|
15
|
+
import { DisableDomainAutoRenewCommandInput, DisableDomainAutoRenewCommandOutput } from "./commands/DisableDomainAutoRenewCommand";
|
|
16
|
+
import { DisableDomainTransferLockCommandInput, DisableDomainTransferLockCommandOutput } from "./commands/DisableDomainTransferLockCommand";
|
|
17
|
+
import { EnableDomainAutoRenewCommandInput, EnableDomainAutoRenewCommandOutput } from "./commands/EnableDomainAutoRenewCommand";
|
|
18
|
+
import { EnableDomainTransferLockCommandInput, EnableDomainTransferLockCommandOutput } from "./commands/EnableDomainTransferLockCommand";
|
|
19
|
+
import { GetContactReachabilityStatusCommandInput, GetContactReachabilityStatusCommandOutput } from "./commands/GetContactReachabilityStatusCommand";
|
|
20
|
+
import { GetDomainDetailCommandInput, GetDomainDetailCommandOutput } from "./commands/GetDomainDetailCommand";
|
|
21
|
+
import { GetDomainSuggestionsCommandInput, GetDomainSuggestionsCommandOutput } from "./commands/GetDomainSuggestionsCommand";
|
|
22
|
+
import { GetOperationDetailCommandInput, GetOperationDetailCommandOutput } from "./commands/GetOperationDetailCommand";
|
|
23
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
24
|
+
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
25
|
+
import { ListPricesCommandInput, ListPricesCommandOutput } from "./commands/ListPricesCommand";
|
|
26
|
+
import { ListTagsForDomainCommandInput, ListTagsForDomainCommandOutput } from "./commands/ListTagsForDomainCommand";
|
|
27
|
+
import { RegisterDomainCommandInput, RegisterDomainCommandOutput } from "./commands/RegisterDomainCommand";
|
|
28
|
+
import { RejectDomainTransferFromAnotherAwsAccountCommandInput, RejectDomainTransferFromAnotherAwsAccountCommandOutput } from "./commands/RejectDomainTransferFromAnotherAwsAccountCommand";
|
|
29
|
+
import { RenewDomainCommandInput, RenewDomainCommandOutput } from "./commands/RenewDomainCommand";
|
|
30
|
+
import { ResendContactReachabilityEmailCommandInput, ResendContactReachabilityEmailCommandOutput } from "./commands/ResendContactReachabilityEmailCommand";
|
|
31
|
+
import { RetrieveDomainAuthCodeCommandInput, RetrieveDomainAuthCodeCommandOutput } from "./commands/RetrieveDomainAuthCodeCommand";
|
|
32
|
+
import { TransferDomainCommandInput, TransferDomainCommandOutput } from "./commands/TransferDomainCommand";
|
|
33
|
+
import { TransferDomainToAnotherAwsAccountCommandInput, TransferDomainToAnotherAwsAccountCommandOutput } from "./commands/TransferDomainToAnotherAwsAccountCommand";
|
|
34
|
+
import { UpdateDomainContactCommandInput, UpdateDomainContactCommandOutput } from "./commands/UpdateDomainContactCommand";
|
|
35
|
+
import { UpdateDomainContactPrivacyCommandInput, UpdateDomainContactPrivacyCommandOutput } from "./commands/UpdateDomainContactPrivacyCommand";
|
|
36
|
+
import { UpdateDomainNameserversCommandInput, UpdateDomainNameserversCommandOutput } from "./commands/UpdateDomainNameserversCommand";
|
|
37
|
+
import { UpdateTagsForDomainCommandInput, UpdateTagsForDomainCommandOutput } from "./commands/UpdateTagsForDomainCommand";
|
|
38
|
+
import { ViewBillingCommandInput, ViewBillingCommandOutput } from "./commands/ViewBillingCommand";
|
|
39
|
+
export declare type ServiceInputTypes = AcceptDomainTransferFromAnotherAwsAccountCommandInput | CancelDomainTransferToAnotherAwsAccountCommandInput | CheckDomainAvailabilityCommandInput | CheckDomainTransferabilityCommandInput | DeleteDomainCommandInput | DeleteTagsForDomainCommandInput | DisableDomainAutoRenewCommandInput | DisableDomainTransferLockCommandInput | EnableDomainAutoRenewCommandInput | EnableDomainTransferLockCommandInput | GetContactReachabilityStatusCommandInput | GetDomainDetailCommandInput | GetDomainSuggestionsCommandInput | GetOperationDetailCommandInput | ListDomainsCommandInput | ListOperationsCommandInput | ListPricesCommandInput | ListTagsForDomainCommandInput | RegisterDomainCommandInput | RejectDomainTransferFromAnotherAwsAccountCommandInput | RenewDomainCommandInput | ResendContactReachabilityEmailCommandInput | RetrieveDomainAuthCodeCommandInput | TransferDomainCommandInput | TransferDomainToAnotherAwsAccountCommandInput | UpdateDomainContactCommandInput | UpdateDomainContactPrivacyCommandInput | UpdateDomainNameserversCommandInput | UpdateTagsForDomainCommandInput | ViewBillingCommandInput;
|
|
40
|
+
export declare type ServiceOutputTypes = AcceptDomainTransferFromAnotherAwsAccountCommandOutput | CancelDomainTransferToAnotherAwsAccountCommandOutput | CheckDomainAvailabilityCommandOutput | CheckDomainTransferabilityCommandOutput | DeleteDomainCommandOutput | DeleteTagsForDomainCommandOutput | DisableDomainAutoRenewCommandOutput | DisableDomainTransferLockCommandOutput | EnableDomainAutoRenewCommandOutput | EnableDomainTransferLockCommandOutput | GetContactReachabilityStatusCommandOutput | GetDomainDetailCommandOutput | GetDomainSuggestionsCommandOutput | GetOperationDetailCommandOutput | ListDomainsCommandOutput | ListOperationsCommandOutput | ListPricesCommandOutput | ListTagsForDomainCommandOutput | RegisterDomainCommandOutput | RejectDomainTransferFromAnotherAwsAccountCommandOutput | RenewDomainCommandOutput | ResendContactReachabilityEmailCommandOutput | RetrieveDomainAuthCodeCommandOutput | TransferDomainCommandOutput | TransferDomainToAnotherAwsAccountCommandOutput | UpdateDomainContactCommandOutput | UpdateDomainContactPrivacyCommandOutput | UpdateDomainNameserversCommandOutput | UpdateTagsForDomainCommandOutput | ViewBillingCommandOutput;
|
|
41
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
42
|
+
|
|
43
|
+
requestHandler?: __HttpHandler;
|
|
44
|
+
|
|
45
|
+
sha256?: __HashConstructor;
|
|
46
|
+
|
|
47
|
+
urlParser?: __UrlParser;
|
|
48
|
+
|
|
49
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
50
|
+
|
|
51
|
+
streamCollector?: __StreamCollector;
|
|
52
|
+
|
|
53
|
+
base64Decoder?: __Decoder;
|
|
54
|
+
|
|
55
|
+
base64Encoder?: __Encoder;
|
|
56
|
+
|
|
57
|
+
utf8Decoder?: __Decoder;
|
|
58
|
+
|
|
59
|
+
utf8Encoder?: __Encoder;
|
|
60
|
+
|
|
61
|
+
runtime?: string;
|
|
62
|
+
|
|
63
|
+
disableHostPrefix?: boolean;
|
|
64
|
+
|
|
65
|
+
maxAttempts?: number | __Provider<number>;
|
|
66
|
+
|
|
67
|
+
retryMode?: string | __Provider<string>;
|
|
68
|
+
|
|
69
|
+
logger?: __Logger;
|
|
70
|
+
|
|
71
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
72
|
+
|
|
73
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
74
|
+
|
|
75
|
+
serviceId?: string;
|
|
76
|
+
|
|
77
|
+
region?: string | __Provider<string>;
|
|
78
|
+
|
|
79
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
80
|
+
|
|
81
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
82
|
+
|
|
83
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
84
|
+
|
|
85
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
86
|
+
}
|
|
87
|
+
declare type Route53DomainsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
88
|
+
|
|
89
|
+
export interface Route53DomainsClientConfig extends Route53DomainsClientConfigType {
|
|
90
|
+
}
|
|
91
|
+
declare type Route53DomainsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
92
|
+
|
|
93
|
+
export interface Route53DomainsClientResolvedConfig extends Route53DomainsClientResolvedConfigType {
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export declare class Route53DomainsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53DomainsClientResolvedConfig> {
|
|
97
|
+
|
|
98
|
+
readonly config: Route53DomainsClientResolvedConfig;
|
|
99
|
+
constructor(configuration: Route53DomainsClientConfig);
|
|
100
|
+
|
|
101
|
+
destroy(): void;
|
|
102
|
+
}
|
|
103
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AcceptDomainTransferFromAnotherAwsAccountRequest, AcceptDomainTransferFromAnotherAwsAccountResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface AcceptDomainTransferFromAnotherAwsAccountCommandInput extends AcceptDomainTransferFromAnotherAwsAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput extends AcceptDomainTransferFromAnotherAwsAccountResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AcceptDomainTransferFromAnotherAwsAccountCommand extends $Command<AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: AcceptDomainTransferFromAnotherAwsAccountCommandInput;
|
|
12
|
+
constructor(input: AcceptDomainTransferFromAnotherAwsAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CancelDomainTransferToAnotherAwsAccountRequest, CancelDomainTransferToAnotherAwsAccountResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface CancelDomainTransferToAnotherAwsAccountCommandInput extends CancelDomainTransferToAnotherAwsAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CancelDomainTransferToAnotherAwsAccountCommandOutput extends CancelDomainTransferToAnotherAwsAccountResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CancelDomainTransferToAnotherAwsAccountCommand extends $Command<CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: CancelDomainTransferToAnotherAwsAccountCommandInput;
|
|
12
|
+
constructor(input: CancelDomainTransferToAnotherAwsAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CheckDomainAvailabilityRequest, CheckDomainAvailabilityResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface CheckDomainAvailabilityCommandInput extends CheckDomainAvailabilityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailabilityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CheckDomainAvailabilityCommand extends $Command<CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: CheckDomainAvailabilityCommandInput;
|
|
12
|
+
constructor(input: CheckDomainAvailabilityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CheckDomainTransferabilityRequest, CheckDomainTransferabilityResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface CheckDomainTransferabilityCommandInput extends CheckDomainTransferabilityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTransferabilityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CheckDomainTransferabilityCommand extends $Command<CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: CheckDomainTransferabilityCommandInput;
|
|
12
|
+
constructor(input: CheckDomainTransferabilityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface DeleteDomainCommandInput extends DeleteDomainRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteDomainCommandInput;
|
|
12
|
+
constructor(input: DeleteDomainCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteTagsForDomainRequest, DeleteTagsForDomainResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface DeleteTagsForDomainCommandInput extends DeleteTagsForDomainRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteTagsForDomainCommandOutput extends DeleteTagsForDomainResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteTagsForDomainCommand extends $Command<DeleteTagsForDomainCommandInput, DeleteTagsForDomainCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteTagsForDomainCommandInput;
|
|
12
|
+
constructor(input: DeleteTagsForDomainCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTagsForDomainCommandInput, DeleteTagsForDomainCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DisableDomainAutoRenewRequest, DisableDomainAutoRenewResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface DisableDomainAutoRenewCommandInput extends DisableDomainAutoRenewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisableDomainAutoRenewCommandOutput extends DisableDomainAutoRenewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisableDomainAutoRenewCommand extends $Command<DisableDomainAutoRenewCommandInput, DisableDomainAutoRenewCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: DisableDomainAutoRenewCommandInput;
|
|
12
|
+
constructor(input: DisableDomainAutoRenewCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableDomainAutoRenewCommandInput, DisableDomainAutoRenewCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DisableDomainTransferLockRequest, DisableDomainTransferLockResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface DisableDomainTransferLockCommandInput extends DisableDomainTransferLockRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisableDomainTransferLockCommandOutput extends DisableDomainTransferLockResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisableDomainTransferLockCommand extends $Command<DisableDomainTransferLockCommandInput, DisableDomainTransferLockCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: DisableDomainTransferLockCommandInput;
|
|
12
|
+
constructor(input: DisableDomainTransferLockCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableDomainTransferLockCommandInput, DisableDomainTransferLockCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { EnableDomainAutoRenewRequest, EnableDomainAutoRenewResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface EnableDomainAutoRenewCommandInput extends EnableDomainAutoRenewRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface EnableDomainAutoRenewCommandOutput extends EnableDomainAutoRenewResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class EnableDomainAutoRenewCommand extends $Command<EnableDomainAutoRenewCommandInput, EnableDomainAutoRenewCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: EnableDomainAutoRenewCommandInput;
|
|
12
|
+
constructor(input: EnableDomainAutoRenewCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableDomainAutoRenewCommandInput, EnableDomainAutoRenewCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { EnableDomainTransferLockRequest, EnableDomainTransferLockResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface EnableDomainTransferLockCommandInput extends EnableDomainTransferLockRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface EnableDomainTransferLockCommandOutput extends EnableDomainTransferLockResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class EnableDomainTransferLockCommand extends $Command<EnableDomainTransferLockCommandInput, EnableDomainTransferLockCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: EnableDomainTransferLockCommandInput;
|
|
12
|
+
constructor(input: EnableDomainTransferLockCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableDomainTransferLockCommandInput, EnableDomainTransferLockCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetContactReachabilityStatusRequest, GetContactReachabilityStatusResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface GetContactReachabilityStatusCommandInput extends GetContactReachabilityStatusRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetContactReachabilityStatusCommandOutput extends GetContactReachabilityStatusResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetContactReachabilityStatusCommand extends $Command<GetContactReachabilityStatusCommandInput, GetContactReachabilityStatusCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetContactReachabilityStatusCommandInput;
|
|
12
|
+
constructor(input: GetContactReachabilityStatusCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactReachabilityStatusCommandInput, GetContactReachabilityStatusCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetDomainDetailRequest, GetDomainDetailResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface GetDomainDetailCommandInput extends GetDomainDetailRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDomainDetailCommandOutput extends GetDomainDetailResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetDomainDetailCommand extends $Command<GetDomainDetailCommandInput, GetDomainDetailCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetDomainDetailCommandInput;
|
|
12
|
+
constructor(input: GetDomainDetailCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDomainDetailCommandInput, GetDomainDetailCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetDomainSuggestionsRequest, GetDomainSuggestionsResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface GetDomainSuggestionsCommandInput extends GetDomainSuggestionsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetDomainSuggestionsCommandOutput extends GetDomainSuggestionsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetDomainSuggestionsCommand extends $Command<GetDomainSuggestionsCommandInput, GetDomainSuggestionsCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetDomainSuggestionsCommandInput;
|
|
12
|
+
constructor(input: GetDomainSuggestionsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDomainSuggestionsCommandInput, GetDomainSuggestionsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetOperationDetailRequest, GetOperationDetailResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface GetOperationDetailCommandInput extends GetOperationDetailRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetOperationDetailCommandOutput extends GetOperationDetailResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetOperationDetailCommand extends $Command<GetOperationDetailCommandInput, GetOperationDetailCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetOperationDetailCommandInput;
|
|
12
|
+
constructor(input: GetOperationDetailCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOperationDetailCommandInput, GetOperationDetailCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface ListDomainsCommandInput extends ListDomainsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListDomainsCommandInput;
|
|
12
|
+
constructor(input: ListDomainsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListOperationsRequest, ListOperationsResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface ListOperationsCommandInput extends ListOperationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListOperationsCommandOutput extends ListOperationsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListOperationsCommandInput;
|
|
12
|
+
constructor(input: ListOperationsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListPricesRequest, ListPricesResponse } from "../models/models_0";
|
|
4
|
+
import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
|
|
5
|
+
export interface ListPricesCommandInput extends ListPricesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPricesCommandOutput extends ListPricesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPricesCommand extends $Command<ListPricesCommandInput, ListPricesCommandOutput, Route53DomainsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPricesCommandInput;
|
|
12
|
+
constructor(input: ListPricesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPricesCommandInput, ListPricesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|