@aws-sdk/client-mailmanager 3.581.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/LICENSE +201 -0
- package/README.md +589 -0
- package/dist-cjs/MailManager.js +105 -0
- package/dist-cjs/MailManagerClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateAddonInstanceCommand.js +29 -0
- package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +29 -0
- package/dist-cjs/commands/CreateArchiveCommand.js +29 -0
- package/dist-cjs/commands/CreateIngressPointCommand.js +29 -0
- package/dist-cjs/commands/CreateRelayCommand.js +29 -0
- package/dist-cjs/commands/CreateRuleSetCommand.js +29 -0
- package/dist-cjs/commands/CreateTrafficPolicyCommand.js +29 -0
- package/dist-cjs/commands/DeleteAddonInstanceCommand.js +28 -0
- package/dist-cjs/commands/DeleteAddonSubscriptionCommand.js +28 -0
- package/dist-cjs/commands/DeleteArchiveCommand.js +28 -0
- package/dist-cjs/commands/DeleteIngressPointCommand.js +28 -0
- package/dist-cjs/commands/DeleteRelayCommand.js +28 -0
- package/dist-cjs/commands/DeleteRuleSetCommand.js +28 -0
- package/dist-cjs/commands/DeleteTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/GetAddonInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetAddonSubscriptionCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveMessageCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveMessageContentCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/GetArchiveSearchResultsCommand.js +28 -0
- package/dist-cjs/commands/GetIngressPointCommand.js +28 -0
- package/dist-cjs/commands/GetRelayCommand.js +28 -0
- package/dist-cjs/commands/GetRuleSetCommand.js +29 -0
- package/dist-cjs/commands/GetTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/ListAddonInstancesCommand.js +28 -0
- package/dist-cjs/commands/ListAddonSubscriptionsCommand.js +28 -0
- package/dist-cjs/commands/ListArchiveExportsCommand.js +28 -0
- package/dist-cjs/commands/ListArchiveSearchesCommand.js +28 -0
- package/dist-cjs/commands/ListArchivesCommand.js +28 -0
- package/dist-cjs/commands/ListIngressPointsCommand.js +28 -0
- package/dist-cjs/commands/ListRelaysCommand.js +28 -0
- package/dist-cjs/commands/ListRuleSetsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
- package/dist-cjs/commands/ListTrafficPoliciesCommand.js +28 -0
- package/dist-cjs/commands/StartArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/StartArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/StopArchiveExportCommand.js +28 -0
- package/dist-cjs/commands/StopArchiveSearchCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +29 -0
- package/dist-cjs/commands/UntagResourceCommand.js +29 -0
- package/dist-cjs/commands/UpdateArchiveCommand.js +28 -0
- package/dist-cjs/commands/UpdateIngressPointCommand.js +29 -0
- package/dist-cjs/commands/UpdateRelayCommand.js +28 -0
- package/dist-cjs/commands/UpdateRuleSetCommand.js +29 -0
- package/dist-cjs/commands/UpdateTrafficPolicyCommand.js +28 -0
- package/dist-cjs/commands/index.js +50 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/MailManagerServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +582 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAddonInstancesPaginator.js +7 -0
- package/dist-cjs/pagination/ListAddonSubscriptionsPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchiveExportsPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchiveSearchesPaginator.js +7 -0
- package/dist-cjs/pagination/ListArchivesPaginator.js +7 -0
- package/dist-cjs/pagination/ListIngressPointsPaginator.js +7 -0
- package/dist-cjs/pagination/ListRelaysPaginator.js +7 -0
- package/dist-cjs/pagination/ListRuleSetsPaginator.js +7 -0
- package/dist-cjs/pagination/ListTrafficPoliciesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +13 -0
- package/dist-cjs/protocols/Aws_json1_0.js +1615 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/MailManager.js +101 -0
- package/dist-es/MailManagerClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateAddonInstanceCommand.js +25 -0
- package/dist-es/commands/CreateAddonSubscriptionCommand.js +25 -0
- package/dist-es/commands/CreateArchiveCommand.js +25 -0
- package/dist-es/commands/CreateIngressPointCommand.js +25 -0
- package/dist-es/commands/CreateRelayCommand.js +25 -0
- package/dist-es/commands/CreateRuleSetCommand.js +25 -0
- package/dist-es/commands/CreateTrafficPolicyCommand.js +25 -0
- package/dist-es/commands/DeleteAddonInstanceCommand.js +24 -0
- package/dist-es/commands/DeleteAddonSubscriptionCommand.js +24 -0
- package/dist-es/commands/DeleteArchiveCommand.js +24 -0
- package/dist-es/commands/DeleteIngressPointCommand.js +24 -0
- package/dist-es/commands/DeleteRelayCommand.js +24 -0
- package/dist-es/commands/DeleteRuleSetCommand.js +24 -0
- package/dist-es/commands/DeleteTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/GetAddonInstanceCommand.js +24 -0
- package/dist-es/commands/GetAddonSubscriptionCommand.js +24 -0
- package/dist-es/commands/GetArchiveCommand.js +24 -0
- package/dist-es/commands/GetArchiveExportCommand.js +24 -0
- package/dist-es/commands/GetArchiveMessageCommand.js +24 -0
- package/dist-es/commands/GetArchiveMessageContentCommand.js +24 -0
- package/dist-es/commands/GetArchiveSearchCommand.js +24 -0
- package/dist-es/commands/GetArchiveSearchResultsCommand.js +24 -0
- package/dist-es/commands/GetIngressPointCommand.js +24 -0
- package/dist-es/commands/GetRelayCommand.js +24 -0
- package/dist-es/commands/GetRuleSetCommand.js +25 -0
- package/dist-es/commands/GetTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/ListAddonInstancesCommand.js +24 -0
- package/dist-es/commands/ListAddonSubscriptionsCommand.js +24 -0
- package/dist-es/commands/ListArchiveExportsCommand.js +24 -0
- package/dist-es/commands/ListArchiveSearchesCommand.js +24 -0
- package/dist-es/commands/ListArchivesCommand.js +24 -0
- package/dist-es/commands/ListIngressPointsCommand.js +24 -0
- package/dist-es/commands/ListRelaysCommand.js +24 -0
- package/dist-es/commands/ListRuleSetsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
- package/dist-es/commands/ListTrafficPoliciesCommand.js +24 -0
- package/dist-es/commands/StartArchiveExportCommand.js +24 -0
- package/dist-es/commands/StartArchiveSearchCommand.js +24 -0
- package/dist-es/commands/StopArchiveExportCommand.js +24 -0
- package/dist-es/commands/StopArchiveSearchCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +25 -0
- package/dist-es/commands/UntagResourceCommand.js +25 -0
- package/dist-es/commands/UpdateArchiveCommand.js +24 -0
- package/dist-es/commands/UpdateIngressPointCommand.js +25 -0
- package/dist-es/commands/UpdateRelayCommand.js +24 -0
- package/dist-es/commands/UpdateRuleSetCommand.js +25 -0
- package/dist-es/commands/UpdateTrafficPolicyCommand.js +24 -0
- package/dist-es/commands/index.js +47 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/MailManagerServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +554 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAddonInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListAddonSubscriptionsPaginator.js +4 -0
- package/dist-es/pagination/ListArchiveExportsPaginator.js +4 -0
- package/dist-es/pagination/ListArchiveSearchesPaginator.js +4 -0
- package/dist-es/pagination/ListArchivesPaginator.js +4 -0
- package/dist-es/pagination/ListIngressPointsPaginator.js +4 -0
- package/dist-es/pagination/ListRelaysPaginator.js +4 -0
- package/dist-es/pagination/ListRuleSetsPaginator.js +4 -0
- package/dist-es/pagination/ListTrafficPoliciesPaginator.js +4 -0
- package/dist-es/pagination/index.js +10 -0
- package/dist-es/protocols/Aws_json1_0.js +1517 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/MailManager.d.ts +353 -0
- package/dist-types/MailManagerClient.d.ts +225 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateAddonInstanceCommand.d.ts +80 -0
- package/dist-types/commands/CreateAddonSubscriptionCommand.d.ts +77 -0
- package/dist-types/commands/CreateArchiveCommand.d.ts +85 -0
- package/dist-types/commands/CreateIngressPointCommand.d.ts +82 -0
- package/dist-types/commands/CreateRelayCommand.d.ts +82 -0
- package/dist-types/commands/CreateRuleSetCommand.d.ts +227 -0
- package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +120 -0
- package/dist-types/commands/DeleteAddonInstanceCommand.d.ts +63 -0
- package/dist-types/commands/DeleteAddonSubscriptionCommand.d.ts +63 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +73 -0
- package/dist-types/commands/DeleteIngressPointCommand.d.ts +66 -0
- package/dist-types/commands/DeleteRelayCommand.d.ts +66 -0
- package/dist-types/commands/DeleteRuleSetCommand.d.ts +63 -0
- package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +66 -0
- package/dist-types/commands/GetAddonInstanceCommand.d.ts +68 -0
- package/dist-types/commands/GetAddonSubscriptionCommand.d.ts +67 -0
- package/dist-types/commands/GetArchiveCommand.d.ts +80 -0
- package/dist-types/commands/GetArchiveExportCommand.d.ts +122 -0
- package/dist-types/commands/GetArchiveMessageCommand.d.ts +70 -0
- package/dist-types/commands/GetArchiveMessageContentCommand.d.ts +74 -0
- package/dist-types/commands/GetArchiveSearchCommand.d.ts +117 -0
- package/dist-types/commands/GetArchiveSearchResultsCommand.d.ts +90 -0
- package/dist-types/commands/GetIngressPointCommand.d.ts +82 -0
- package/dist-types/commands/GetRelayCommand.d.ts +75 -0
- package/dist-types/commands/GetRuleSetCommand.d.ts +221 -0
- package/dist-types/commands/GetTrafficPolicyCommand.d.ts +114 -0
- package/dist-types/commands/ListAddonInstancesCommand.d.ts +72 -0
- package/dist-types/commands/ListAddonSubscriptionsCommand.d.ts +71 -0
- package/dist-types/commands/ListArchiveExportsCommand.d.ts +84 -0
- package/dist-types/commands/ListArchiveSearchesCommand.d.ts +84 -0
- package/dist-types/commands/ListArchivesCommand.d.ts +77 -0
- package/dist-types/commands/ListIngressPointsCommand.d.ts +72 -0
- package/dist-types/commands/ListRelaysCommand.d.ts +70 -0
- package/dist-types/commands/ListRuleSetsCommand.d.ts +70 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +70 -0
- package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +70 -0
- package/dist-types/commands/StartArchiveExportCommand.d.ts +122 -0
- package/dist-types/commands/StartArchiveSearchCommand.d.ts +120 -0
- package/dist-types/commands/StopArchiveExportCommand.d.ts +66 -0
- package/dist-types/commands/StopArchiveSearchCommand.d.ts +66 -0
- package/dist-types/commands/TagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
- package/dist-types/commands/UpdateArchiveCommand.d.ts +79 -0
- package/dist-types/commands/UpdateIngressPointCommand.d.ts +74 -0
- package/dist-types/commands/UpdateRelayCommand.d.ts +73 -0
- package/dist-types/commands/UpdateRuleSetCommand.d.ts +219 -0
- package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +112 -0
- package/dist-types/commands/index.d.ts +47 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +21 -0
- package/dist-types/models/MailManagerServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4046 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAddonInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAddonSubscriptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchiveExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchiveSearchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArchivesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIngressPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRelaysPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRuleSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrafficPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +10 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +425 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/MailManager.d.ts +813 -0
- package/dist-types/ts3.4/MailManagerClient.d.ts +402 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAddonInstanceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAddonInstanceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetAddonInstanceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAddonSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetArchiveExportCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetArchiveMessageCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveMessageContentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetArchiveSearchCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetArchiveSearchResultsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIngressPointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetRuleSetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAddonInstancesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAddonSubscriptionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchiveExportsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchiveSearchesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIngressPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRelaysCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListRuleSetsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartArchiveExportCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartArchiveSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StopArchiveExportCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StopArchiveSearchCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateIngressPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRelayCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateRuleSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTrafficPolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +47 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/MailManagerServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1514 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAddonInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAddonSubscriptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchiveExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchiveSearchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArchivesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIngressPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRelaysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRuleSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrafficPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +569 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +103 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteTrafficPolicyCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class DeleteTrafficPolicyCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "DeleteTrafficPolicy", {})
|
|
22
|
+
.n("MailManagerClient", "DeleteTrafficPolicyCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_DeleteTrafficPolicyCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_DeleteTrafficPolicyCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.DeleteTrafficPolicyCommand = DeleteTrafficPolicyCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAddonInstanceCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetAddonInstanceCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetAddonInstance", {})
|
|
22
|
+
.n("MailManagerClient", "GetAddonInstanceCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetAddonInstanceCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetAddonInstanceCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetAddonInstanceCommand = GetAddonInstanceCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAddonSubscriptionCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetAddonSubscriptionCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetAddonSubscription", {})
|
|
22
|
+
.n("MailManagerClient", "GetAddonSubscriptionCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetAddonSubscriptionCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetAddonSubscriptionCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetAddonSubscriptionCommand = GetAddonSubscriptionCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchive", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveCommand = GetArchiveCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveExportCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveExportCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchiveExport", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveExportCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveExportCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveExportCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveExportCommand = GetArchiveExportCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveMessageCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveMessageCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchiveMessage", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveMessageCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveMessageCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveMessageCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveMessageCommand = GetArchiveMessageCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveMessageContentCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveMessageContentCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchiveMessageContent", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveMessageContentCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveMessageContentCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveMessageContentCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveMessageContentCommand = GetArchiveMessageContentCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveSearchCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveSearchCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchiveSearch", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveSearchCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveSearchCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveSearchCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveSearchCommand = GetArchiveSearchCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetArchiveSearchResultsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetArchiveSearchResultsCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetArchiveSearchResults", {})
|
|
22
|
+
.n("MailManagerClient", "GetArchiveSearchResultsCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetArchiveSearchResultsCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetArchiveSearchResultsCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetArchiveSearchResultsCommand = GetArchiveSearchResultsCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetIngressPointCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetIngressPointCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetIngressPoint", {})
|
|
22
|
+
.n("MailManagerClient", "GetIngressPointCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetIngressPointCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetIngressPointCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetIngressPointCommand = GetIngressPointCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetRelayCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetRelayCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetRelay", {})
|
|
22
|
+
.n("MailManagerClient", "GetRelayCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetRelayCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetRelayCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetRelayCommand = GetRelayCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetRuleSetCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
|
+
class GetRuleSetCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("MailManagerSvc", "GetRuleSet", {})
|
|
23
|
+
.n("MailManagerClient", "GetRuleSetCommand")
|
|
24
|
+
.f(void 0, models_0_1.GetRuleSetResponseFilterSensitiveLog)
|
|
25
|
+
.ser(Aws_json1_0_1.se_GetRuleSetCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_GetRuleSetCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.GetRuleSetCommand = GetRuleSetCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetTrafficPolicyCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class GetTrafficPolicyCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "GetTrafficPolicy", {})
|
|
22
|
+
.n("MailManagerClient", "GetTrafficPolicyCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_GetTrafficPolicyCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_GetTrafficPolicyCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.GetTrafficPolicyCommand = GetTrafficPolicyCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListAddonInstancesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListAddonInstancesCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListAddonInstances", {})
|
|
22
|
+
.n("MailManagerClient", "ListAddonInstancesCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListAddonInstancesCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListAddonInstancesCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListAddonInstancesCommand = ListAddonInstancesCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListAddonSubscriptionsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListAddonSubscriptionsCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListAddonSubscriptions", {})
|
|
22
|
+
.n("MailManagerClient", "ListAddonSubscriptionsCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListAddonSubscriptionsCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListAddonSubscriptionsCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListAddonSubscriptionsCommand = ListAddonSubscriptionsCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListArchiveExportsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListArchiveExportsCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListArchiveExports", {})
|
|
22
|
+
.n("MailManagerClient", "ListArchiveExportsCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListArchiveExportsCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListArchiveExportsCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListArchiveExportsCommand = ListArchiveExportsCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListArchiveSearchesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListArchiveSearchesCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListArchiveSearches", {})
|
|
22
|
+
.n("MailManagerClient", "ListArchiveSearchesCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListArchiveSearchesCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListArchiveSearchesCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListArchiveSearchesCommand = ListArchiveSearchesCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListArchivesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListArchivesCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListArchives", {})
|
|
22
|
+
.n("MailManagerClient", "ListArchivesCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListArchivesCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListArchivesCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListArchivesCommand = ListArchivesCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListIngressPointsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListIngressPointsCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListIngressPoints", {})
|
|
22
|
+
.n("MailManagerClient", "ListIngressPointsCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListIngressPointsCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListIngressPointsCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListIngressPointsCommand = ListIngressPointsCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListRelaysCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListRelaysCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListRelays", {})
|
|
22
|
+
.n("MailManagerClient", "ListRelaysCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListRelaysCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListRelaysCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListRelaysCommand = ListRelaysCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListRuleSetsCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
|
+
class ListRuleSetsCommand extends smithy_client_1.Command
|
|
11
|
+
.classBuilder()
|
|
12
|
+
.ep({
|
|
13
|
+
...EndpointParameters_1.commonParams,
|
|
14
|
+
})
|
|
15
|
+
.m(function (Command, cs, config, o) {
|
|
16
|
+
return [
|
|
17
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
+
];
|
|
20
|
+
})
|
|
21
|
+
.s("MailManagerSvc", "ListRuleSets", {})
|
|
22
|
+
.n("MailManagerClient", "ListRuleSetsCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListRuleSetsCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListRuleSetsCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListRuleSetsCommand = ListRuleSetsCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListTagsForResourceCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
|
+
class ListTagsForResourceCommand extends smithy_client_1.Command
|
|
12
|
+
.classBuilder()
|
|
13
|
+
.ep({
|
|
14
|
+
...EndpointParameters_1.commonParams,
|
|
15
|
+
})
|
|
16
|
+
.m(function (Command, cs, config, o) {
|
|
17
|
+
return [
|
|
18
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
+
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
+
];
|
|
21
|
+
})
|
|
22
|
+
.s("MailManagerSvc", "ListTagsForResource", {})
|
|
23
|
+
.n("MailManagerClient", "ListTagsForResourceCommand")
|
|
24
|
+
.f(void 0, models_0_1.ListTagsForResourceResponseFilterSensitiveLog)
|
|
25
|
+
.ser(Aws_json1_0_1.se_ListTagsForResourceCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_ListTagsForResourceCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|