@aws-sdk/client-acm 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/ACM.d.ts +259 -80
- package/dist-types/ts3.4/ACMClient.d.ts +193 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +487 -570
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
- package/package.json +35 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-acm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-acm
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-acm
|
|
@@ -1,80 +1,259 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { ACMClient } from "./ACMClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ACMClient } from "./ACMClient";
|
|
3
|
+
import {
|
|
4
|
+
AddTagsToCertificateCommandInput,
|
|
5
|
+
AddTagsToCertificateCommandOutput,
|
|
6
|
+
} from "./commands/AddTagsToCertificateCommand";
|
|
7
|
+
import {
|
|
8
|
+
DeleteCertificateCommandInput,
|
|
9
|
+
DeleteCertificateCommandOutput,
|
|
10
|
+
} from "./commands/DeleteCertificateCommand";
|
|
11
|
+
import {
|
|
12
|
+
DescribeCertificateCommandInput,
|
|
13
|
+
DescribeCertificateCommandOutput,
|
|
14
|
+
} from "./commands/DescribeCertificateCommand";
|
|
15
|
+
import {
|
|
16
|
+
ExportCertificateCommandInput,
|
|
17
|
+
ExportCertificateCommandOutput,
|
|
18
|
+
} from "./commands/ExportCertificateCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetAccountConfigurationCommandInput,
|
|
21
|
+
GetAccountConfigurationCommandOutput,
|
|
22
|
+
} from "./commands/GetAccountConfigurationCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetCertificateCommandInput,
|
|
25
|
+
GetCertificateCommandOutput,
|
|
26
|
+
} from "./commands/GetCertificateCommand";
|
|
27
|
+
import {
|
|
28
|
+
ImportCertificateCommandInput,
|
|
29
|
+
ImportCertificateCommandOutput,
|
|
30
|
+
} from "./commands/ImportCertificateCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListCertificatesCommandInput,
|
|
33
|
+
ListCertificatesCommandOutput,
|
|
34
|
+
} from "./commands/ListCertificatesCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListTagsForCertificateCommandInput,
|
|
37
|
+
ListTagsForCertificateCommandOutput,
|
|
38
|
+
} from "./commands/ListTagsForCertificateCommand";
|
|
39
|
+
import {
|
|
40
|
+
PutAccountConfigurationCommandInput,
|
|
41
|
+
PutAccountConfigurationCommandOutput,
|
|
42
|
+
} from "./commands/PutAccountConfigurationCommand";
|
|
43
|
+
import {
|
|
44
|
+
RemoveTagsFromCertificateCommandInput,
|
|
45
|
+
RemoveTagsFromCertificateCommandOutput,
|
|
46
|
+
} from "./commands/RemoveTagsFromCertificateCommand";
|
|
47
|
+
import {
|
|
48
|
+
RenewCertificateCommandInput,
|
|
49
|
+
RenewCertificateCommandOutput,
|
|
50
|
+
} from "./commands/RenewCertificateCommand";
|
|
51
|
+
import {
|
|
52
|
+
RequestCertificateCommandInput,
|
|
53
|
+
RequestCertificateCommandOutput,
|
|
54
|
+
} from "./commands/RequestCertificateCommand";
|
|
55
|
+
import {
|
|
56
|
+
ResendValidationEmailCommandInput,
|
|
57
|
+
ResendValidationEmailCommandOutput,
|
|
58
|
+
} from "./commands/ResendValidationEmailCommand";
|
|
59
|
+
import {
|
|
60
|
+
UpdateCertificateOptionsCommandInput,
|
|
61
|
+
UpdateCertificateOptionsCommandOutput,
|
|
62
|
+
} from "./commands/UpdateCertificateOptionsCommand";
|
|
63
|
+
export declare class ACM extends ACMClient {
|
|
64
|
+
addTagsToCertificate(
|
|
65
|
+
args: AddTagsToCertificateCommandInput,
|
|
66
|
+
options?: __HttpHandlerOptions
|
|
67
|
+
): Promise<AddTagsToCertificateCommandOutput>;
|
|
68
|
+
addTagsToCertificate(
|
|
69
|
+
args: AddTagsToCertificateCommandInput,
|
|
70
|
+
cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
addTagsToCertificate(
|
|
73
|
+
args: AddTagsToCertificateCommandInput,
|
|
74
|
+
options: __HttpHandlerOptions,
|
|
75
|
+
cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
|
|
76
|
+
): void;
|
|
77
|
+
deleteCertificate(
|
|
78
|
+
args: DeleteCertificateCommandInput,
|
|
79
|
+
options?: __HttpHandlerOptions
|
|
80
|
+
): Promise<DeleteCertificateCommandOutput>;
|
|
81
|
+
deleteCertificate(
|
|
82
|
+
args: DeleteCertificateCommandInput,
|
|
83
|
+
cb: (err: any, data?: DeleteCertificateCommandOutput) => void
|
|
84
|
+
): void;
|
|
85
|
+
deleteCertificate(
|
|
86
|
+
args: DeleteCertificateCommandInput,
|
|
87
|
+
options: __HttpHandlerOptions,
|
|
88
|
+
cb: (err: any, data?: DeleteCertificateCommandOutput) => void
|
|
89
|
+
): void;
|
|
90
|
+
describeCertificate(
|
|
91
|
+
args: DescribeCertificateCommandInput,
|
|
92
|
+
options?: __HttpHandlerOptions
|
|
93
|
+
): Promise<DescribeCertificateCommandOutput>;
|
|
94
|
+
describeCertificate(
|
|
95
|
+
args: DescribeCertificateCommandInput,
|
|
96
|
+
cb: (err: any, data?: DescribeCertificateCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
describeCertificate(
|
|
99
|
+
args: DescribeCertificateCommandInput,
|
|
100
|
+
options: __HttpHandlerOptions,
|
|
101
|
+
cb: (err: any, data?: DescribeCertificateCommandOutput) => void
|
|
102
|
+
): void;
|
|
103
|
+
exportCertificate(
|
|
104
|
+
args: ExportCertificateCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<ExportCertificateCommandOutput>;
|
|
107
|
+
exportCertificate(
|
|
108
|
+
args: ExportCertificateCommandInput,
|
|
109
|
+
cb: (err: any, data?: ExportCertificateCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
exportCertificate(
|
|
112
|
+
args: ExportCertificateCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: ExportCertificateCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
getAccountConfiguration(
|
|
117
|
+
args: GetAccountConfigurationCommandInput,
|
|
118
|
+
options?: __HttpHandlerOptions
|
|
119
|
+
): Promise<GetAccountConfigurationCommandOutput>;
|
|
120
|
+
getAccountConfiguration(
|
|
121
|
+
args: GetAccountConfigurationCommandInput,
|
|
122
|
+
cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
|
|
123
|
+
): void;
|
|
124
|
+
getAccountConfiguration(
|
|
125
|
+
args: GetAccountConfigurationCommandInput,
|
|
126
|
+
options: __HttpHandlerOptions,
|
|
127
|
+
cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
getCertificate(
|
|
130
|
+
args: GetCertificateCommandInput,
|
|
131
|
+
options?: __HttpHandlerOptions
|
|
132
|
+
): Promise<GetCertificateCommandOutput>;
|
|
133
|
+
getCertificate(
|
|
134
|
+
args: GetCertificateCommandInput,
|
|
135
|
+
cb: (err: any, data?: GetCertificateCommandOutput) => void
|
|
136
|
+
): void;
|
|
137
|
+
getCertificate(
|
|
138
|
+
args: GetCertificateCommandInput,
|
|
139
|
+
options: __HttpHandlerOptions,
|
|
140
|
+
cb: (err: any, data?: GetCertificateCommandOutput) => void
|
|
141
|
+
): void;
|
|
142
|
+
importCertificate(
|
|
143
|
+
args: ImportCertificateCommandInput,
|
|
144
|
+
options?: __HttpHandlerOptions
|
|
145
|
+
): Promise<ImportCertificateCommandOutput>;
|
|
146
|
+
importCertificate(
|
|
147
|
+
args: ImportCertificateCommandInput,
|
|
148
|
+
cb: (err: any, data?: ImportCertificateCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
importCertificate(
|
|
151
|
+
args: ImportCertificateCommandInput,
|
|
152
|
+
options: __HttpHandlerOptions,
|
|
153
|
+
cb: (err: any, data?: ImportCertificateCommandOutput) => void
|
|
154
|
+
): void;
|
|
155
|
+
listCertificates(
|
|
156
|
+
args: ListCertificatesCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<ListCertificatesCommandOutput>;
|
|
159
|
+
listCertificates(
|
|
160
|
+
args: ListCertificatesCommandInput,
|
|
161
|
+
cb: (err: any, data?: ListCertificatesCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
listCertificates(
|
|
164
|
+
args: ListCertificatesCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: ListCertificatesCommandOutput) => void
|
|
167
|
+
): void;
|
|
168
|
+
listTagsForCertificate(
|
|
169
|
+
args: ListTagsForCertificateCommandInput,
|
|
170
|
+
options?: __HttpHandlerOptions
|
|
171
|
+
): Promise<ListTagsForCertificateCommandOutput>;
|
|
172
|
+
listTagsForCertificate(
|
|
173
|
+
args: ListTagsForCertificateCommandInput,
|
|
174
|
+
cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
listTagsForCertificate(
|
|
177
|
+
args: ListTagsForCertificateCommandInput,
|
|
178
|
+
options: __HttpHandlerOptions,
|
|
179
|
+
cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
putAccountConfiguration(
|
|
182
|
+
args: PutAccountConfigurationCommandInput,
|
|
183
|
+
options?: __HttpHandlerOptions
|
|
184
|
+
): Promise<PutAccountConfigurationCommandOutput>;
|
|
185
|
+
putAccountConfiguration(
|
|
186
|
+
args: PutAccountConfigurationCommandInput,
|
|
187
|
+
cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
|
|
188
|
+
): void;
|
|
189
|
+
putAccountConfiguration(
|
|
190
|
+
args: PutAccountConfigurationCommandInput,
|
|
191
|
+
options: __HttpHandlerOptions,
|
|
192
|
+
cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
|
|
193
|
+
): void;
|
|
194
|
+
removeTagsFromCertificate(
|
|
195
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
196
|
+
options?: __HttpHandlerOptions
|
|
197
|
+
): Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
198
|
+
removeTagsFromCertificate(
|
|
199
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
200
|
+
cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
|
|
201
|
+
): void;
|
|
202
|
+
removeTagsFromCertificate(
|
|
203
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
204
|
+
options: __HttpHandlerOptions,
|
|
205
|
+
cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
|
|
206
|
+
): void;
|
|
207
|
+
renewCertificate(
|
|
208
|
+
args: RenewCertificateCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<RenewCertificateCommandOutput>;
|
|
211
|
+
renewCertificate(
|
|
212
|
+
args: RenewCertificateCommandInput,
|
|
213
|
+
cb: (err: any, data?: RenewCertificateCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
renewCertificate(
|
|
216
|
+
args: RenewCertificateCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: RenewCertificateCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
requestCertificate(
|
|
221
|
+
args: RequestCertificateCommandInput,
|
|
222
|
+
options?: __HttpHandlerOptions
|
|
223
|
+
): Promise<RequestCertificateCommandOutput>;
|
|
224
|
+
requestCertificate(
|
|
225
|
+
args: RequestCertificateCommandInput,
|
|
226
|
+
cb: (err: any, data?: RequestCertificateCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
requestCertificate(
|
|
229
|
+
args: RequestCertificateCommandInput,
|
|
230
|
+
options: __HttpHandlerOptions,
|
|
231
|
+
cb: (err: any, data?: RequestCertificateCommandOutput) => void
|
|
232
|
+
): void;
|
|
233
|
+
resendValidationEmail(
|
|
234
|
+
args: ResendValidationEmailCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<ResendValidationEmailCommandOutput>;
|
|
237
|
+
resendValidationEmail(
|
|
238
|
+
args: ResendValidationEmailCommandInput,
|
|
239
|
+
cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
resendValidationEmail(
|
|
242
|
+
args: ResendValidationEmailCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
updateCertificateOptions(
|
|
247
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
248
|
+
options?: __HttpHandlerOptions
|
|
249
|
+
): Promise<UpdateCertificateOptionsCommandOutput>;
|
|
250
|
+
updateCertificateOptions(
|
|
251
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
252
|
+
cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
updateCertificateOptions(
|
|
255
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
256
|
+
options: __HttpHandlerOptions,
|
|
257
|
+
cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
|
|
258
|
+
): void;
|
|
259
|
+
}
|
|
@@ -1,88 +1,193 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
AddTagsToCertificateCommandInput,
|
|
47
|
+
AddTagsToCertificateCommandOutput,
|
|
48
|
+
} from "./commands/AddTagsToCertificateCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteCertificateCommandInput,
|
|
51
|
+
DeleteCertificateCommandOutput,
|
|
52
|
+
} from "./commands/DeleteCertificateCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeCertificateCommandInput,
|
|
55
|
+
DescribeCertificateCommandOutput,
|
|
56
|
+
} from "./commands/DescribeCertificateCommand";
|
|
57
|
+
import {
|
|
58
|
+
ExportCertificateCommandInput,
|
|
59
|
+
ExportCertificateCommandOutput,
|
|
60
|
+
} from "./commands/ExportCertificateCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetAccountConfigurationCommandInput,
|
|
63
|
+
GetAccountConfigurationCommandOutput,
|
|
64
|
+
} from "./commands/GetAccountConfigurationCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetCertificateCommandInput,
|
|
67
|
+
GetCertificateCommandOutput,
|
|
68
|
+
} from "./commands/GetCertificateCommand";
|
|
69
|
+
import {
|
|
70
|
+
ImportCertificateCommandInput,
|
|
71
|
+
ImportCertificateCommandOutput,
|
|
72
|
+
} from "./commands/ImportCertificateCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListCertificatesCommandInput,
|
|
75
|
+
ListCertificatesCommandOutput,
|
|
76
|
+
} from "./commands/ListCertificatesCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListTagsForCertificateCommandInput,
|
|
79
|
+
ListTagsForCertificateCommandOutput,
|
|
80
|
+
} from "./commands/ListTagsForCertificateCommand";
|
|
81
|
+
import {
|
|
82
|
+
PutAccountConfigurationCommandInput,
|
|
83
|
+
PutAccountConfigurationCommandOutput,
|
|
84
|
+
} from "./commands/PutAccountConfigurationCommand";
|
|
85
|
+
import {
|
|
86
|
+
RemoveTagsFromCertificateCommandInput,
|
|
87
|
+
RemoveTagsFromCertificateCommandOutput,
|
|
88
|
+
} from "./commands/RemoveTagsFromCertificateCommand";
|
|
89
|
+
import {
|
|
90
|
+
RenewCertificateCommandInput,
|
|
91
|
+
RenewCertificateCommandOutput,
|
|
92
|
+
} from "./commands/RenewCertificateCommand";
|
|
93
|
+
import {
|
|
94
|
+
RequestCertificateCommandInput,
|
|
95
|
+
RequestCertificateCommandOutput,
|
|
96
|
+
} from "./commands/RequestCertificateCommand";
|
|
97
|
+
import {
|
|
98
|
+
ResendValidationEmailCommandInput,
|
|
99
|
+
ResendValidationEmailCommandOutput,
|
|
100
|
+
} from "./commands/ResendValidationEmailCommand";
|
|
101
|
+
import {
|
|
102
|
+
UpdateCertificateOptionsCommandInput,
|
|
103
|
+
UpdateCertificateOptionsCommandOutput,
|
|
104
|
+
} from "./commands/UpdateCertificateOptionsCommand";
|
|
105
|
+
export declare type ServiceInputTypes =
|
|
106
|
+
| AddTagsToCertificateCommandInput
|
|
107
|
+
| DeleteCertificateCommandInput
|
|
108
|
+
| DescribeCertificateCommandInput
|
|
109
|
+
| ExportCertificateCommandInput
|
|
110
|
+
| GetAccountConfigurationCommandInput
|
|
111
|
+
| GetCertificateCommandInput
|
|
112
|
+
| ImportCertificateCommandInput
|
|
113
|
+
| ListCertificatesCommandInput
|
|
114
|
+
| ListTagsForCertificateCommandInput
|
|
115
|
+
| PutAccountConfigurationCommandInput
|
|
116
|
+
| RemoveTagsFromCertificateCommandInput
|
|
117
|
+
| RenewCertificateCommandInput
|
|
118
|
+
| RequestCertificateCommandInput
|
|
119
|
+
| ResendValidationEmailCommandInput
|
|
120
|
+
| UpdateCertificateOptionsCommandInput;
|
|
121
|
+
export declare type ServiceOutputTypes =
|
|
122
|
+
| AddTagsToCertificateCommandOutput
|
|
123
|
+
| DeleteCertificateCommandOutput
|
|
124
|
+
| DescribeCertificateCommandOutput
|
|
125
|
+
| ExportCertificateCommandOutput
|
|
126
|
+
| GetAccountConfigurationCommandOutput
|
|
127
|
+
| GetCertificateCommandOutput
|
|
128
|
+
| ImportCertificateCommandOutput
|
|
129
|
+
| ListCertificatesCommandOutput
|
|
130
|
+
| ListTagsForCertificateCommandOutput
|
|
131
|
+
| PutAccountConfigurationCommandOutput
|
|
132
|
+
| RemoveTagsFromCertificateCommandOutput
|
|
133
|
+
| RenewCertificateCommandOutput
|
|
134
|
+
| RequestCertificateCommandOutput
|
|
135
|
+
| ResendValidationEmailCommandOutput
|
|
136
|
+
| UpdateCertificateOptionsCommandOutput;
|
|
137
|
+
export interface ClientDefaults
|
|
138
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
139
|
+
requestHandler?: __HttpHandler;
|
|
140
|
+
sha256?: __HashConstructor;
|
|
141
|
+
urlParser?: __UrlParser;
|
|
142
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
143
|
+
streamCollector?: __StreamCollector;
|
|
144
|
+
base64Decoder?: __Decoder;
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
utf8Decoder?: __Decoder;
|
|
147
|
+
utf8Encoder?: __Encoder;
|
|
148
|
+
runtime?: string;
|
|
149
|
+
disableHostPrefix?: boolean;
|
|
150
|
+
maxAttempts?: number | __Provider<number>;
|
|
151
|
+
retryMode?: string | __Provider<string>;
|
|
152
|
+
logger?: __Logger;
|
|
153
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
154
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
155
|
+
serviceId?: string;
|
|
156
|
+
region?: string | __Provider<string>;
|
|
157
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
158
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
159
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
160
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
161
|
+
}
|
|
162
|
+
declare type ACMClientConfigType = Partial<
|
|
163
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
164
|
+
> &
|
|
165
|
+
ClientDefaults &
|
|
166
|
+
RegionInputConfig &
|
|
167
|
+
EndpointsInputConfig &
|
|
168
|
+
RetryInputConfig &
|
|
169
|
+
HostHeaderInputConfig &
|
|
170
|
+
AwsAuthInputConfig &
|
|
171
|
+
UserAgentInputConfig;
|
|
172
|
+
export interface ACMClientConfig extends ACMClientConfigType {}
|
|
173
|
+
declare type ACMClientResolvedConfigType =
|
|
174
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
175
|
+
Required<ClientDefaults> &
|
|
176
|
+
RegionResolvedConfig &
|
|
177
|
+
EndpointsResolvedConfig &
|
|
178
|
+
RetryResolvedConfig &
|
|
179
|
+
HostHeaderResolvedConfig &
|
|
180
|
+
AwsAuthResolvedConfig &
|
|
181
|
+
UserAgentResolvedConfig;
|
|
182
|
+
export interface ACMClientResolvedConfig extends ACMClientResolvedConfigType {}
|
|
183
|
+
export declare class ACMClient extends __Client<
|
|
184
|
+
__HttpHandlerOptions,
|
|
185
|
+
ServiceInputTypes,
|
|
186
|
+
ServiceOutputTypes,
|
|
187
|
+
ACMClientResolvedConfig
|
|
188
|
+
> {
|
|
189
|
+
readonly config: ACMClientResolvedConfig;
|
|
190
|
+
constructor(configuration: ACMClientConfig);
|
|
191
|
+
destroy(): void;
|
|
192
|
+
}
|
|
193
|
+
export {};
|