@aws-sdk/client-acm 3.169.0 → 3.170.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/ACM.d.ts +274 -80
- package/dist-types/ts3.4/ACMClient.d.ts +218 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +37 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +631 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +13 -7
- package/package.json +35 -35
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-acm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-acm
|
|
@@ -1,80 +1,274 @@
|
|
|
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
|
+
|
|
64
|
+
export declare class ACM extends ACMClient {
|
|
65
|
+
addTagsToCertificate(
|
|
66
|
+
args: AddTagsToCertificateCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<AddTagsToCertificateCommandOutput>;
|
|
69
|
+
addTagsToCertificate(
|
|
70
|
+
args: AddTagsToCertificateCommandInput,
|
|
71
|
+
cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
addTagsToCertificate(
|
|
74
|
+
args: AddTagsToCertificateCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
deleteCertificate(
|
|
80
|
+
args: DeleteCertificateCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<DeleteCertificateCommandOutput>;
|
|
83
|
+
deleteCertificate(
|
|
84
|
+
args: DeleteCertificateCommandInput,
|
|
85
|
+
cb: (err: any, data?: DeleteCertificateCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
deleteCertificate(
|
|
88
|
+
args: DeleteCertificateCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: DeleteCertificateCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
describeCertificate(
|
|
94
|
+
args: DescribeCertificateCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<DescribeCertificateCommandOutput>;
|
|
97
|
+
describeCertificate(
|
|
98
|
+
args: DescribeCertificateCommandInput,
|
|
99
|
+
cb: (err: any, data?: DescribeCertificateCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
describeCertificate(
|
|
102
|
+
args: DescribeCertificateCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: DescribeCertificateCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
exportCertificate(
|
|
108
|
+
args: ExportCertificateCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<ExportCertificateCommandOutput>;
|
|
111
|
+
exportCertificate(
|
|
112
|
+
args: ExportCertificateCommandInput,
|
|
113
|
+
cb: (err: any, data?: ExportCertificateCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
exportCertificate(
|
|
116
|
+
args: ExportCertificateCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: ExportCertificateCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
getAccountConfiguration(
|
|
122
|
+
args: GetAccountConfigurationCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<GetAccountConfigurationCommandOutput>;
|
|
125
|
+
getAccountConfiguration(
|
|
126
|
+
args: GetAccountConfigurationCommandInput,
|
|
127
|
+
cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
getAccountConfiguration(
|
|
130
|
+
args: GetAccountConfigurationCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
getCertificate(
|
|
136
|
+
args: GetCertificateCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<GetCertificateCommandOutput>;
|
|
139
|
+
getCertificate(
|
|
140
|
+
args: GetCertificateCommandInput,
|
|
141
|
+
cb: (err: any, data?: GetCertificateCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
getCertificate(
|
|
144
|
+
args: GetCertificateCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: GetCertificateCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
importCertificate(
|
|
150
|
+
args: ImportCertificateCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<ImportCertificateCommandOutput>;
|
|
153
|
+
importCertificate(
|
|
154
|
+
args: ImportCertificateCommandInput,
|
|
155
|
+
cb: (err: any, data?: ImportCertificateCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
importCertificate(
|
|
158
|
+
args: ImportCertificateCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: ImportCertificateCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
listCertificates(
|
|
164
|
+
args: ListCertificatesCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<ListCertificatesCommandOutput>;
|
|
167
|
+
listCertificates(
|
|
168
|
+
args: ListCertificatesCommandInput,
|
|
169
|
+
cb: (err: any, data?: ListCertificatesCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
listCertificates(
|
|
172
|
+
args: ListCertificatesCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: ListCertificatesCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
listTagsForCertificate(
|
|
178
|
+
args: ListTagsForCertificateCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<ListTagsForCertificateCommandOutput>;
|
|
181
|
+
listTagsForCertificate(
|
|
182
|
+
args: ListTagsForCertificateCommandInput,
|
|
183
|
+
cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listTagsForCertificate(
|
|
186
|
+
args: ListTagsForCertificateCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
putAccountConfiguration(
|
|
192
|
+
args: PutAccountConfigurationCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<PutAccountConfigurationCommandOutput>;
|
|
195
|
+
putAccountConfiguration(
|
|
196
|
+
args: PutAccountConfigurationCommandInput,
|
|
197
|
+
cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
putAccountConfiguration(
|
|
200
|
+
args: PutAccountConfigurationCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
removeTagsFromCertificate(
|
|
206
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
209
|
+
removeTagsFromCertificate(
|
|
210
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
211
|
+
cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
removeTagsFromCertificate(
|
|
214
|
+
args: RemoveTagsFromCertificateCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
renewCertificate(
|
|
220
|
+
args: RenewCertificateCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<RenewCertificateCommandOutput>;
|
|
223
|
+
renewCertificate(
|
|
224
|
+
args: RenewCertificateCommandInput,
|
|
225
|
+
cb: (err: any, data?: RenewCertificateCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
renewCertificate(
|
|
228
|
+
args: RenewCertificateCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: RenewCertificateCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
requestCertificate(
|
|
234
|
+
args: RequestCertificateCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<RequestCertificateCommandOutput>;
|
|
237
|
+
requestCertificate(
|
|
238
|
+
args: RequestCertificateCommandInput,
|
|
239
|
+
cb: (err: any, data?: RequestCertificateCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
requestCertificate(
|
|
242
|
+
args: RequestCertificateCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: RequestCertificateCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
resendValidationEmail(
|
|
248
|
+
args: ResendValidationEmailCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<ResendValidationEmailCommandOutput>;
|
|
251
|
+
resendValidationEmail(
|
|
252
|
+
args: ResendValidationEmailCommandInput,
|
|
253
|
+
cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
resendValidationEmail(
|
|
256
|
+
args: ResendValidationEmailCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
updateCertificateOptions(
|
|
262
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<UpdateCertificateOptionsCommandOutput>;
|
|
265
|
+
updateCertificateOptions(
|
|
266
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
267
|
+
cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
updateCertificateOptions(
|
|
270
|
+
args: UpdateCertificateOptionsCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
}
|