@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.ListTrafficPoliciesCommand = 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 ListTrafficPoliciesCommand 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", "ListTrafficPolicies", {})
|
|
22
|
+
.n("MailManagerClient", "ListTrafficPoliciesCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_ListTrafficPoliciesCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_ListTrafficPoliciesCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.ListTrafficPoliciesCommand = ListTrafficPoliciesCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StartArchiveExportCommand = 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 StartArchiveExportCommand 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", "StartArchiveExport", {})
|
|
22
|
+
.n("MailManagerClient", "StartArchiveExportCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_StartArchiveExportCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_StartArchiveExportCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.StartArchiveExportCommand = StartArchiveExportCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StartArchiveSearchCommand = 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 StartArchiveSearchCommand 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", "StartArchiveSearch", {})
|
|
22
|
+
.n("MailManagerClient", "StartArchiveSearchCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_StartArchiveSearchCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_StartArchiveSearchCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.StartArchiveSearchCommand = StartArchiveSearchCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StopArchiveExportCommand = 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 StopArchiveExportCommand 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", "StopArchiveExport", {})
|
|
22
|
+
.n("MailManagerClient", "StopArchiveExportCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_StopArchiveExportCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_StopArchiveExportCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.StopArchiveExportCommand = StopArchiveExportCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StopArchiveSearchCommand = 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 StopArchiveSearchCommand 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", "StopArchiveSearch", {})
|
|
22
|
+
.n("MailManagerClient", "StopArchiveSearchCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_StopArchiveSearchCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_StopArchiveSearchCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.StopArchiveSearchCommand = StopArchiveSearchCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TagResourceCommand = 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 TagResourceCommand 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", "TagResource", {})
|
|
23
|
+
.n("MailManagerClient", "TagResourceCommand")
|
|
24
|
+
.f(models_0_1.TagResourceRequestFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_json1_0_1.se_TagResourceCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_TagResourceCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UntagResourceCommand = 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 UntagResourceCommand 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", "UntagResource", {})
|
|
23
|
+
.n("MailManagerClient", "UntagResourceCommand")
|
|
24
|
+
.f(models_0_1.UntagResourceRequestFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_json1_0_1.se_UntagResourceCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_UntagResourceCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateArchiveCommand = 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 UpdateArchiveCommand 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", "UpdateArchive", {})
|
|
22
|
+
.n("MailManagerClient", "UpdateArchiveCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_UpdateArchiveCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_UpdateArchiveCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.UpdateArchiveCommand = UpdateArchiveCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateIngressPointCommand = 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 UpdateIngressPointCommand 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", "UpdateIngressPoint", {})
|
|
23
|
+
.n("MailManagerClient", "UpdateIngressPointCommand")
|
|
24
|
+
.f(models_0_1.UpdateIngressPointRequestFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_json1_0_1.se_UpdateIngressPointCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_UpdateIngressPointCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.UpdateIngressPointCommand = UpdateIngressPointCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateRelayCommand = 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 UpdateRelayCommand 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", "UpdateRelay", {})
|
|
22
|
+
.n("MailManagerClient", "UpdateRelayCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_UpdateRelayCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_UpdateRelayCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.UpdateRelayCommand = UpdateRelayCommand;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateRuleSetCommand = 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 UpdateRuleSetCommand 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", "UpdateRuleSet", {})
|
|
23
|
+
.n("MailManagerClient", "UpdateRuleSetCommand")
|
|
24
|
+
.f(models_0_1.UpdateRuleSetRequestFilterSensitiveLog, void 0)
|
|
25
|
+
.ser(Aws_json1_0_1.se_UpdateRuleSetCommand)
|
|
26
|
+
.de(Aws_json1_0_1.de_UpdateRuleSetCommand)
|
|
27
|
+
.build() {
|
|
28
|
+
}
|
|
29
|
+
exports.UpdateRuleSetCommand = UpdateRuleSetCommand;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateTrafficPolicyCommand = 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 UpdateTrafficPolicyCommand 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", "UpdateTrafficPolicy", {})
|
|
22
|
+
.n("MailManagerClient", "UpdateTrafficPolicyCommand")
|
|
23
|
+
.f(void 0, void 0)
|
|
24
|
+
.ser(Aws_json1_0_1.se_UpdateTrafficPolicyCommand)
|
|
25
|
+
.de(Aws_json1_0_1.de_UpdateTrafficPolicyCommand)
|
|
26
|
+
.build() {
|
|
27
|
+
}
|
|
28
|
+
exports.UpdateTrafficPolicyCommand = UpdateTrafficPolicyCommand;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./CreateAddonInstanceCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CreateAddonSubscriptionCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CreateArchiveCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CreateIngressPointCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateRelayCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateRuleSetCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateTrafficPolicyCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./DeleteAddonInstanceCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./DeleteAddonSubscriptionCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./DeleteArchiveCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DeleteIngressPointCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteRelayCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteRuleSetCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DeleteTrafficPolicyCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./GetAddonInstanceCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./GetAddonSubscriptionCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./GetArchiveCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./GetArchiveExportCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./GetArchiveMessageCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./GetArchiveMessageContentCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./GetArchiveSearchCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./GetArchiveSearchResultsCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./GetIngressPointCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./GetRelayCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./GetRuleSetCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./GetTrafficPolicyCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./ListAddonInstancesCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./ListAddonSubscriptionsCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./ListArchiveExportsCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./ListArchiveSearchesCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./ListArchivesCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./ListIngressPointsCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./ListRelaysCommand"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./ListRuleSetsCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./ListTrafficPoliciesCommand"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./StartArchiveExportCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./StartArchiveSearchCommand"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./StopArchiveExportCommand"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./StopArchiveSearchCommand"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./UpdateArchiveCommand"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./UpdateIngressPointCommand"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./UpdateRelayCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./UpdateRuleSetCommand"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./UpdateTrafficPolicyCommand"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
+
const resolveClientEndpointParameters = (options) => {
|
|
5
|
+
return {
|
|
6
|
+
...options,
|
|
7
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
+
defaultSigningName: "ses",
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
+
exports.commonParams = {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultEndpointResolver = void 0;
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
|
+
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
|
+
endpointParams: endpointParams,
|
|
10
|
+
logger: context.logger,
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ruleSet = void 0;
|
|
4
|
+
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "String" }, i = { [s]: true, "default": false, "type": "Boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://mail-manager-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://mail-manager-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://mail-manager.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://mail-manager.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
|
|
7
|
+
exports.ruleSet = _data;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MailManagerServiceException = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
tslib_1.__exportStar(require("./MailManagerClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./MailManager"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
10
|
+
var MailManagerServiceException_1 = require("./models/MailManagerServiceException");
|
|
11
|
+
Object.defineProperty(exports, "MailManagerServiceException", { enumerable: true, get: function () { return MailManagerServiceException_1.MailManagerServiceException; } });
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MailManagerServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class MailManagerServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, MailManagerServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.MailManagerServiceException = MailManagerServiceException;
|