@aws-sdk/client-mailmanager 3.734.0 → 3.741.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 +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.se_StartArchiveSearchCommand = exports.se_StartArchiveExportCommand = exports.se_StartAddressListImportJobCommand = exports.se_RegisterMemberToAddressListCommand = exports.se_ListTrafficPoliciesCommand = exports.se_ListTagsForResourceCommand = exports.se_ListRuleSetsCommand = exports.se_ListRelaysCommand = exports.se_ListMembersOfAddressListCommand = exports.se_ListIngressPointsCommand = exports.se_ListArchiveSearchesCommand = exports.se_ListArchivesCommand = exports.se_ListArchiveExportsCommand = exports.se_ListAddressListsCommand = exports.se_ListAddressListImportJobsCommand = exports.se_ListAddonSubscriptionsCommand = exports.se_ListAddonInstancesCommand = exports.se_GetTrafficPolicyCommand = exports.se_GetRuleSetCommand = exports.se_GetRelayCommand = exports.se_GetMemberOfAddressListCommand = exports.se_GetIngressPointCommand = exports.se_GetArchiveSearchResultsCommand = exports.se_GetArchiveSearchCommand = exports.se_GetArchiveMessageContentCommand = exports.se_GetArchiveMessageCommand = exports.se_GetArchiveExportCommand = exports.se_GetArchiveCommand = exports.se_GetAddressListImportJobCommand = exports.se_GetAddressListCommand = exports.se_GetAddonSubscriptionCommand = exports.se_GetAddonInstanceCommand = exports.se_DeregisterMemberFromAddressListCommand = exports.se_DeleteTrafficPolicyCommand = exports.se_DeleteRuleSetCommand = exports.se_DeleteRelayCommand = exports.se_DeleteIngressPointCommand = exports.se_DeleteArchiveCommand = exports.se_DeleteAddressListCommand = exports.se_DeleteAddonSubscriptionCommand = exports.se_DeleteAddonInstanceCommand = exports.se_CreateTrafficPolicyCommand = exports.se_CreateRuleSetCommand = exports.se_CreateRelayCommand = exports.se_CreateIngressPointCommand = exports.se_CreateArchiveCommand = exports.se_CreateAddressListImportJobCommand = exports.se_CreateAddressListCommand = exports.se_CreateAddonSubscriptionCommand = exports.se_CreateAddonInstanceCommand = void 0;
|
|
4
|
+
exports.de_ListArchiveSearchesCommand = exports.de_ListArchivesCommand = exports.de_ListArchiveExportsCommand = exports.de_ListAddressListsCommand = exports.de_ListAddressListImportJobsCommand = exports.de_ListAddonSubscriptionsCommand = exports.de_ListAddonInstancesCommand = exports.de_GetTrafficPolicyCommand = exports.de_GetRuleSetCommand = exports.de_GetRelayCommand = exports.de_GetMemberOfAddressListCommand = exports.de_GetIngressPointCommand = exports.de_GetArchiveSearchResultsCommand = exports.de_GetArchiveSearchCommand = exports.de_GetArchiveMessageContentCommand = exports.de_GetArchiveMessageCommand = exports.de_GetArchiveExportCommand = exports.de_GetArchiveCommand = exports.de_GetAddressListImportJobCommand = exports.de_GetAddressListCommand = exports.de_GetAddonSubscriptionCommand = exports.de_GetAddonInstanceCommand = exports.de_DeregisterMemberFromAddressListCommand = exports.de_DeleteTrafficPolicyCommand = exports.de_DeleteRuleSetCommand = exports.de_DeleteRelayCommand = exports.de_DeleteIngressPointCommand = exports.de_DeleteArchiveCommand = exports.de_DeleteAddressListCommand = exports.de_DeleteAddonSubscriptionCommand = exports.de_DeleteAddonInstanceCommand = exports.de_CreateTrafficPolicyCommand = exports.de_CreateRuleSetCommand = exports.de_CreateRelayCommand = exports.de_CreateIngressPointCommand = exports.de_CreateArchiveCommand = exports.de_CreateAddressListImportJobCommand = exports.de_CreateAddressListCommand = exports.de_CreateAddonSubscriptionCommand = exports.de_CreateAddonInstanceCommand = exports.se_UpdateTrafficPolicyCommand = exports.se_UpdateRuleSetCommand = exports.se_UpdateRelayCommand = exports.se_UpdateIngressPointCommand = exports.se_UpdateArchiveCommand = exports.se_UntagResourceCommand = exports.se_TagResourceCommand = exports.se_StopArchiveSearchCommand = exports.se_StopArchiveExportCommand = exports.se_StopAddressListImportJobCommand = void 0;
|
|
5
|
+
exports.de_UpdateTrafficPolicyCommand = exports.de_UpdateRuleSetCommand = exports.de_UpdateRelayCommand = exports.de_UpdateIngressPointCommand = exports.de_UpdateArchiveCommand = exports.de_UntagResourceCommand = exports.de_TagResourceCommand = exports.de_StopArchiveSearchCommand = exports.de_StopArchiveExportCommand = exports.de_StopAddressListImportJobCommand = exports.de_StartArchiveSearchCommand = exports.de_StartArchiveExportCommand = exports.de_StartAddressListImportJobCommand = exports.de_RegisterMemberToAddressListCommand = exports.de_ListTrafficPoliciesCommand = exports.de_ListTagsForResourceCommand = exports.de_ListRuleSetsCommand = exports.de_ListRelaysCommand = exports.de_ListMembersOfAddressListCommand = exports.de_ListIngressPointsCommand = void 0;
|
|
5
6
|
const core_1 = require("@aws-sdk/core");
|
|
6
7
|
const protocol_http_1 = require("@smithy/protocol-http");
|
|
7
8
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
@@ -22,6 +23,20 @@ const se_CreateAddonSubscriptionCommand = async (input, context) => {
|
|
|
22
23
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
23
24
|
};
|
|
24
25
|
exports.se_CreateAddonSubscriptionCommand = se_CreateAddonSubscriptionCommand;
|
|
26
|
+
const se_CreateAddressListCommand = async (input, context) => {
|
|
27
|
+
const headers = sharedHeaders("CreateAddressList");
|
|
28
|
+
let body;
|
|
29
|
+
body = JSON.stringify(se_CreateAddressListRequest(input, context));
|
|
30
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
31
|
+
};
|
|
32
|
+
exports.se_CreateAddressListCommand = se_CreateAddressListCommand;
|
|
33
|
+
const se_CreateAddressListImportJobCommand = async (input, context) => {
|
|
34
|
+
const headers = sharedHeaders("CreateAddressListImportJob");
|
|
35
|
+
let body;
|
|
36
|
+
body = JSON.stringify(se_CreateAddressListImportJobRequest(input, context));
|
|
37
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
38
|
+
};
|
|
39
|
+
exports.se_CreateAddressListImportJobCommand = se_CreateAddressListImportJobCommand;
|
|
25
40
|
const se_CreateArchiveCommand = async (input, context) => {
|
|
26
41
|
const headers = sharedHeaders("CreateArchive");
|
|
27
42
|
let body;
|
|
@@ -71,6 +86,13 @@ const se_DeleteAddonSubscriptionCommand = async (input, context) => {
|
|
|
71
86
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
72
87
|
};
|
|
73
88
|
exports.se_DeleteAddonSubscriptionCommand = se_DeleteAddonSubscriptionCommand;
|
|
89
|
+
const se_DeleteAddressListCommand = async (input, context) => {
|
|
90
|
+
const headers = sharedHeaders("DeleteAddressList");
|
|
91
|
+
let body;
|
|
92
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
93
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
94
|
+
};
|
|
95
|
+
exports.se_DeleteAddressListCommand = se_DeleteAddressListCommand;
|
|
74
96
|
const se_DeleteArchiveCommand = async (input, context) => {
|
|
75
97
|
const headers = sharedHeaders("DeleteArchive");
|
|
76
98
|
let body;
|
|
@@ -106,6 +128,13 @@ const se_DeleteTrafficPolicyCommand = async (input, context) => {
|
|
|
106
128
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
107
129
|
};
|
|
108
130
|
exports.se_DeleteTrafficPolicyCommand = se_DeleteTrafficPolicyCommand;
|
|
131
|
+
const se_DeregisterMemberFromAddressListCommand = async (input, context) => {
|
|
132
|
+
const headers = sharedHeaders("DeregisterMemberFromAddressList");
|
|
133
|
+
let body;
|
|
134
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
135
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
136
|
+
};
|
|
137
|
+
exports.se_DeregisterMemberFromAddressListCommand = se_DeregisterMemberFromAddressListCommand;
|
|
109
138
|
const se_GetAddonInstanceCommand = async (input, context) => {
|
|
110
139
|
const headers = sharedHeaders("GetAddonInstance");
|
|
111
140
|
let body;
|
|
@@ -120,6 +149,20 @@ const se_GetAddonSubscriptionCommand = async (input, context) => {
|
|
|
120
149
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
121
150
|
};
|
|
122
151
|
exports.se_GetAddonSubscriptionCommand = se_GetAddonSubscriptionCommand;
|
|
152
|
+
const se_GetAddressListCommand = async (input, context) => {
|
|
153
|
+
const headers = sharedHeaders("GetAddressList");
|
|
154
|
+
let body;
|
|
155
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
156
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
157
|
+
};
|
|
158
|
+
exports.se_GetAddressListCommand = se_GetAddressListCommand;
|
|
159
|
+
const se_GetAddressListImportJobCommand = async (input, context) => {
|
|
160
|
+
const headers = sharedHeaders("GetAddressListImportJob");
|
|
161
|
+
let body;
|
|
162
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
163
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
164
|
+
};
|
|
165
|
+
exports.se_GetAddressListImportJobCommand = se_GetAddressListImportJobCommand;
|
|
123
166
|
const se_GetArchiveCommand = async (input, context) => {
|
|
124
167
|
const headers = sharedHeaders("GetArchive");
|
|
125
168
|
let body;
|
|
@@ -169,6 +212,13 @@ const se_GetIngressPointCommand = async (input, context) => {
|
|
|
169
212
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
170
213
|
};
|
|
171
214
|
exports.se_GetIngressPointCommand = se_GetIngressPointCommand;
|
|
215
|
+
const se_GetMemberOfAddressListCommand = async (input, context) => {
|
|
216
|
+
const headers = sharedHeaders("GetMemberOfAddressList");
|
|
217
|
+
let body;
|
|
218
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
219
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
220
|
+
};
|
|
221
|
+
exports.se_GetMemberOfAddressListCommand = se_GetMemberOfAddressListCommand;
|
|
172
222
|
const se_GetRelayCommand = async (input, context) => {
|
|
173
223
|
const headers = sharedHeaders("GetRelay");
|
|
174
224
|
let body;
|
|
@@ -204,6 +254,20 @@ const se_ListAddonSubscriptionsCommand = async (input, context) => {
|
|
|
204
254
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
205
255
|
};
|
|
206
256
|
exports.se_ListAddonSubscriptionsCommand = se_ListAddonSubscriptionsCommand;
|
|
257
|
+
const se_ListAddressListImportJobsCommand = async (input, context) => {
|
|
258
|
+
const headers = sharedHeaders("ListAddressListImportJobs");
|
|
259
|
+
let body;
|
|
260
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
261
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
262
|
+
};
|
|
263
|
+
exports.se_ListAddressListImportJobsCommand = se_ListAddressListImportJobsCommand;
|
|
264
|
+
const se_ListAddressListsCommand = async (input, context) => {
|
|
265
|
+
const headers = sharedHeaders("ListAddressLists");
|
|
266
|
+
let body;
|
|
267
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
268
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
269
|
+
};
|
|
270
|
+
exports.se_ListAddressListsCommand = se_ListAddressListsCommand;
|
|
207
271
|
const se_ListArchiveExportsCommand = async (input, context) => {
|
|
208
272
|
const headers = sharedHeaders("ListArchiveExports");
|
|
209
273
|
let body;
|
|
@@ -232,6 +296,13 @@ const se_ListIngressPointsCommand = async (input, context) => {
|
|
|
232
296
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
233
297
|
};
|
|
234
298
|
exports.se_ListIngressPointsCommand = se_ListIngressPointsCommand;
|
|
299
|
+
const se_ListMembersOfAddressListCommand = async (input, context) => {
|
|
300
|
+
const headers = sharedHeaders("ListMembersOfAddressList");
|
|
301
|
+
let body;
|
|
302
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
303
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
304
|
+
};
|
|
305
|
+
exports.se_ListMembersOfAddressListCommand = se_ListMembersOfAddressListCommand;
|
|
235
306
|
const se_ListRelaysCommand = async (input, context) => {
|
|
236
307
|
const headers = sharedHeaders("ListRelays");
|
|
237
308
|
let body;
|
|
@@ -260,6 +331,20 @@ const se_ListTrafficPoliciesCommand = async (input, context) => {
|
|
|
260
331
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
261
332
|
};
|
|
262
333
|
exports.se_ListTrafficPoliciesCommand = se_ListTrafficPoliciesCommand;
|
|
334
|
+
const se_RegisterMemberToAddressListCommand = async (input, context) => {
|
|
335
|
+
const headers = sharedHeaders("RegisterMemberToAddressList");
|
|
336
|
+
let body;
|
|
337
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
338
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
339
|
+
};
|
|
340
|
+
exports.se_RegisterMemberToAddressListCommand = se_RegisterMemberToAddressListCommand;
|
|
341
|
+
const se_StartAddressListImportJobCommand = async (input, context) => {
|
|
342
|
+
const headers = sharedHeaders("StartAddressListImportJob");
|
|
343
|
+
let body;
|
|
344
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
345
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
346
|
+
};
|
|
347
|
+
exports.se_StartAddressListImportJobCommand = se_StartAddressListImportJobCommand;
|
|
263
348
|
const se_StartArchiveExportCommand = async (input, context) => {
|
|
264
349
|
const headers = sharedHeaders("StartArchiveExport");
|
|
265
350
|
let body;
|
|
@@ -274,6 +359,13 @@ const se_StartArchiveSearchCommand = async (input, context) => {
|
|
|
274
359
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
275
360
|
};
|
|
276
361
|
exports.se_StartArchiveSearchCommand = se_StartArchiveSearchCommand;
|
|
362
|
+
const se_StopAddressListImportJobCommand = async (input, context) => {
|
|
363
|
+
const headers = sharedHeaders("StopAddressListImportJob");
|
|
364
|
+
let body;
|
|
365
|
+
body = JSON.stringify((0, smithy_client_1._json)(input));
|
|
366
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
367
|
+
};
|
|
368
|
+
exports.se_StopAddressListImportJobCommand = se_StopAddressListImportJobCommand;
|
|
277
369
|
const se_StopArchiveExportCommand = async (input, context) => {
|
|
278
370
|
const headers = sharedHeaders("StopArchiveExport");
|
|
279
371
|
let body;
|
|
@@ -365,6 +457,34 @@ const de_CreateAddonSubscriptionCommand = async (output, context) => {
|
|
|
365
457
|
return response;
|
|
366
458
|
};
|
|
367
459
|
exports.de_CreateAddonSubscriptionCommand = de_CreateAddonSubscriptionCommand;
|
|
460
|
+
const de_CreateAddressListCommand = async (output, context) => {
|
|
461
|
+
if (output.statusCode >= 300) {
|
|
462
|
+
return de_CommandError(output, context);
|
|
463
|
+
}
|
|
464
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
465
|
+
let contents = {};
|
|
466
|
+
contents = (0, smithy_client_1._json)(data);
|
|
467
|
+
const response = {
|
|
468
|
+
$metadata: deserializeMetadata(output),
|
|
469
|
+
...contents,
|
|
470
|
+
};
|
|
471
|
+
return response;
|
|
472
|
+
};
|
|
473
|
+
exports.de_CreateAddressListCommand = de_CreateAddressListCommand;
|
|
474
|
+
const de_CreateAddressListImportJobCommand = async (output, context) => {
|
|
475
|
+
if (output.statusCode >= 300) {
|
|
476
|
+
return de_CommandError(output, context);
|
|
477
|
+
}
|
|
478
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
479
|
+
let contents = {};
|
|
480
|
+
contents = (0, smithy_client_1._json)(data);
|
|
481
|
+
const response = {
|
|
482
|
+
$metadata: deserializeMetadata(output),
|
|
483
|
+
...contents,
|
|
484
|
+
};
|
|
485
|
+
return response;
|
|
486
|
+
};
|
|
487
|
+
exports.de_CreateAddressListImportJobCommand = de_CreateAddressListImportJobCommand;
|
|
368
488
|
const de_CreateArchiveCommand = async (output, context) => {
|
|
369
489
|
if (output.statusCode >= 300) {
|
|
370
490
|
return de_CommandError(output, context);
|
|
@@ -463,6 +583,20 @@ const de_DeleteAddonSubscriptionCommand = async (output, context) => {
|
|
|
463
583
|
return response;
|
|
464
584
|
};
|
|
465
585
|
exports.de_DeleteAddonSubscriptionCommand = de_DeleteAddonSubscriptionCommand;
|
|
586
|
+
const de_DeleteAddressListCommand = async (output, context) => {
|
|
587
|
+
if (output.statusCode >= 300) {
|
|
588
|
+
return de_CommandError(output, context);
|
|
589
|
+
}
|
|
590
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
591
|
+
let contents = {};
|
|
592
|
+
contents = (0, smithy_client_1._json)(data);
|
|
593
|
+
const response = {
|
|
594
|
+
$metadata: deserializeMetadata(output),
|
|
595
|
+
...contents,
|
|
596
|
+
};
|
|
597
|
+
return response;
|
|
598
|
+
};
|
|
599
|
+
exports.de_DeleteAddressListCommand = de_DeleteAddressListCommand;
|
|
466
600
|
const de_DeleteArchiveCommand = async (output, context) => {
|
|
467
601
|
if (output.statusCode >= 300) {
|
|
468
602
|
return de_CommandError(output, context);
|
|
@@ -533,6 +667,20 @@ const de_DeleteTrafficPolicyCommand = async (output, context) => {
|
|
|
533
667
|
return response;
|
|
534
668
|
};
|
|
535
669
|
exports.de_DeleteTrafficPolicyCommand = de_DeleteTrafficPolicyCommand;
|
|
670
|
+
const de_DeregisterMemberFromAddressListCommand = async (output, context) => {
|
|
671
|
+
if (output.statusCode >= 300) {
|
|
672
|
+
return de_CommandError(output, context);
|
|
673
|
+
}
|
|
674
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
675
|
+
let contents = {};
|
|
676
|
+
contents = (0, smithy_client_1._json)(data);
|
|
677
|
+
const response = {
|
|
678
|
+
$metadata: deserializeMetadata(output),
|
|
679
|
+
...contents,
|
|
680
|
+
};
|
|
681
|
+
return response;
|
|
682
|
+
};
|
|
683
|
+
exports.de_DeregisterMemberFromAddressListCommand = de_DeregisterMemberFromAddressListCommand;
|
|
536
684
|
const de_GetAddonInstanceCommand = async (output, context) => {
|
|
537
685
|
if (output.statusCode >= 300) {
|
|
538
686
|
return de_CommandError(output, context);
|
|
@@ -561,6 +709,34 @@ const de_GetAddonSubscriptionCommand = async (output, context) => {
|
|
|
561
709
|
return response;
|
|
562
710
|
};
|
|
563
711
|
exports.de_GetAddonSubscriptionCommand = de_GetAddonSubscriptionCommand;
|
|
712
|
+
const de_GetAddressListCommand = async (output, context) => {
|
|
713
|
+
if (output.statusCode >= 300) {
|
|
714
|
+
return de_CommandError(output, context);
|
|
715
|
+
}
|
|
716
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
717
|
+
let contents = {};
|
|
718
|
+
contents = de_GetAddressListResponse(data, context);
|
|
719
|
+
const response = {
|
|
720
|
+
$metadata: deserializeMetadata(output),
|
|
721
|
+
...contents,
|
|
722
|
+
};
|
|
723
|
+
return response;
|
|
724
|
+
};
|
|
725
|
+
exports.de_GetAddressListCommand = de_GetAddressListCommand;
|
|
726
|
+
const de_GetAddressListImportJobCommand = async (output, context) => {
|
|
727
|
+
if (output.statusCode >= 300) {
|
|
728
|
+
return de_CommandError(output, context);
|
|
729
|
+
}
|
|
730
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
731
|
+
let contents = {};
|
|
732
|
+
contents = de_GetAddressListImportJobResponse(data, context);
|
|
733
|
+
const response = {
|
|
734
|
+
$metadata: deserializeMetadata(output),
|
|
735
|
+
...contents,
|
|
736
|
+
};
|
|
737
|
+
return response;
|
|
738
|
+
};
|
|
739
|
+
exports.de_GetAddressListImportJobCommand = de_GetAddressListImportJobCommand;
|
|
564
740
|
const de_GetArchiveCommand = async (output, context) => {
|
|
565
741
|
if (output.statusCode >= 300) {
|
|
566
742
|
return de_CommandError(output, context);
|
|
@@ -659,6 +835,20 @@ const de_GetIngressPointCommand = async (output, context) => {
|
|
|
659
835
|
return response;
|
|
660
836
|
};
|
|
661
837
|
exports.de_GetIngressPointCommand = de_GetIngressPointCommand;
|
|
838
|
+
const de_GetMemberOfAddressListCommand = async (output, context) => {
|
|
839
|
+
if (output.statusCode >= 300) {
|
|
840
|
+
return de_CommandError(output, context);
|
|
841
|
+
}
|
|
842
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
843
|
+
let contents = {};
|
|
844
|
+
contents = de_GetMemberOfAddressListResponse(data, context);
|
|
845
|
+
const response = {
|
|
846
|
+
$metadata: deserializeMetadata(output),
|
|
847
|
+
...contents,
|
|
848
|
+
};
|
|
849
|
+
return response;
|
|
850
|
+
};
|
|
851
|
+
exports.de_GetMemberOfAddressListCommand = de_GetMemberOfAddressListCommand;
|
|
662
852
|
const de_GetRelayCommand = async (output, context) => {
|
|
663
853
|
if (output.statusCode >= 300) {
|
|
664
854
|
return de_CommandError(output, context);
|
|
@@ -729,6 +919,34 @@ const de_ListAddonSubscriptionsCommand = async (output, context) => {
|
|
|
729
919
|
return response;
|
|
730
920
|
};
|
|
731
921
|
exports.de_ListAddonSubscriptionsCommand = de_ListAddonSubscriptionsCommand;
|
|
922
|
+
const de_ListAddressListImportJobsCommand = async (output, context) => {
|
|
923
|
+
if (output.statusCode >= 300) {
|
|
924
|
+
return de_CommandError(output, context);
|
|
925
|
+
}
|
|
926
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
927
|
+
let contents = {};
|
|
928
|
+
contents = de_ListAddressListImportJobsResponse(data, context);
|
|
929
|
+
const response = {
|
|
930
|
+
$metadata: deserializeMetadata(output),
|
|
931
|
+
...contents,
|
|
932
|
+
};
|
|
933
|
+
return response;
|
|
934
|
+
};
|
|
935
|
+
exports.de_ListAddressListImportJobsCommand = de_ListAddressListImportJobsCommand;
|
|
936
|
+
const de_ListAddressListsCommand = async (output, context) => {
|
|
937
|
+
if (output.statusCode >= 300) {
|
|
938
|
+
return de_CommandError(output, context);
|
|
939
|
+
}
|
|
940
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
941
|
+
let contents = {};
|
|
942
|
+
contents = de_ListAddressListsResponse(data, context);
|
|
943
|
+
const response = {
|
|
944
|
+
$metadata: deserializeMetadata(output),
|
|
945
|
+
...contents,
|
|
946
|
+
};
|
|
947
|
+
return response;
|
|
948
|
+
};
|
|
949
|
+
exports.de_ListAddressListsCommand = de_ListAddressListsCommand;
|
|
732
950
|
const de_ListArchiveExportsCommand = async (output, context) => {
|
|
733
951
|
if (output.statusCode >= 300) {
|
|
734
952
|
return de_CommandError(output, context);
|
|
@@ -785,6 +1003,20 @@ const de_ListIngressPointsCommand = async (output, context) => {
|
|
|
785
1003
|
return response;
|
|
786
1004
|
};
|
|
787
1005
|
exports.de_ListIngressPointsCommand = de_ListIngressPointsCommand;
|
|
1006
|
+
const de_ListMembersOfAddressListCommand = async (output, context) => {
|
|
1007
|
+
if (output.statusCode >= 300) {
|
|
1008
|
+
return de_CommandError(output, context);
|
|
1009
|
+
}
|
|
1010
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
1011
|
+
let contents = {};
|
|
1012
|
+
contents = de_ListMembersOfAddressListResponse(data, context);
|
|
1013
|
+
const response = {
|
|
1014
|
+
$metadata: deserializeMetadata(output),
|
|
1015
|
+
...contents,
|
|
1016
|
+
};
|
|
1017
|
+
return response;
|
|
1018
|
+
};
|
|
1019
|
+
exports.de_ListMembersOfAddressListCommand = de_ListMembersOfAddressListCommand;
|
|
788
1020
|
const de_ListRelaysCommand = async (output, context) => {
|
|
789
1021
|
if (output.statusCode >= 300) {
|
|
790
1022
|
return de_CommandError(output, context);
|
|
@@ -841,6 +1073,34 @@ const de_ListTrafficPoliciesCommand = async (output, context) => {
|
|
|
841
1073
|
return response;
|
|
842
1074
|
};
|
|
843
1075
|
exports.de_ListTrafficPoliciesCommand = de_ListTrafficPoliciesCommand;
|
|
1076
|
+
const de_RegisterMemberToAddressListCommand = async (output, context) => {
|
|
1077
|
+
if (output.statusCode >= 300) {
|
|
1078
|
+
return de_CommandError(output, context);
|
|
1079
|
+
}
|
|
1080
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
1081
|
+
let contents = {};
|
|
1082
|
+
contents = (0, smithy_client_1._json)(data);
|
|
1083
|
+
const response = {
|
|
1084
|
+
$metadata: deserializeMetadata(output),
|
|
1085
|
+
...contents,
|
|
1086
|
+
};
|
|
1087
|
+
return response;
|
|
1088
|
+
};
|
|
1089
|
+
exports.de_RegisterMemberToAddressListCommand = de_RegisterMemberToAddressListCommand;
|
|
1090
|
+
const de_StartAddressListImportJobCommand = async (output, context) => {
|
|
1091
|
+
if (output.statusCode >= 300) {
|
|
1092
|
+
return de_CommandError(output, context);
|
|
1093
|
+
}
|
|
1094
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
1095
|
+
let contents = {};
|
|
1096
|
+
contents = (0, smithy_client_1._json)(data);
|
|
1097
|
+
const response = {
|
|
1098
|
+
$metadata: deserializeMetadata(output),
|
|
1099
|
+
...contents,
|
|
1100
|
+
};
|
|
1101
|
+
return response;
|
|
1102
|
+
};
|
|
1103
|
+
exports.de_StartAddressListImportJobCommand = de_StartAddressListImportJobCommand;
|
|
844
1104
|
const de_StartArchiveExportCommand = async (output, context) => {
|
|
845
1105
|
if (output.statusCode >= 300) {
|
|
846
1106
|
return de_CommandError(output, context);
|
|
@@ -869,6 +1129,20 @@ const de_StartArchiveSearchCommand = async (output, context) => {
|
|
|
869
1129
|
return response;
|
|
870
1130
|
};
|
|
871
1131
|
exports.de_StartArchiveSearchCommand = de_StartArchiveSearchCommand;
|
|
1132
|
+
const de_StopAddressListImportJobCommand = async (output, context) => {
|
|
1133
|
+
if (output.statusCode >= 300) {
|
|
1134
|
+
return de_CommandError(output, context);
|
|
1135
|
+
}
|
|
1136
|
+
const data = await (0, core_1.parseJsonBody)(output.body, context);
|
|
1137
|
+
let contents = {};
|
|
1138
|
+
contents = (0, smithy_client_1._json)(data);
|
|
1139
|
+
const response = {
|
|
1140
|
+
$metadata: deserializeMetadata(output),
|
|
1141
|
+
...contents,
|
|
1142
|
+
};
|
|
1143
|
+
return response;
|
|
1144
|
+
};
|
|
1145
|
+
exports.de_StopAddressListImportJobCommand = de_StopAddressListImportJobCommand;
|
|
872
1146
|
const de_StopArchiveExportCommand = async (output, context) => {
|
|
873
1147
|
if (output.statusCode >= 300) {
|
|
874
1148
|
return de_CommandError(output, context);
|
|
@@ -1097,6 +1371,21 @@ const se_CreateAddonSubscriptionRequest = (input, context) => {
|
|
|
1097
1371
|
Tags: smithy_client_1._json,
|
|
1098
1372
|
});
|
|
1099
1373
|
};
|
|
1374
|
+
const se_CreateAddressListImportJobRequest = (input, context) => {
|
|
1375
|
+
return (0, smithy_client_1.take)(input, {
|
|
1376
|
+
AddressListId: [],
|
|
1377
|
+
ClientToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
1378
|
+
ImportDataFormat: smithy_client_1._json,
|
|
1379
|
+
Name: [],
|
|
1380
|
+
});
|
|
1381
|
+
};
|
|
1382
|
+
const se_CreateAddressListRequest = (input, context) => {
|
|
1383
|
+
return (0, smithy_client_1.take)(input, {
|
|
1384
|
+
AddressListName: [],
|
|
1385
|
+
ClientToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
1386
|
+
Tags: smithy_client_1._json,
|
|
1387
|
+
});
|
|
1388
|
+
};
|
|
1100
1389
|
const se_CreateArchiveRequest = (input, context) => {
|
|
1101
1390
|
return (0, smithy_client_1.take)(input, {
|
|
1102
1391
|
ArchiveName: [],
|
|
@@ -1245,6 +1534,23 @@ const de_AddonSubscriptions = (output, context) => {
|
|
|
1245
1534
|
});
|
|
1246
1535
|
return retVal;
|
|
1247
1536
|
};
|
|
1537
|
+
const de_AddressList = (output, context) => {
|
|
1538
|
+
return (0, smithy_client_1.take)(output, {
|
|
1539
|
+
AddressListArn: smithy_client_1.expectString,
|
|
1540
|
+
AddressListId: smithy_client_1.expectString,
|
|
1541
|
+
AddressListName: smithy_client_1.expectString,
|
|
1542
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1543
|
+
LastUpdatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1544
|
+
});
|
|
1545
|
+
};
|
|
1546
|
+
const de_AddressLists = (output, context) => {
|
|
1547
|
+
const retVal = (output || [])
|
|
1548
|
+
.filter((e) => e != null)
|
|
1549
|
+
.map((entry) => {
|
|
1550
|
+
return de_AddressList(entry, context);
|
|
1551
|
+
});
|
|
1552
|
+
return retVal;
|
|
1553
|
+
};
|
|
1248
1554
|
const de_Archive = (output, context) => {
|
|
1249
1555
|
return (0, smithy_client_1.take)(output, {
|
|
1250
1556
|
ArchiveId: smithy_client_1.expectString,
|
|
@@ -1298,6 +1604,31 @@ const de_GetAddonSubscriptionResponse = (output, context) => {
|
|
|
1298
1604
|
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1299
1605
|
});
|
|
1300
1606
|
};
|
|
1607
|
+
const de_GetAddressListImportJobResponse = (output, context) => {
|
|
1608
|
+
return (0, smithy_client_1.take)(output, {
|
|
1609
|
+
AddressListId: smithy_client_1.expectString,
|
|
1610
|
+
CompletedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1611
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1612
|
+
Error: smithy_client_1.expectString,
|
|
1613
|
+
FailedItemsCount: smithy_client_1.expectInt32,
|
|
1614
|
+
ImportDataFormat: smithy_client_1._json,
|
|
1615
|
+
ImportedItemsCount: smithy_client_1.expectInt32,
|
|
1616
|
+
JobId: smithy_client_1.expectString,
|
|
1617
|
+
Name: smithy_client_1.expectString,
|
|
1618
|
+
PreSignedUrl: smithy_client_1.expectString,
|
|
1619
|
+
StartTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1620
|
+
Status: smithy_client_1.expectString,
|
|
1621
|
+
});
|
|
1622
|
+
};
|
|
1623
|
+
const de_GetAddressListResponse = (output, context) => {
|
|
1624
|
+
return (0, smithy_client_1.take)(output, {
|
|
1625
|
+
AddressListArn: smithy_client_1.expectString,
|
|
1626
|
+
AddressListId: smithy_client_1.expectString,
|
|
1627
|
+
AddressListName: smithy_client_1.expectString,
|
|
1628
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1629
|
+
LastUpdatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1630
|
+
});
|
|
1631
|
+
};
|
|
1301
1632
|
const de_GetArchiveExportResponse = (output, context) => {
|
|
1302
1633
|
return (0, smithy_client_1.take)(output, {
|
|
1303
1634
|
ArchiveId: smithy_client_1.expectString,
|
|
@@ -1358,6 +1689,12 @@ const de_GetIngressPointResponse = (output, context) => {
|
|
|
1358
1689
|
Type: smithy_client_1.expectString,
|
|
1359
1690
|
});
|
|
1360
1691
|
};
|
|
1692
|
+
const de_GetMemberOfAddressListResponse = (output, context) => {
|
|
1693
|
+
return (0, smithy_client_1.take)(output, {
|
|
1694
|
+
Address: smithy_client_1.expectString,
|
|
1695
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1696
|
+
});
|
|
1697
|
+
};
|
|
1361
1698
|
const de_GetRelayResponse = (output, context) => {
|
|
1362
1699
|
return (0, smithy_client_1.take)(output, {
|
|
1363
1700
|
Authentication: (_) => (0, smithy_client_1._json)((0, core_1.awsExpectUnion)(_)),
|
|
@@ -1392,6 +1729,30 @@ const de_GetTrafficPolicyResponse = (output, context) => {
|
|
|
1392
1729
|
TrafficPolicyName: smithy_client_1.expectString,
|
|
1393
1730
|
});
|
|
1394
1731
|
};
|
|
1732
|
+
const de_ImportJob = (output, context) => {
|
|
1733
|
+
return (0, smithy_client_1.take)(output, {
|
|
1734
|
+
AddressListId: smithy_client_1.expectString,
|
|
1735
|
+
CompletedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1736
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1737
|
+
Error: smithy_client_1.expectString,
|
|
1738
|
+
FailedItemsCount: smithy_client_1.expectInt32,
|
|
1739
|
+
ImportDataFormat: smithy_client_1._json,
|
|
1740
|
+
ImportedItemsCount: smithy_client_1.expectInt32,
|
|
1741
|
+
JobId: smithy_client_1.expectString,
|
|
1742
|
+
Name: smithy_client_1.expectString,
|
|
1743
|
+
PreSignedUrl: smithy_client_1.expectString,
|
|
1744
|
+
StartTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1745
|
+
Status: smithy_client_1.expectString,
|
|
1746
|
+
});
|
|
1747
|
+
};
|
|
1748
|
+
const de_ImportJobs = (output, context) => {
|
|
1749
|
+
const retVal = (output || [])
|
|
1750
|
+
.filter((e) => e != null)
|
|
1751
|
+
.map((entry) => {
|
|
1752
|
+
return de_ImportJob(entry, context);
|
|
1753
|
+
});
|
|
1754
|
+
return retVal;
|
|
1755
|
+
};
|
|
1395
1756
|
const de_IngressPointAuthConfiguration = (output, context) => {
|
|
1396
1757
|
return (0, smithy_client_1.take)(output, {
|
|
1397
1758
|
IngressPointPasswordConfiguration: (_) => de_IngressPointPasswordConfiguration(_, context),
|
|
@@ -1417,6 +1778,18 @@ const de_ListAddonSubscriptionsResponse = (output, context) => {
|
|
|
1417
1778
|
NextToken: smithy_client_1.expectString,
|
|
1418
1779
|
});
|
|
1419
1780
|
};
|
|
1781
|
+
const de_ListAddressListImportJobsResponse = (output, context) => {
|
|
1782
|
+
return (0, smithy_client_1.take)(output, {
|
|
1783
|
+
ImportJobs: (_) => de_ImportJobs(_, context),
|
|
1784
|
+
NextToken: smithy_client_1.expectString,
|
|
1785
|
+
});
|
|
1786
|
+
};
|
|
1787
|
+
const de_ListAddressListsResponse = (output, context) => {
|
|
1788
|
+
return (0, smithy_client_1.take)(output, {
|
|
1789
|
+
AddressLists: (_) => de_AddressLists(_, context),
|
|
1790
|
+
NextToken: smithy_client_1.expectString,
|
|
1791
|
+
});
|
|
1792
|
+
};
|
|
1420
1793
|
const de_ListArchiveExportsResponse = (output, context) => {
|
|
1421
1794
|
return (0, smithy_client_1.take)(output, {
|
|
1422
1795
|
Exports: (_) => de_ExportSummaryList(_, context),
|
|
@@ -1435,6 +1808,12 @@ const de_ListArchivesResponse = (output, context) => {
|
|
|
1435
1808
|
NextToken: smithy_client_1.expectString,
|
|
1436
1809
|
});
|
|
1437
1810
|
};
|
|
1811
|
+
const de_ListMembersOfAddressListResponse = (output, context) => {
|
|
1812
|
+
return (0, smithy_client_1.take)(output, {
|
|
1813
|
+
Addresses: (_) => de_SavedAddresses(_, context),
|
|
1814
|
+
NextToken: smithy_client_1.expectString,
|
|
1815
|
+
});
|
|
1816
|
+
};
|
|
1438
1817
|
const de_ListRelaysResponse = (output, context) => {
|
|
1439
1818
|
return (0, smithy_client_1.take)(output, {
|
|
1440
1819
|
NextToken: smithy_client_1.expectString,
|
|
@@ -1583,6 +1962,20 @@ const de_RuleSets = (output, context) => {
|
|
|
1583
1962
|
});
|
|
1584
1963
|
return retVal;
|
|
1585
1964
|
};
|
|
1965
|
+
const de_SavedAddress = (output, context) => {
|
|
1966
|
+
return (0, smithy_client_1.take)(output, {
|
|
1967
|
+
Address: smithy_client_1.expectString,
|
|
1968
|
+
CreatedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
1969
|
+
});
|
|
1970
|
+
};
|
|
1971
|
+
const de_SavedAddresses = (output, context) => {
|
|
1972
|
+
const retVal = (output || [])
|
|
1973
|
+
.filter((e) => e != null)
|
|
1974
|
+
.map((entry) => {
|
|
1975
|
+
return de_SavedAddress(entry, context);
|
|
1976
|
+
});
|
|
1977
|
+
return retVal;
|
|
1978
|
+
};
|
|
1586
1979
|
const de_SearchStatus = (output, context) => {
|
|
1587
1980
|
return (0, smithy_client_1.take)(output, {
|
|
1588
1981
|
CompletionTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|