@aws-sdk/client-mailmanager 3.731.1 → 3.738.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/README.md +104 -0
- package/dist-cjs/MailManager.js +26 -0
- package/dist-cjs/commands/CreateAddonInstanceCommand.js +1 -2
- package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +1 -2
- package/dist-cjs/commands/CreateAddressListCommand.js +26 -0
- package/dist-cjs/commands/CreateAddressListImportJobCommand.js +27 -0
- package/dist-cjs/commands/CreateArchiveCommand.js +1 -2
- package/dist-cjs/commands/CreateRelayCommand.js +1 -2
- package/dist-cjs/commands/CreateTrafficPolicyCommand.js +1 -2
- package/dist-cjs/commands/DeleteAddressListCommand.js +26 -0
- package/dist-cjs/commands/DeregisterMemberFromAddressListCommand.js +27 -0
- package/dist-cjs/commands/GetAddressListCommand.js +26 -0
- package/dist-cjs/commands/GetAddressListImportJobCommand.js +27 -0
- package/dist-cjs/commands/GetMemberOfAddressListCommand.js +27 -0
- package/dist-cjs/commands/ListAddressListImportJobsCommand.js +27 -0
- package/dist-cjs/commands/ListAddressListsCommand.js +26 -0
- package/dist-cjs/commands/ListMembersOfAddressListCommand.js +27 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-cjs/commands/RegisterMemberToAddressListCommand.js +27 -0
- package/dist-cjs/commands/StartAddressListImportJobCommand.js +26 -0
- package/dist-cjs/commands/StopAddressListImportJobCommand.js +26 -0
- package/dist-cjs/commands/TagResourceCommand.js +1 -2
- package/dist-cjs/commands/UntagResourceCommand.js +1 -2
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +94 -59
- package/dist-cjs/pagination/ListAddressListImportJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListAddressListsPaginator.js +7 -0
- package/dist-cjs/pagination/ListMembersOfAddressListPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_json1_0.js +395 -2
- package/dist-es/MailManager.js +26 -0
- package/dist-es/commands/CreateAddonInstanceCommand.js +1 -2
- package/dist-es/commands/CreateAddonSubscriptionCommand.js +1 -2
- package/dist-es/commands/CreateAddressListCommand.js +22 -0
- package/dist-es/commands/CreateAddressListImportJobCommand.js +23 -0
- package/dist-es/commands/CreateArchiveCommand.js +1 -2
- package/dist-es/commands/CreateRelayCommand.js +1 -2
- package/dist-es/commands/CreateTrafficPolicyCommand.js +1 -2
- package/dist-es/commands/DeleteAddressListCommand.js +22 -0
- package/dist-es/commands/DeregisterMemberFromAddressListCommand.js +23 -0
- package/dist-es/commands/GetAddressListCommand.js +22 -0
- package/dist-es/commands/GetAddressListImportJobCommand.js +23 -0
- package/dist-es/commands/GetMemberOfAddressListCommand.js +23 -0
- package/dist-es/commands/ListAddressListImportJobsCommand.js +23 -0
- package/dist-es/commands/ListAddressListsCommand.js +22 -0
- package/dist-es/commands/ListMembersOfAddressListCommand.js +23 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-es/commands/RegisterMemberToAddressListCommand.js +23 -0
- package/dist-es/commands/StartAddressListImportJobCommand.js +22 -0
- package/dist-es/commands/StopAddressListImportJobCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +1 -2
- package/dist-es/commands/UntagResourceCommand.js +1 -2
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +78 -46
- package/dist-es/pagination/ListAddressListImportJobsPaginator.js +4 -0
- package/dist-es/pagination/ListAddressListsPaginator.js +4 -0
- package/dist-es/pagination/ListMembersOfAddressListPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +366 -0
- package/dist-types/MailManager.d.ts +92 -0
- package/dist-types/MailManagerClient.d.ts +15 -2
- package/dist-types/commands/CreateAddressListCommand.d.ts +93 -0
- package/dist-types/commands/CreateAddressListImportJobCommand.d.ts +89 -0
- package/dist-types/commands/CreateRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAddressListCommand.d.ts +78 -0
- package/dist-types/commands/DeregisterMemberFromAddressListCommand.d.ts +82 -0
- package/dist-types/commands/GetAddressListCommand.d.ts +87 -0
- package/dist-types/commands/GetAddressListImportJobCommand.d.ts +96 -0
- package/dist-types/commands/GetMemberOfAddressListCommand.d.ts +85 -0
- package/dist-types/commands/GetRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/GetTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/ListAddressListImportJobsCommand.d.ts +103 -0
- package/dist-types/commands/ListAddressListsCommand.d.ts +90 -0
- package/dist-types/commands/ListMembersOfAddressListCommand.d.ts +94 -0
- package/dist-types/commands/RegisterMemberToAddressListCommand.d.ts +85 -0
- package/dist-types/commands/StartAddressListImportJobCommand.d.ts +87 -0
- package/dist-types/commands/StopAddressListImportJobCommand.d.ts +84 -0
- package/dist-types/commands/UpdateRuleSetCommand.d.ts +12 -0
- package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +702 -34
- package/dist-types/pagination/ListAddressListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAddressListsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMembersOfAddressListPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +117 -0
- package/dist-types/ts3.4/MailManager.d.ts +222 -0
- package/dist-types/ts3.4/MailManagerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterMemberFromAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAddressListCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMemberOfAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAddressListImportJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAddressListsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMembersOfAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterMemberToAddressListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopAddressListImportJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +225 -29
- package/dist-types/ts3.4/pagination/ListAddressListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAddressListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMembersOfAddressListPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +156 -0
- package/package.json +33 -33
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAddressListsCommandInput,
|
|
4
|
+
ListAddressListsCommandOutput,
|
|
5
|
+
} from "../commands/ListAddressListsCommand";
|
|
6
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAddressLists: (
|
|
8
|
+
config: MailManagerPaginationConfiguration,
|
|
9
|
+
input: ListAddressListsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAddressListsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMembersOfAddressListCommandInput,
|
|
4
|
+
ListMembersOfAddressListCommandOutput,
|
|
5
|
+
} from "../commands/ListMembersOfAddressListCommand";
|
|
6
|
+
import { MailManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMembersOfAddressList: (
|
|
8
|
+
config: MailManagerPaginationConfiguration,
|
|
9
|
+
input: ListMembersOfAddressListCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMembersOfAddressListCommandOutput>;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAddonInstancesPaginator";
|
|
3
3
|
export * from "./ListAddonSubscriptionsPaginator";
|
|
4
|
+
export * from "./ListAddressListImportJobsPaginator";
|
|
5
|
+
export * from "./ListAddressListsPaginator";
|
|
4
6
|
export * from "./ListArchiveExportsPaginator";
|
|
5
7
|
export * from "./ListArchiveSearchesPaginator";
|
|
6
8
|
export * from "./ListArchivesPaginator";
|
|
7
9
|
export * from "./ListIngressPointsPaginator";
|
|
10
|
+
export * from "./ListMembersOfAddressListPaginator";
|
|
8
11
|
export * from "./ListRelaysPaginator";
|
|
9
12
|
export * from "./ListRuleSetsPaginator";
|
|
10
13
|
export * from "./ListTrafficPoliciesPaginator";
|
|
@@ -11,6 +11,14 @@ import {
|
|
|
11
11
|
CreateAddonSubscriptionCommandInput,
|
|
12
12
|
CreateAddonSubscriptionCommandOutput,
|
|
13
13
|
} from "../commands/CreateAddonSubscriptionCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAddressListCommandInput,
|
|
16
|
+
CreateAddressListCommandOutput,
|
|
17
|
+
} from "../commands/CreateAddressListCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateAddressListImportJobCommandInput,
|
|
20
|
+
CreateAddressListImportJobCommandOutput,
|
|
21
|
+
} from "../commands/CreateAddressListImportJobCommand";
|
|
14
22
|
import {
|
|
15
23
|
CreateArchiveCommandInput,
|
|
16
24
|
CreateArchiveCommandOutput,
|
|
@@ -39,6 +47,10 @@ import {
|
|
|
39
47
|
DeleteAddonSubscriptionCommandInput,
|
|
40
48
|
DeleteAddonSubscriptionCommandOutput,
|
|
41
49
|
} from "../commands/DeleteAddonSubscriptionCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteAddressListCommandInput,
|
|
52
|
+
DeleteAddressListCommandOutput,
|
|
53
|
+
} from "../commands/DeleteAddressListCommand";
|
|
42
54
|
import {
|
|
43
55
|
DeleteArchiveCommandInput,
|
|
44
56
|
DeleteArchiveCommandOutput,
|
|
@@ -59,6 +71,10 @@ import {
|
|
|
59
71
|
DeleteTrafficPolicyCommandInput,
|
|
60
72
|
DeleteTrafficPolicyCommandOutput,
|
|
61
73
|
} from "../commands/DeleteTrafficPolicyCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeregisterMemberFromAddressListCommandInput,
|
|
76
|
+
DeregisterMemberFromAddressListCommandOutput,
|
|
77
|
+
} from "../commands/DeregisterMemberFromAddressListCommand";
|
|
62
78
|
import {
|
|
63
79
|
GetAddonInstanceCommandInput,
|
|
64
80
|
GetAddonInstanceCommandOutput,
|
|
@@ -67,6 +83,14 @@ import {
|
|
|
67
83
|
GetAddonSubscriptionCommandInput,
|
|
68
84
|
GetAddonSubscriptionCommandOutput,
|
|
69
85
|
} from "../commands/GetAddonSubscriptionCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetAddressListCommandInput,
|
|
88
|
+
GetAddressListCommandOutput,
|
|
89
|
+
} from "../commands/GetAddressListCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetAddressListImportJobCommandInput,
|
|
92
|
+
GetAddressListImportJobCommandOutput,
|
|
93
|
+
} from "../commands/GetAddressListImportJobCommand";
|
|
70
94
|
import {
|
|
71
95
|
GetArchiveCommandInput,
|
|
72
96
|
GetArchiveCommandOutput,
|
|
@@ -95,6 +119,10 @@ import {
|
|
|
95
119
|
GetIngressPointCommandInput,
|
|
96
120
|
GetIngressPointCommandOutput,
|
|
97
121
|
} from "../commands/GetIngressPointCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetMemberOfAddressListCommandInput,
|
|
124
|
+
GetMemberOfAddressListCommandOutput,
|
|
125
|
+
} from "../commands/GetMemberOfAddressListCommand";
|
|
98
126
|
import {
|
|
99
127
|
GetRelayCommandInput,
|
|
100
128
|
GetRelayCommandOutput,
|
|
@@ -115,6 +143,14 @@ import {
|
|
|
115
143
|
ListAddonSubscriptionsCommandInput,
|
|
116
144
|
ListAddonSubscriptionsCommandOutput,
|
|
117
145
|
} from "../commands/ListAddonSubscriptionsCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListAddressListImportJobsCommandInput,
|
|
148
|
+
ListAddressListImportJobsCommandOutput,
|
|
149
|
+
} from "../commands/ListAddressListImportJobsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListAddressListsCommandInput,
|
|
152
|
+
ListAddressListsCommandOutput,
|
|
153
|
+
} from "../commands/ListAddressListsCommand";
|
|
118
154
|
import {
|
|
119
155
|
ListArchiveExportsCommandInput,
|
|
120
156
|
ListArchiveExportsCommandOutput,
|
|
@@ -131,6 +167,10 @@ import {
|
|
|
131
167
|
ListIngressPointsCommandInput,
|
|
132
168
|
ListIngressPointsCommandOutput,
|
|
133
169
|
} from "../commands/ListIngressPointsCommand";
|
|
170
|
+
import {
|
|
171
|
+
ListMembersOfAddressListCommandInput,
|
|
172
|
+
ListMembersOfAddressListCommandOutput,
|
|
173
|
+
} from "../commands/ListMembersOfAddressListCommand";
|
|
134
174
|
import {
|
|
135
175
|
ListRelaysCommandInput,
|
|
136
176
|
ListRelaysCommandOutput,
|
|
@@ -147,6 +187,14 @@ import {
|
|
|
147
187
|
ListTrafficPoliciesCommandInput,
|
|
148
188
|
ListTrafficPoliciesCommandOutput,
|
|
149
189
|
} from "../commands/ListTrafficPoliciesCommand";
|
|
190
|
+
import {
|
|
191
|
+
RegisterMemberToAddressListCommandInput,
|
|
192
|
+
RegisterMemberToAddressListCommandOutput,
|
|
193
|
+
} from "../commands/RegisterMemberToAddressListCommand";
|
|
194
|
+
import {
|
|
195
|
+
StartAddressListImportJobCommandInput,
|
|
196
|
+
StartAddressListImportJobCommandOutput,
|
|
197
|
+
} from "../commands/StartAddressListImportJobCommand";
|
|
150
198
|
import {
|
|
151
199
|
StartArchiveExportCommandInput,
|
|
152
200
|
StartArchiveExportCommandOutput,
|
|
@@ -155,6 +203,10 @@ import {
|
|
|
155
203
|
StartArchiveSearchCommandInput,
|
|
156
204
|
StartArchiveSearchCommandOutput,
|
|
157
205
|
} from "../commands/StartArchiveSearchCommand";
|
|
206
|
+
import {
|
|
207
|
+
StopAddressListImportJobCommandInput,
|
|
208
|
+
StopAddressListImportJobCommandOutput,
|
|
209
|
+
} from "../commands/StopAddressListImportJobCommand";
|
|
158
210
|
import {
|
|
159
211
|
StopArchiveExportCommandInput,
|
|
160
212
|
StopArchiveExportCommandOutput,
|
|
@@ -199,6 +251,14 @@ export declare const se_CreateAddonSubscriptionCommand: (
|
|
|
199
251
|
input: CreateAddonSubscriptionCommandInput,
|
|
200
252
|
context: __SerdeContext
|
|
201
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const se_CreateAddressListCommand: (
|
|
255
|
+
input: CreateAddressListCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_CreateAddressListImportJobCommand: (
|
|
259
|
+
input: CreateAddressListImportJobCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
202
262
|
export declare const se_CreateArchiveCommand: (
|
|
203
263
|
input: CreateArchiveCommandInput,
|
|
204
264
|
context: __SerdeContext
|
|
@@ -227,6 +287,10 @@ export declare const se_DeleteAddonSubscriptionCommand: (
|
|
|
227
287
|
input: DeleteAddonSubscriptionCommandInput,
|
|
228
288
|
context: __SerdeContext
|
|
229
289
|
) => Promise<__HttpRequest>;
|
|
290
|
+
export declare const se_DeleteAddressListCommand: (
|
|
291
|
+
input: DeleteAddressListCommandInput,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<__HttpRequest>;
|
|
230
294
|
export declare const se_DeleteArchiveCommand: (
|
|
231
295
|
input: DeleteArchiveCommandInput,
|
|
232
296
|
context: __SerdeContext
|
|
@@ -247,6 +311,10 @@ export declare const se_DeleteTrafficPolicyCommand: (
|
|
|
247
311
|
input: DeleteTrafficPolicyCommandInput,
|
|
248
312
|
context: __SerdeContext
|
|
249
313
|
) => Promise<__HttpRequest>;
|
|
314
|
+
export declare const se_DeregisterMemberFromAddressListCommand: (
|
|
315
|
+
input: DeregisterMemberFromAddressListCommandInput,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<__HttpRequest>;
|
|
250
318
|
export declare const se_GetAddonInstanceCommand: (
|
|
251
319
|
input: GetAddonInstanceCommandInput,
|
|
252
320
|
context: __SerdeContext
|
|
@@ -255,6 +323,14 @@ export declare const se_GetAddonSubscriptionCommand: (
|
|
|
255
323
|
input: GetAddonSubscriptionCommandInput,
|
|
256
324
|
context: __SerdeContext
|
|
257
325
|
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const se_GetAddressListCommand: (
|
|
327
|
+
input: GetAddressListCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_GetAddressListImportJobCommand: (
|
|
331
|
+
input: GetAddressListImportJobCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
258
334
|
export declare const se_GetArchiveCommand: (
|
|
259
335
|
input: GetArchiveCommandInput,
|
|
260
336
|
context: __SerdeContext
|
|
@@ -283,6 +359,10 @@ export declare const se_GetIngressPointCommand: (
|
|
|
283
359
|
input: GetIngressPointCommandInput,
|
|
284
360
|
context: __SerdeContext
|
|
285
361
|
) => Promise<__HttpRequest>;
|
|
362
|
+
export declare const se_GetMemberOfAddressListCommand: (
|
|
363
|
+
input: GetMemberOfAddressListCommandInput,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<__HttpRequest>;
|
|
286
366
|
export declare const se_GetRelayCommand: (
|
|
287
367
|
input: GetRelayCommandInput,
|
|
288
368
|
context: __SerdeContext
|
|
@@ -303,6 +383,14 @@ export declare const se_ListAddonSubscriptionsCommand: (
|
|
|
303
383
|
input: ListAddonSubscriptionsCommandInput,
|
|
304
384
|
context: __SerdeContext
|
|
305
385
|
) => Promise<__HttpRequest>;
|
|
386
|
+
export declare const se_ListAddressListImportJobsCommand: (
|
|
387
|
+
input: ListAddressListImportJobsCommandInput,
|
|
388
|
+
context: __SerdeContext
|
|
389
|
+
) => Promise<__HttpRequest>;
|
|
390
|
+
export declare const se_ListAddressListsCommand: (
|
|
391
|
+
input: ListAddressListsCommandInput,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<__HttpRequest>;
|
|
306
394
|
export declare const se_ListArchiveExportsCommand: (
|
|
307
395
|
input: ListArchiveExportsCommandInput,
|
|
308
396
|
context: __SerdeContext
|
|
@@ -319,6 +407,10 @@ export declare const se_ListIngressPointsCommand: (
|
|
|
319
407
|
input: ListIngressPointsCommandInput,
|
|
320
408
|
context: __SerdeContext
|
|
321
409
|
) => Promise<__HttpRequest>;
|
|
410
|
+
export declare const se_ListMembersOfAddressListCommand: (
|
|
411
|
+
input: ListMembersOfAddressListCommandInput,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<__HttpRequest>;
|
|
322
414
|
export declare const se_ListRelaysCommand: (
|
|
323
415
|
input: ListRelaysCommandInput,
|
|
324
416
|
context: __SerdeContext
|
|
@@ -335,6 +427,14 @@ export declare const se_ListTrafficPoliciesCommand: (
|
|
|
335
427
|
input: ListTrafficPoliciesCommandInput,
|
|
336
428
|
context: __SerdeContext
|
|
337
429
|
) => Promise<__HttpRequest>;
|
|
430
|
+
export declare const se_RegisterMemberToAddressListCommand: (
|
|
431
|
+
input: RegisterMemberToAddressListCommandInput,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<__HttpRequest>;
|
|
434
|
+
export declare const se_StartAddressListImportJobCommand: (
|
|
435
|
+
input: StartAddressListImportJobCommandInput,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<__HttpRequest>;
|
|
338
438
|
export declare const se_StartArchiveExportCommand: (
|
|
339
439
|
input: StartArchiveExportCommandInput,
|
|
340
440
|
context: __SerdeContext
|
|
@@ -343,6 +443,10 @@ export declare const se_StartArchiveSearchCommand: (
|
|
|
343
443
|
input: StartArchiveSearchCommandInput,
|
|
344
444
|
context: __SerdeContext
|
|
345
445
|
) => Promise<__HttpRequest>;
|
|
446
|
+
export declare const se_StopAddressListImportJobCommand: (
|
|
447
|
+
input: StopAddressListImportJobCommandInput,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<__HttpRequest>;
|
|
346
450
|
export declare const se_StopArchiveExportCommand: (
|
|
347
451
|
input: StopArchiveExportCommandInput,
|
|
348
452
|
context: __SerdeContext
|
|
@@ -387,6 +491,14 @@ export declare const de_CreateAddonSubscriptionCommand: (
|
|
|
387
491
|
output: __HttpResponse,
|
|
388
492
|
context: __SerdeContext
|
|
389
493
|
) => Promise<CreateAddonSubscriptionCommandOutput>;
|
|
494
|
+
export declare const de_CreateAddressListCommand: (
|
|
495
|
+
output: __HttpResponse,
|
|
496
|
+
context: __SerdeContext
|
|
497
|
+
) => Promise<CreateAddressListCommandOutput>;
|
|
498
|
+
export declare const de_CreateAddressListImportJobCommand: (
|
|
499
|
+
output: __HttpResponse,
|
|
500
|
+
context: __SerdeContext
|
|
501
|
+
) => Promise<CreateAddressListImportJobCommandOutput>;
|
|
390
502
|
export declare const de_CreateArchiveCommand: (
|
|
391
503
|
output: __HttpResponse,
|
|
392
504
|
context: __SerdeContext
|
|
@@ -415,6 +527,10 @@ export declare const de_DeleteAddonSubscriptionCommand: (
|
|
|
415
527
|
output: __HttpResponse,
|
|
416
528
|
context: __SerdeContext
|
|
417
529
|
) => Promise<DeleteAddonSubscriptionCommandOutput>;
|
|
530
|
+
export declare const de_DeleteAddressListCommand: (
|
|
531
|
+
output: __HttpResponse,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<DeleteAddressListCommandOutput>;
|
|
418
534
|
export declare const de_DeleteArchiveCommand: (
|
|
419
535
|
output: __HttpResponse,
|
|
420
536
|
context: __SerdeContext
|
|
@@ -435,6 +551,10 @@ export declare const de_DeleteTrafficPolicyCommand: (
|
|
|
435
551
|
output: __HttpResponse,
|
|
436
552
|
context: __SerdeContext
|
|
437
553
|
) => Promise<DeleteTrafficPolicyCommandOutput>;
|
|
554
|
+
export declare const de_DeregisterMemberFromAddressListCommand: (
|
|
555
|
+
output: __HttpResponse,
|
|
556
|
+
context: __SerdeContext
|
|
557
|
+
) => Promise<DeregisterMemberFromAddressListCommandOutput>;
|
|
438
558
|
export declare const de_GetAddonInstanceCommand: (
|
|
439
559
|
output: __HttpResponse,
|
|
440
560
|
context: __SerdeContext
|
|
@@ -443,6 +563,14 @@ export declare const de_GetAddonSubscriptionCommand: (
|
|
|
443
563
|
output: __HttpResponse,
|
|
444
564
|
context: __SerdeContext
|
|
445
565
|
) => Promise<GetAddonSubscriptionCommandOutput>;
|
|
566
|
+
export declare const de_GetAddressListCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<GetAddressListCommandOutput>;
|
|
570
|
+
export declare const de_GetAddressListImportJobCommand: (
|
|
571
|
+
output: __HttpResponse,
|
|
572
|
+
context: __SerdeContext
|
|
573
|
+
) => Promise<GetAddressListImportJobCommandOutput>;
|
|
446
574
|
export declare const de_GetArchiveCommand: (
|
|
447
575
|
output: __HttpResponse,
|
|
448
576
|
context: __SerdeContext
|
|
@@ -471,6 +599,10 @@ export declare const de_GetIngressPointCommand: (
|
|
|
471
599
|
output: __HttpResponse,
|
|
472
600
|
context: __SerdeContext
|
|
473
601
|
) => Promise<GetIngressPointCommandOutput>;
|
|
602
|
+
export declare const de_GetMemberOfAddressListCommand: (
|
|
603
|
+
output: __HttpResponse,
|
|
604
|
+
context: __SerdeContext
|
|
605
|
+
) => Promise<GetMemberOfAddressListCommandOutput>;
|
|
474
606
|
export declare const de_GetRelayCommand: (
|
|
475
607
|
output: __HttpResponse,
|
|
476
608
|
context: __SerdeContext
|
|
@@ -491,6 +623,14 @@ export declare const de_ListAddonSubscriptionsCommand: (
|
|
|
491
623
|
output: __HttpResponse,
|
|
492
624
|
context: __SerdeContext
|
|
493
625
|
) => Promise<ListAddonSubscriptionsCommandOutput>;
|
|
626
|
+
export declare const de_ListAddressListImportJobsCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<ListAddressListImportJobsCommandOutput>;
|
|
630
|
+
export declare const de_ListAddressListsCommand: (
|
|
631
|
+
output: __HttpResponse,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<ListAddressListsCommandOutput>;
|
|
494
634
|
export declare const de_ListArchiveExportsCommand: (
|
|
495
635
|
output: __HttpResponse,
|
|
496
636
|
context: __SerdeContext
|
|
@@ -507,6 +647,10 @@ export declare const de_ListIngressPointsCommand: (
|
|
|
507
647
|
output: __HttpResponse,
|
|
508
648
|
context: __SerdeContext
|
|
509
649
|
) => Promise<ListIngressPointsCommandOutput>;
|
|
650
|
+
export declare const de_ListMembersOfAddressListCommand: (
|
|
651
|
+
output: __HttpResponse,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<ListMembersOfAddressListCommandOutput>;
|
|
510
654
|
export declare const de_ListRelaysCommand: (
|
|
511
655
|
output: __HttpResponse,
|
|
512
656
|
context: __SerdeContext
|
|
@@ -523,6 +667,14 @@ export declare const de_ListTrafficPoliciesCommand: (
|
|
|
523
667
|
output: __HttpResponse,
|
|
524
668
|
context: __SerdeContext
|
|
525
669
|
) => Promise<ListTrafficPoliciesCommandOutput>;
|
|
670
|
+
export declare const de_RegisterMemberToAddressListCommand: (
|
|
671
|
+
output: __HttpResponse,
|
|
672
|
+
context: __SerdeContext
|
|
673
|
+
) => Promise<RegisterMemberToAddressListCommandOutput>;
|
|
674
|
+
export declare const de_StartAddressListImportJobCommand: (
|
|
675
|
+
output: __HttpResponse,
|
|
676
|
+
context: __SerdeContext
|
|
677
|
+
) => Promise<StartAddressListImportJobCommandOutput>;
|
|
526
678
|
export declare const de_StartArchiveExportCommand: (
|
|
527
679
|
output: __HttpResponse,
|
|
528
680
|
context: __SerdeContext
|
|
@@ -531,6 +683,10 @@ export declare const de_StartArchiveSearchCommand: (
|
|
|
531
683
|
output: __HttpResponse,
|
|
532
684
|
context: __SerdeContext
|
|
533
685
|
) => Promise<StartArchiveSearchCommandOutput>;
|
|
686
|
+
export declare const de_StopAddressListImportJobCommand: (
|
|
687
|
+
output: __HttpResponse,
|
|
688
|
+
context: __SerdeContext
|
|
689
|
+
) => Promise<StopAddressListImportJobCommandOutput>;
|
|
534
690
|
export declare const de_StopArchiveExportCommand: (
|
|
535
691
|
output: __HttpResponse,
|
|
536
692
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mailmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mailmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.738.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.0.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.0.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.0.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.734.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.738.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.734.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
|
+
"@aws-sdk/types": "3.734.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.734.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.734.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
+
"@smithy/core": "^3.1.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
|
+
"@smithy/hash-node": "^4.0.1",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.3",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.1",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.1",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.2",
|
|
46
|
+
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
+
"@smithy/smithy-client": "^4.1.2",
|
|
48
|
+
"@smithy/types": "^4.1.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.3",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.3",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.1",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.1",
|
|
57
|
+
"@smithy/util-retry": "^4.0.1",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|