@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
|
@@ -53,6 +53,14 @@ import {
|
|
|
53
53
|
CreateAddonSubscriptionCommandInput,
|
|
54
54
|
CreateAddonSubscriptionCommandOutput,
|
|
55
55
|
} from "./commands/CreateAddonSubscriptionCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateAddressListCommandInput,
|
|
58
|
+
CreateAddressListCommandOutput,
|
|
59
|
+
} from "./commands/CreateAddressListCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateAddressListImportJobCommandInput,
|
|
62
|
+
CreateAddressListImportJobCommandOutput,
|
|
63
|
+
} from "./commands/CreateAddressListImportJobCommand";
|
|
56
64
|
import {
|
|
57
65
|
CreateArchiveCommandInput,
|
|
58
66
|
CreateArchiveCommandOutput,
|
|
@@ -81,6 +89,10 @@ import {
|
|
|
81
89
|
DeleteAddonSubscriptionCommandInput,
|
|
82
90
|
DeleteAddonSubscriptionCommandOutput,
|
|
83
91
|
} from "./commands/DeleteAddonSubscriptionCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteAddressListCommandInput,
|
|
94
|
+
DeleteAddressListCommandOutput,
|
|
95
|
+
} from "./commands/DeleteAddressListCommand";
|
|
84
96
|
import {
|
|
85
97
|
DeleteArchiveCommandInput,
|
|
86
98
|
DeleteArchiveCommandOutput,
|
|
@@ -101,6 +113,10 @@ import {
|
|
|
101
113
|
DeleteTrafficPolicyCommandInput,
|
|
102
114
|
DeleteTrafficPolicyCommandOutput,
|
|
103
115
|
} from "./commands/DeleteTrafficPolicyCommand";
|
|
116
|
+
import {
|
|
117
|
+
DeregisterMemberFromAddressListCommandInput,
|
|
118
|
+
DeregisterMemberFromAddressListCommandOutput,
|
|
119
|
+
} from "./commands/DeregisterMemberFromAddressListCommand";
|
|
104
120
|
import {
|
|
105
121
|
GetAddonInstanceCommandInput,
|
|
106
122
|
GetAddonInstanceCommandOutput,
|
|
@@ -109,6 +125,14 @@ import {
|
|
|
109
125
|
GetAddonSubscriptionCommandInput,
|
|
110
126
|
GetAddonSubscriptionCommandOutput,
|
|
111
127
|
} from "./commands/GetAddonSubscriptionCommand";
|
|
128
|
+
import {
|
|
129
|
+
GetAddressListCommandInput,
|
|
130
|
+
GetAddressListCommandOutput,
|
|
131
|
+
} from "./commands/GetAddressListCommand";
|
|
132
|
+
import {
|
|
133
|
+
GetAddressListImportJobCommandInput,
|
|
134
|
+
GetAddressListImportJobCommandOutput,
|
|
135
|
+
} from "./commands/GetAddressListImportJobCommand";
|
|
112
136
|
import {
|
|
113
137
|
GetArchiveCommandInput,
|
|
114
138
|
GetArchiveCommandOutput,
|
|
@@ -137,6 +161,10 @@ import {
|
|
|
137
161
|
GetIngressPointCommandInput,
|
|
138
162
|
GetIngressPointCommandOutput,
|
|
139
163
|
} from "./commands/GetIngressPointCommand";
|
|
164
|
+
import {
|
|
165
|
+
GetMemberOfAddressListCommandInput,
|
|
166
|
+
GetMemberOfAddressListCommandOutput,
|
|
167
|
+
} from "./commands/GetMemberOfAddressListCommand";
|
|
140
168
|
import {
|
|
141
169
|
GetRelayCommandInput,
|
|
142
170
|
GetRelayCommandOutput,
|
|
@@ -157,6 +185,14 @@ import {
|
|
|
157
185
|
ListAddonSubscriptionsCommandInput,
|
|
158
186
|
ListAddonSubscriptionsCommandOutput,
|
|
159
187
|
} from "./commands/ListAddonSubscriptionsCommand";
|
|
188
|
+
import {
|
|
189
|
+
ListAddressListImportJobsCommandInput,
|
|
190
|
+
ListAddressListImportJobsCommandOutput,
|
|
191
|
+
} from "./commands/ListAddressListImportJobsCommand";
|
|
192
|
+
import {
|
|
193
|
+
ListAddressListsCommandInput,
|
|
194
|
+
ListAddressListsCommandOutput,
|
|
195
|
+
} from "./commands/ListAddressListsCommand";
|
|
160
196
|
import {
|
|
161
197
|
ListArchiveExportsCommandInput,
|
|
162
198
|
ListArchiveExportsCommandOutput,
|
|
@@ -173,6 +209,10 @@ import {
|
|
|
173
209
|
ListIngressPointsCommandInput,
|
|
174
210
|
ListIngressPointsCommandOutput,
|
|
175
211
|
} from "./commands/ListIngressPointsCommand";
|
|
212
|
+
import {
|
|
213
|
+
ListMembersOfAddressListCommandInput,
|
|
214
|
+
ListMembersOfAddressListCommandOutput,
|
|
215
|
+
} from "./commands/ListMembersOfAddressListCommand";
|
|
176
216
|
import {
|
|
177
217
|
ListRelaysCommandInput,
|
|
178
218
|
ListRelaysCommandOutput,
|
|
@@ -189,6 +229,14 @@ import {
|
|
|
189
229
|
ListTrafficPoliciesCommandInput,
|
|
190
230
|
ListTrafficPoliciesCommandOutput,
|
|
191
231
|
} from "./commands/ListTrafficPoliciesCommand";
|
|
232
|
+
import {
|
|
233
|
+
RegisterMemberToAddressListCommandInput,
|
|
234
|
+
RegisterMemberToAddressListCommandOutput,
|
|
235
|
+
} from "./commands/RegisterMemberToAddressListCommand";
|
|
236
|
+
import {
|
|
237
|
+
StartAddressListImportJobCommandInput,
|
|
238
|
+
StartAddressListImportJobCommandOutput,
|
|
239
|
+
} from "./commands/StartAddressListImportJobCommand";
|
|
192
240
|
import {
|
|
193
241
|
StartArchiveExportCommandInput,
|
|
194
242
|
StartArchiveExportCommandOutput,
|
|
@@ -197,6 +245,10 @@ import {
|
|
|
197
245
|
StartArchiveSearchCommandInput,
|
|
198
246
|
StartArchiveSearchCommandOutput,
|
|
199
247
|
} from "./commands/StartArchiveSearchCommand";
|
|
248
|
+
import {
|
|
249
|
+
StopAddressListImportJobCommandInput,
|
|
250
|
+
StopAddressListImportJobCommandOutput,
|
|
251
|
+
} from "./commands/StopAddressListImportJobCommand";
|
|
200
252
|
import {
|
|
201
253
|
StopArchiveExportCommandInput,
|
|
202
254
|
StopArchiveExportCommandOutput,
|
|
@@ -243,6 +295,8 @@ export { __Client };
|
|
|
243
295
|
export type ServiceInputTypes =
|
|
244
296
|
| CreateAddonInstanceCommandInput
|
|
245
297
|
| CreateAddonSubscriptionCommandInput
|
|
298
|
+
| CreateAddressListCommandInput
|
|
299
|
+
| CreateAddressListImportJobCommandInput
|
|
246
300
|
| CreateArchiveCommandInput
|
|
247
301
|
| CreateIngressPointCommandInput
|
|
248
302
|
| CreateRelayCommandInput
|
|
@@ -250,13 +304,17 @@ export type ServiceInputTypes =
|
|
|
250
304
|
| CreateTrafficPolicyCommandInput
|
|
251
305
|
| DeleteAddonInstanceCommandInput
|
|
252
306
|
| DeleteAddonSubscriptionCommandInput
|
|
307
|
+
| DeleteAddressListCommandInput
|
|
253
308
|
| DeleteArchiveCommandInput
|
|
254
309
|
| DeleteIngressPointCommandInput
|
|
255
310
|
| DeleteRelayCommandInput
|
|
256
311
|
| DeleteRuleSetCommandInput
|
|
257
312
|
| DeleteTrafficPolicyCommandInput
|
|
313
|
+
| DeregisterMemberFromAddressListCommandInput
|
|
258
314
|
| GetAddonInstanceCommandInput
|
|
259
315
|
| GetAddonSubscriptionCommandInput
|
|
316
|
+
| GetAddressListCommandInput
|
|
317
|
+
| GetAddressListImportJobCommandInput
|
|
260
318
|
| GetArchiveCommandInput
|
|
261
319
|
| GetArchiveExportCommandInput
|
|
262
320
|
| GetArchiveMessageCommandInput
|
|
@@ -264,21 +322,28 @@ export type ServiceInputTypes =
|
|
|
264
322
|
| GetArchiveSearchCommandInput
|
|
265
323
|
| GetArchiveSearchResultsCommandInput
|
|
266
324
|
| GetIngressPointCommandInput
|
|
325
|
+
| GetMemberOfAddressListCommandInput
|
|
267
326
|
| GetRelayCommandInput
|
|
268
327
|
| GetRuleSetCommandInput
|
|
269
328
|
| GetTrafficPolicyCommandInput
|
|
270
329
|
| ListAddonInstancesCommandInput
|
|
271
330
|
| ListAddonSubscriptionsCommandInput
|
|
331
|
+
| ListAddressListImportJobsCommandInput
|
|
332
|
+
| ListAddressListsCommandInput
|
|
272
333
|
| ListArchiveExportsCommandInput
|
|
273
334
|
| ListArchiveSearchesCommandInput
|
|
274
335
|
| ListArchivesCommandInput
|
|
275
336
|
| ListIngressPointsCommandInput
|
|
337
|
+
| ListMembersOfAddressListCommandInput
|
|
276
338
|
| ListRelaysCommandInput
|
|
277
339
|
| ListRuleSetsCommandInput
|
|
278
340
|
| ListTagsForResourceCommandInput
|
|
279
341
|
| ListTrafficPoliciesCommandInput
|
|
342
|
+
| RegisterMemberToAddressListCommandInput
|
|
343
|
+
| StartAddressListImportJobCommandInput
|
|
280
344
|
| StartArchiveExportCommandInput
|
|
281
345
|
| StartArchiveSearchCommandInput
|
|
346
|
+
| StopAddressListImportJobCommandInput
|
|
282
347
|
| StopArchiveExportCommandInput
|
|
283
348
|
| StopArchiveSearchCommandInput
|
|
284
349
|
| TagResourceCommandInput
|
|
@@ -291,6 +356,8 @@ export type ServiceInputTypes =
|
|
|
291
356
|
export type ServiceOutputTypes =
|
|
292
357
|
| CreateAddonInstanceCommandOutput
|
|
293
358
|
| CreateAddonSubscriptionCommandOutput
|
|
359
|
+
| CreateAddressListCommandOutput
|
|
360
|
+
| CreateAddressListImportJobCommandOutput
|
|
294
361
|
| CreateArchiveCommandOutput
|
|
295
362
|
| CreateIngressPointCommandOutput
|
|
296
363
|
| CreateRelayCommandOutput
|
|
@@ -298,13 +365,17 @@ export type ServiceOutputTypes =
|
|
|
298
365
|
| CreateTrafficPolicyCommandOutput
|
|
299
366
|
| DeleteAddonInstanceCommandOutput
|
|
300
367
|
| DeleteAddonSubscriptionCommandOutput
|
|
368
|
+
| DeleteAddressListCommandOutput
|
|
301
369
|
| DeleteArchiveCommandOutput
|
|
302
370
|
| DeleteIngressPointCommandOutput
|
|
303
371
|
| DeleteRelayCommandOutput
|
|
304
372
|
| DeleteRuleSetCommandOutput
|
|
305
373
|
| DeleteTrafficPolicyCommandOutput
|
|
374
|
+
| DeregisterMemberFromAddressListCommandOutput
|
|
306
375
|
| GetAddonInstanceCommandOutput
|
|
307
376
|
| GetAddonSubscriptionCommandOutput
|
|
377
|
+
| GetAddressListCommandOutput
|
|
378
|
+
| GetAddressListImportJobCommandOutput
|
|
308
379
|
| GetArchiveCommandOutput
|
|
309
380
|
| GetArchiveExportCommandOutput
|
|
310
381
|
| GetArchiveMessageCommandOutput
|
|
@@ -312,21 +383,28 @@ export type ServiceOutputTypes =
|
|
|
312
383
|
| GetArchiveSearchCommandOutput
|
|
313
384
|
| GetArchiveSearchResultsCommandOutput
|
|
314
385
|
| GetIngressPointCommandOutput
|
|
386
|
+
| GetMemberOfAddressListCommandOutput
|
|
315
387
|
| GetRelayCommandOutput
|
|
316
388
|
| GetRuleSetCommandOutput
|
|
317
389
|
| GetTrafficPolicyCommandOutput
|
|
318
390
|
| ListAddonInstancesCommandOutput
|
|
319
391
|
| ListAddonSubscriptionsCommandOutput
|
|
392
|
+
| ListAddressListImportJobsCommandOutput
|
|
393
|
+
| ListAddressListsCommandOutput
|
|
320
394
|
| ListArchiveExportsCommandOutput
|
|
321
395
|
| ListArchiveSearchesCommandOutput
|
|
322
396
|
| ListArchivesCommandOutput
|
|
323
397
|
| ListIngressPointsCommandOutput
|
|
398
|
+
| ListMembersOfAddressListCommandOutput
|
|
324
399
|
| ListRelaysCommandOutput
|
|
325
400
|
| ListRuleSetsCommandOutput
|
|
326
401
|
| ListTagsForResourceCommandOutput
|
|
327
402
|
| ListTrafficPoliciesCommandOutput
|
|
403
|
+
| RegisterMemberToAddressListCommandOutput
|
|
404
|
+
| StartAddressListImportJobCommandOutput
|
|
328
405
|
| StartArchiveExportCommandOutput
|
|
329
406
|
| StartArchiveSearchCommandOutput
|
|
407
|
+
| StopAddressListImportJobCommandOutput
|
|
330
408
|
| StopArchiveExportCommandOutput
|
|
331
409
|
| StopArchiveSearchCommandOutput
|
|
332
410
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAddressListRequest,
|
|
10
|
+
CreateAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAddressListCommandInput
|
|
15
|
+
extends CreateAddressListRequest {}
|
|
16
|
+
export interface CreateAddressListCommandOutput
|
|
17
|
+
extends CreateAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAddressListCommandInput,
|
|
24
|
+
CreateAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAddressListCommandInput,
|
|
33
|
+
CreateAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAddressListCommand extends CreateAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAddressListRequest;
|
|
44
|
+
output: CreateAddressListResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAddressListCommandInput;
|
|
48
|
+
output: CreateAddressListCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAddressListImportJobRequest,
|
|
10
|
+
CreateAddressListImportJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAddressListImportJobCommandInput
|
|
15
|
+
extends CreateAddressListImportJobRequest {}
|
|
16
|
+
export interface CreateAddressListImportJobCommandOutput
|
|
17
|
+
extends CreateAddressListImportJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAddressListImportJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAddressListImportJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAddressListImportJobCommandInput,
|
|
24
|
+
CreateAddressListImportJobCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateAddressListImportJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAddressListImportJobCommandInput,
|
|
33
|
+
CreateAddressListImportJobCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAddressListImportJobCommand extends CreateAddressListImportJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAddressListImportJobRequest;
|
|
44
|
+
output: CreateAddressListImportJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAddressListImportJobCommandInput;
|
|
48
|
+
output: CreateAddressListImportJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteAddressListRequest,
|
|
10
|
+
DeleteAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteAddressListCommandInput
|
|
15
|
+
extends DeleteAddressListRequest {}
|
|
16
|
+
export interface DeleteAddressListCommandOutput
|
|
17
|
+
extends DeleteAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteAddressListCommandInput,
|
|
24
|
+
DeleteAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteAddressListCommandInput,
|
|
33
|
+
DeleteAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteAddressListCommand extends DeleteAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteAddressListRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteAddressListCommandInput;
|
|
48
|
+
output: DeleteAddressListCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
DeregisterMemberFromAddressListRequest,
|
|
10
|
+
DeregisterMemberFromAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeregisterMemberFromAddressListCommandInput
|
|
15
|
+
extends DeregisterMemberFromAddressListRequest {}
|
|
16
|
+
export interface DeregisterMemberFromAddressListCommandOutput
|
|
17
|
+
extends DeregisterMemberFromAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeregisterMemberFromAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeregisterMemberFromAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeregisterMemberFromAddressListCommandInput,
|
|
24
|
+
DeregisterMemberFromAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeregisterMemberFromAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeregisterMemberFromAddressListCommandInput,
|
|
33
|
+
DeregisterMemberFromAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeregisterMemberFromAddressListCommand extends DeregisterMemberFromAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeregisterMemberFromAddressListRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeregisterMemberFromAddressListCommandInput;
|
|
48
|
+
output: DeregisterMemberFromAddressListCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetAddressListRequest,
|
|
10
|
+
GetAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAddressListCommandInput extends GetAddressListRequest {}
|
|
15
|
+
export interface GetAddressListCommandOutput
|
|
16
|
+
extends GetAddressListResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetAddressListCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetAddressListCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetAddressListCommandInput,
|
|
23
|
+
GetAddressListCommandOutput,
|
|
24
|
+
MailManagerClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetAddressListCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetAddressListCommandInput,
|
|
32
|
+
GetAddressListCommandOutput,
|
|
33
|
+
MailManagerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetAddressListCommand extends GetAddressListCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetAddressListRequest;
|
|
43
|
+
output: GetAddressListResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetAddressListCommandInput;
|
|
47
|
+
output: GetAddressListCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetAddressListImportJobRequest,
|
|
10
|
+
GetAddressListImportJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAddressListImportJobCommandInput
|
|
15
|
+
extends GetAddressListImportJobRequest {}
|
|
16
|
+
export interface GetAddressListImportJobCommandOutput
|
|
17
|
+
extends GetAddressListImportJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetAddressListImportJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetAddressListImportJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetAddressListImportJobCommandInput,
|
|
24
|
+
GetAddressListImportJobCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetAddressListImportJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetAddressListImportJobCommandInput,
|
|
33
|
+
GetAddressListImportJobCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetAddressListImportJobCommand extends GetAddressListImportJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetAddressListImportJobRequest;
|
|
44
|
+
output: GetAddressListImportJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetAddressListImportJobCommandInput;
|
|
48
|
+
output: GetAddressListImportJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetMemberOfAddressListRequest,
|
|
10
|
+
GetMemberOfAddressListResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetMemberOfAddressListCommandInput
|
|
15
|
+
extends GetMemberOfAddressListRequest {}
|
|
16
|
+
export interface GetMemberOfAddressListCommandOutput
|
|
17
|
+
extends GetMemberOfAddressListResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetMemberOfAddressListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetMemberOfAddressListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetMemberOfAddressListCommandInput,
|
|
24
|
+
GetMemberOfAddressListCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetMemberOfAddressListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetMemberOfAddressListCommandInput,
|
|
33
|
+
GetMemberOfAddressListCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetMemberOfAddressListCommand extends GetMemberOfAddressListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetMemberOfAddressListRequest;
|
|
44
|
+
output: GetMemberOfAddressListResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetMemberOfAddressListCommandInput;
|
|
48
|
+
output: GetMemberOfAddressListCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAddressListImportJobsRequest,
|
|
10
|
+
ListAddressListImportJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAddressListImportJobsCommandInput
|
|
15
|
+
extends ListAddressListImportJobsRequest {}
|
|
16
|
+
export interface ListAddressListImportJobsCommandOutput
|
|
17
|
+
extends ListAddressListImportJobsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAddressListImportJobsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAddressListImportJobsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAddressListImportJobsCommandInput,
|
|
24
|
+
ListAddressListImportJobsCommandOutput,
|
|
25
|
+
MailManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListAddressListImportJobsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAddressListImportJobsCommandInput,
|
|
33
|
+
ListAddressListImportJobsCommandOutput,
|
|
34
|
+
MailManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAddressListImportJobsCommand extends ListAddressListImportJobsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAddressListImportJobsRequest;
|
|
44
|
+
output: ListAddressListImportJobsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAddressListImportJobsCommandInput;
|
|
48
|
+
output: ListAddressListImportJobsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MailManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MailManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAddressListsRequest,
|
|
10
|
+
ListAddressListsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAddressListsCommandInput extends ListAddressListsRequest {}
|
|
15
|
+
export interface ListAddressListsCommandOutput
|
|
16
|
+
extends ListAddressListsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListAddressListsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListAddressListsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListAddressListsCommandInput,
|
|
23
|
+
ListAddressListsCommandOutput,
|
|
24
|
+
MailManagerClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListAddressListsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListAddressListsCommandInput,
|
|
32
|
+
ListAddressListsCommandOutput,
|
|
33
|
+
MailManagerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListAddressListsCommand extends ListAddressListsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListAddressListsRequest;
|
|
43
|
+
output: ListAddressListsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListAddressListsCommandInput;
|
|
47
|
+
output: ListAddressListsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|