@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
package/dist-es/MailManager.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { CreateAddonInstanceCommand, } from "./commands/CreateAddonInstanceCommand";
|
|
3
3
|
import { CreateAddonSubscriptionCommand, } from "./commands/CreateAddonSubscriptionCommand";
|
|
4
|
+
import { CreateAddressListCommand, } from "./commands/CreateAddressListCommand";
|
|
5
|
+
import { CreateAddressListImportJobCommand, } from "./commands/CreateAddressListImportJobCommand";
|
|
4
6
|
import { CreateArchiveCommand, } from "./commands/CreateArchiveCommand";
|
|
5
7
|
import { CreateIngressPointCommand, } from "./commands/CreateIngressPointCommand";
|
|
6
8
|
import { CreateRelayCommand } from "./commands/CreateRelayCommand";
|
|
@@ -8,13 +10,17 @@ import { CreateRuleSetCommand, } from "./commands/CreateRuleSetCommand";
|
|
|
8
10
|
import { CreateTrafficPolicyCommand, } from "./commands/CreateTrafficPolicyCommand";
|
|
9
11
|
import { DeleteAddonInstanceCommand, } from "./commands/DeleteAddonInstanceCommand";
|
|
10
12
|
import { DeleteAddonSubscriptionCommand, } from "./commands/DeleteAddonSubscriptionCommand";
|
|
13
|
+
import { DeleteAddressListCommand, } from "./commands/DeleteAddressListCommand";
|
|
11
14
|
import { DeleteArchiveCommand, } from "./commands/DeleteArchiveCommand";
|
|
12
15
|
import { DeleteIngressPointCommand, } from "./commands/DeleteIngressPointCommand";
|
|
13
16
|
import { DeleteRelayCommand } from "./commands/DeleteRelayCommand";
|
|
14
17
|
import { DeleteRuleSetCommand, } from "./commands/DeleteRuleSetCommand";
|
|
15
18
|
import { DeleteTrafficPolicyCommand, } from "./commands/DeleteTrafficPolicyCommand";
|
|
19
|
+
import { DeregisterMemberFromAddressListCommand, } from "./commands/DeregisterMemberFromAddressListCommand";
|
|
16
20
|
import { GetAddonInstanceCommand, } from "./commands/GetAddonInstanceCommand";
|
|
17
21
|
import { GetAddonSubscriptionCommand, } from "./commands/GetAddonSubscriptionCommand";
|
|
22
|
+
import { GetAddressListCommand, } from "./commands/GetAddressListCommand";
|
|
23
|
+
import { GetAddressListImportJobCommand, } from "./commands/GetAddressListImportJobCommand";
|
|
18
24
|
import { GetArchiveCommand } from "./commands/GetArchiveCommand";
|
|
19
25
|
import { GetArchiveExportCommand, } from "./commands/GetArchiveExportCommand";
|
|
20
26
|
import { GetArchiveMessageCommand, } from "./commands/GetArchiveMessageCommand";
|
|
@@ -22,21 +28,28 @@ import { GetArchiveMessageContentCommand, } from "./commands/GetArchiveMessageCo
|
|
|
22
28
|
import { GetArchiveSearchCommand, } from "./commands/GetArchiveSearchCommand";
|
|
23
29
|
import { GetArchiveSearchResultsCommand, } from "./commands/GetArchiveSearchResultsCommand";
|
|
24
30
|
import { GetIngressPointCommand, } from "./commands/GetIngressPointCommand";
|
|
31
|
+
import { GetMemberOfAddressListCommand, } from "./commands/GetMemberOfAddressListCommand";
|
|
25
32
|
import { GetRelayCommand } from "./commands/GetRelayCommand";
|
|
26
33
|
import { GetRuleSetCommand } from "./commands/GetRuleSetCommand";
|
|
27
34
|
import { GetTrafficPolicyCommand, } from "./commands/GetTrafficPolicyCommand";
|
|
28
35
|
import { ListAddonInstancesCommand, } from "./commands/ListAddonInstancesCommand";
|
|
29
36
|
import { ListAddonSubscriptionsCommand, } from "./commands/ListAddonSubscriptionsCommand";
|
|
37
|
+
import { ListAddressListImportJobsCommand, } from "./commands/ListAddressListImportJobsCommand";
|
|
38
|
+
import { ListAddressListsCommand, } from "./commands/ListAddressListsCommand";
|
|
30
39
|
import { ListArchiveExportsCommand, } from "./commands/ListArchiveExportsCommand";
|
|
31
40
|
import { ListArchivesCommand, } from "./commands/ListArchivesCommand";
|
|
32
41
|
import { ListArchiveSearchesCommand, } from "./commands/ListArchiveSearchesCommand";
|
|
33
42
|
import { ListIngressPointsCommand, } from "./commands/ListIngressPointsCommand";
|
|
43
|
+
import { ListMembersOfAddressListCommand, } from "./commands/ListMembersOfAddressListCommand";
|
|
34
44
|
import { ListRelaysCommand } from "./commands/ListRelaysCommand";
|
|
35
45
|
import { ListRuleSetsCommand, } from "./commands/ListRuleSetsCommand";
|
|
36
46
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
37
47
|
import { ListTrafficPoliciesCommand, } from "./commands/ListTrafficPoliciesCommand";
|
|
48
|
+
import { RegisterMemberToAddressListCommand, } from "./commands/RegisterMemberToAddressListCommand";
|
|
49
|
+
import { StartAddressListImportJobCommand, } from "./commands/StartAddressListImportJobCommand";
|
|
38
50
|
import { StartArchiveExportCommand, } from "./commands/StartArchiveExportCommand";
|
|
39
51
|
import { StartArchiveSearchCommand, } from "./commands/StartArchiveSearchCommand";
|
|
52
|
+
import { StopAddressListImportJobCommand, } from "./commands/StopAddressListImportJobCommand";
|
|
40
53
|
import { StopArchiveExportCommand, } from "./commands/StopArchiveExportCommand";
|
|
41
54
|
import { StopArchiveSearchCommand, } from "./commands/StopArchiveSearchCommand";
|
|
42
55
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
@@ -50,6 +63,8 @@ import { MailManagerClient } from "./MailManagerClient";
|
|
|
50
63
|
const commands = {
|
|
51
64
|
CreateAddonInstanceCommand,
|
|
52
65
|
CreateAddonSubscriptionCommand,
|
|
66
|
+
CreateAddressListCommand,
|
|
67
|
+
CreateAddressListImportJobCommand,
|
|
53
68
|
CreateArchiveCommand,
|
|
54
69
|
CreateIngressPointCommand,
|
|
55
70
|
CreateRelayCommand,
|
|
@@ -57,13 +72,17 @@ const commands = {
|
|
|
57
72
|
CreateTrafficPolicyCommand,
|
|
58
73
|
DeleteAddonInstanceCommand,
|
|
59
74
|
DeleteAddonSubscriptionCommand,
|
|
75
|
+
DeleteAddressListCommand,
|
|
60
76
|
DeleteArchiveCommand,
|
|
61
77
|
DeleteIngressPointCommand,
|
|
62
78
|
DeleteRelayCommand,
|
|
63
79
|
DeleteRuleSetCommand,
|
|
64
80
|
DeleteTrafficPolicyCommand,
|
|
81
|
+
DeregisterMemberFromAddressListCommand,
|
|
65
82
|
GetAddonInstanceCommand,
|
|
66
83
|
GetAddonSubscriptionCommand,
|
|
84
|
+
GetAddressListCommand,
|
|
85
|
+
GetAddressListImportJobCommand,
|
|
67
86
|
GetArchiveCommand,
|
|
68
87
|
GetArchiveExportCommand,
|
|
69
88
|
GetArchiveMessageCommand,
|
|
@@ -71,21 +90,28 @@ const commands = {
|
|
|
71
90
|
GetArchiveSearchCommand,
|
|
72
91
|
GetArchiveSearchResultsCommand,
|
|
73
92
|
GetIngressPointCommand,
|
|
93
|
+
GetMemberOfAddressListCommand,
|
|
74
94
|
GetRelayCommand,
|
|
75
95
|
GetRuleSetCommand,
|
|
76
96
|
GetTrafficPolicyCommand,
|
|
77
97
|
ListAddonInstancesCommand,
|
|
78
98
|
ListAddonSubscriptionsCommand,
|
|
99
|
+
ListAddressListImportJobsCommand,
|
|
100
|
+
ListAddressListsCommand,
|
|
79
101
|
ListArchiveExportsCommand,
|
|
80
102
|
ListArchivesCommand,
|
|
81
103
|
ListArchiveSearchesCommand,
|
|
82
104
|
ListIngressPointsCommand,
|
|
105
|
+
ListMembersOfAddressListCommand,
|
|
83
106
|
ListRelaysCommand,
|
|
84
107
|
ListRuleSetsCommand,
|
|
85
108
|
ListTagsForResourceCommand,
|
|
86
109
|
ListTrafficPoliciesCommand,
|
|
110
|
+
RegisterMemberToAddressListCommand,
|
|
111
|
+
StartAddressListImportJobCommand,
|
|
87
112
|
StartArchiveExportCommand,
|
|
88
113
|
StartArchiveSearchCommand,
|
|
114
|
+
StopAddressListImportJobCommand,
|
|
89
115
|
StopArchiveExportCommand,
|
|
90
116
|
StopArchiveSearchCommand,
|
|
91
117
|
TagResourceCommand,
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateAddonInstanceRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_CreateAddonInstanceCommand, se_CreateAddonInstanceCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class CreateAddonInstanceCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class CreateAddonInstanceCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "CreateAddonInstance", {})
|
|
18
17
|
.n("MailManagerClient", "CreateAddonInstanceCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_CreateAddonInstanceCommand)
|
|
21
20
|
.de(de_CreateAddonInstanceCommand)
|
|
22
21
|
.build() {
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateAddonSubscriptionRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_CreateAddonSubscriptionCommand, se_CreateAddonSubscriptionCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class CreateAddonSubscriptionCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class CreateAddonSubscriptionCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "CreateAddonSubscription", {})
|
|
18
17
|
.n("MailManagerClient", "CreateAddonSubscriptionCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_CreateAddonSubscriptionCommand)
|
|
21
20
|
.de(de_CreateAddonSubscriptionCommand)
|
|
22
21
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateAddressListCommand, se_CreateAddressListCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateAddressListCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "CreateAddressList", {})
|
|
17
|
+
.n("MailManagerClient", "CreateAddressListCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_CreateAddressListCommand)
|
|
20
|
+
.de(de_CreateAddressListCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateAddressListImportJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateAddressListImportJobCommand, se_CreateAddressListImportJobCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateAddressListImportJobCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "CreateAddressListImportJob", {})
|
|
18
|
+
.n("MailManagerClient", "CreateAddressListImportJobCommand")
|
|
19
|
+
.f(void 0, CreateAddressListImportJobResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_CreateAddressListImportJobCommand)
|
|
21
|
+
.de(de_CreateAddressListImportJobCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateArchiveRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_CreateArchiveCommand, se_CreateArchiveCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class CreateArchiveCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class CreateArchiveCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "CreateArchive", {})
|
|
18
17
|
.n("MailManagerClient", "CreateArchiveCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_CreateArchiveCommand)
|
|
21
20
|
.de(de_CreateArchiveCommand)
|
|
22
21
|
.build() {
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateRelayRequestFilterSensitiveLog } from "../models/models_0";
|
|
6
5
|
import { de_CreateRelayCommand, se_CreateRelayCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class CreateRelayCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class CreateRelayCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "CreateRelay", {})
|
|
18
17
|
.n("MailManagerClient", "CreateRelayCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_CreateRelayCommand)
|
|
21
20
|
.de(de_CreateRelayCommand)
|
|
22
21
|
.build() {
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateTrafficPolicyRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_CreateTrafficPolicyCommand, se_CreateTrafficPolicyCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class CreateTrafficPolicyCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class CreateTrafficPolicyCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "CreateTrafficPolicy", {})
|
|
18
17
|
.n("MailManagerClient", "CreateTrafficPolicyCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_CreateTrafficPolicyCommand)
|
|
21
20
|
.de(de_CreateTrafficPolicyCommand)
|
|
22
21
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteAddressListCommand, se_DeleteAddressListCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteAddressListCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "DeleteAddressList", {})
|
|
17
|
+
.n("MailManagerClient", "DeleteAddressListCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteAddressListCommand)
|
|
20
|
+
.de(de_DeleteAddressListCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { DeregisterMemberFromAddressListRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_DeregisterMemberFromAddressListCommand, se_DeregisterMemberFromAddressListCommand, } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class DeregisterMemberFromAddressListCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "DeregisterMemberFromAddressList", {})
|
|
18
|
+
.n("MailManagerClient", "DeregisterMemberFromAddressListCommand")
|
|
19
|
+
.f(DeregisterMemberFromAddressListRequestFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_DeregisterMemberFromAddressListCommand)
|
|
21
|
+
.de(de_DeregisterMemberFromAddressListCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetAddressListCommand, se_GetAddressListCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetAddressListCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "GetAddressList", {})
|
|
17
|
+
.n("MailManagerClient", "GetAddressListCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetAddressListCommand)
|
|
20
|
+
.de(de_GetAddressListCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetAddressListImportJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetAddressListImportJobCommand, se_GetAddressListImportJobCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetAddressListImportJobCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "GetAddressListImportJob", {})
|
|
18
|
+
.n("MailManagerClient", "GetAddressListImportJobCommand")
|
|
19
|
+
.f(void 0, GetAddressListImportJobResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetAddressListImportJobCommand)
|
|
21
|
+
.de(de_GetAddressListImportJobCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetMemberOfAddressListRequestFilterSensitiveLog, GetMemberOfAddressListResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetMemberOfAddressListCommand, se_GetMemberOfAddressListCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetMemberOfAddressListCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "GetMemberOfAddressList", {})
|
|
18
|
+
.n("MailManagerClient", "GetMemberOfAddressListCommand")
|
|
19
|
+
.f(GetMemberOfAddressListRequestFilterSensitiveLog, GetMemberOfAddressListResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetMemberOfAddressListCommand)
|
|
21
|
+
.de(de_GetMemberOfAddressListCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListAddressListImportJobsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListAddressListImportJobsCommand, se_ListAddressListImportJobsCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListAddressListImportJobsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "ListAddressListImportJobs", {})
|
|
18
|
+
.n("MailManagerClient", "ListAddressListImportJobsCommand")
|
|
19
|
+
.f(void 0, ListAddressListImportJobsResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListAddressListImportJobsCommand)
|
|
21
|
+
.de(de_ListAddressListImportJobsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListAddressListsCommand, se_ListAddressListsCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListAddressListsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "ListAddressLists", {})
|
|
17
|
+
.n("MailManagerClient", "ListAddressListsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListAddressListsCommand)
|
|
20
|
+
.de(de_ListAddressListsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListMembersOfAddressListRequestFilterSensitiveLog, ListMembersOfAddressListResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListMembersOfAddressListCommand, se_ListMembersOfAddressListCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListMembersOfAddressListCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "ListMembersOfAddressList", {})
|
|
18
|
+
.n("MailManagerClient", "ListMembersOfAddressListCommand")
|
|
19
|
+
.f(ListMembersOfAddressListRequestFilterSensitiveLog, ListMembersOfAddressListResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListMembersOfAddressListCommand)
|
|
21
|
+
.de(de_ListMembersOfAddressListCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class ListTagsForResourceCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "ListTagsForResource", {})
|
|
18
17
|
.n("MailManagerClient", "ListTagsForResourceCommand")
|
|
19
|
-
.f(void 0,
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_ListTagsForResourceCommand)
|
|
21
20
|
.de(de_ListTagsForResourceCommand)
|
|
22
21
|
.build() {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { RegisterMemberToAddressListRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_RegisterMemberToAddressListCommand, se_RegisterMemberToAddressListCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class RegisterMemberToAddressListCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("MailManagerSvc", "RegisterMemberToAddressList", {})
|
|
18
|
+
.n("MailManagerClient", "RegisterMemberToAddressListCommand")
|
|
19
|
+
.f(RegisterMemberToAddressListRequestFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_RegisterMemberToAddressListCommand)
|
|
21
|
+
.de(de_RegisterMemberToAddressListCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StartAddressListImportJobCommand, se_StartAddressListImportJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StartAddressListImportJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "StartAddressListImportJob", {})
|
|
17
|
+
.n("MailManagerClient", "StartAddressListImportJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StartAddressListImportJobCommand)
|
|
20
|
+
.de(de_StartAddressListImportJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StopAddressListImportJobCommand, se_StopAddressListImportJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StopAddressListImportJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("MailManagerSvc", "StopAddressListImportJob", {})
|
|
17
|
+
.n("MailManagerClient", "StopAddressListImportJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StopAddressListImportJobCommand)
|
|
20
|
+
.de(de_StopAddressListImportJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
6
5
|
import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class TagResourceCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class TagResourceCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "TagResource", {})
|
|
18
17
|
.n("MailManagerClient", "TagResourceCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_TagResourceCommand)
|
|
21
20
|
.de(de_TagResourceCommand)
|
|
22
21
|
.build() {
|
|
@@ -2,7 +2,6 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { UntagResourceRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
5
|
import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_0";
|
|
7
6
|
export { $Command };
|
|
8
7
|
export class UntagResourceCommand extends $Command
|
|
@@ -16,7 +15,7 @@ export class UntagResourceCommand extends $Command
|
|
|
16
15
|
})
|
|
17
16
|
.s("MailManagerSvc", "UntagResource", {})
|
|
18
17
|
.n("MailManagerClient", "UntagResourceCommand")
|
|
19
|
-
.f(
|
|
18
|
+
.f(void 0, void 0)
|
|
20
19
|
.ser(se_UntagResourceCommand)
|
|
21
20
|
.de(de_UntagResourceCommand)
|
|
22
21
|
.build() {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./CreateAddonInstanceCommand";
|
|
2
2
|
export * from "./CreateAddonSubscriptionCommand";
|
|
3
|
+
export * from "./CreateAddressListCommand";
|
|
4
|
+
export * from "./CreateAddressListImportJobCommand";
|
|
3
5
|
export * from "./CreateArchiveCommand";
|
|
4
6
|
export * from "./CreateIngressPointCommand";
|
|
5
7
|
export * from "./CreateRelayCommand";
|
|
@@ -7,13 +9,17 @@ export * from "./CreateRuleSetCommand";
|
|
|
7
9
|
export * from "./CreateTrafficPolicyCommand";
|
|
8
10
|
export * from "./DeleteAddonInstanceCommand";
|
|
9
11
|
export * from "./DeleteAddonSubscriptionCommand";
|
|
12
|
+
export * from "./DeleteAddressListCommand";
|
|
10
13
|
export * from "./DeleteArchiveCommand";
|
|
11
14
|
export * from "./DeleteIngressPointCommand";
|
|
12
15
|
export * from "./DeleteRelayCommand";
|
|
13
16
|
export * from "./DeleteRuleSetCommand";
|
|
14
17
|
export * from "./DeleteTrafficPolicyCommand";
|
|
18
|
+
export * from "./DeregisterMemberFromAddressListCommand";
|
|
15
19
|
export * from "./GetAddonInstanceCommand";
|
|
16
20
|
export * from "./GetAddonSubscriptionCommand";
|
|
21
|
+
export * from "./GetAddressListCommand";
|
|
22
|
+
export * from "./GetAddressListImportJobCommand";
|
|
17
23
|
export * from "./GetArchiveCommand";
|
|
18
24
|
export * from "./GetArchiveExportCommand";
|
|
19
25
|
export * from "./GetArchiveMessageCommand";
|
|
@@ -21,21 +27,28 @@ export * from "./GetArchiveMessageContentCommand";
|
|
|
21
27
|
export * from "./GetArchiveSearchCommand";
|
|
22
28
|
export * from "./GetArchiveSearchResultsCommand";
|
|
23
29
|
export * from "./GetIngressPointCommand";
|
|
30
|
+
export * from "./GetMemberOfAddressListCommand";
|
|
24
31
|
export * from "./GetRelayCommand";
|
|
25
32
|
export * from "./GetRuleSetCommand";
|
|
26
33
|
export * from "./GetTrafficPolicyCommand";
|
|
27
34
|
export * from "./ListAddonInstancesCommand";
|
|
28
35
|
export * from "./ListAddonSubscriptionsCommand";
|
|
36
|
+
export * from "./ListAddressListImportJobsCommand";
|
|
37
|
+
export * from "./ListAddressListsCommand";
|
|
29
38
|
export * from "./ListArchiveExportsCommand";
|
|
30
39
|
export * from "./ListArchiveSearchesCommand";
|
|
31
40
|
export * from "./ListArchivesCommand";
|
|
32
41
|
export * from "./ListIngressPointsCommand";
|
|
42
|
+
export * from "./ListMembersOfAddressListCommand";
|
|
33
43
|
export * from "./ListRelaysCommand";
|
|
34
44
|
export * from "./ListRuleSetsCommand";
|
|
35
45
|
export * from "./ListTagsForResourceCommand";
|
|
36
46
|
export * from "./ListTrafficPoliciesCommand";
|
|
47
|
+
export * from "./RegisterMemberToAddressListCommand";
|
|
48
|
+
export * from "./StartAddressListImportJobCommand";
|
|
37
49
|
export * from "./StartArchiveExportCommand";
|
|
38
50
|
export * from "./StartArchiveSearchCommand";
|
|
51
|
+
export * from "./StopAddressListImportJobCommand";
|
|
39
52
|
export * from "./StopArchiveExportCommand";
|
|
40
53
|
export * from "./StopArchiveSearchCommand";
|
|
41
54
|
export * from "./TagResourceCommand";
|