@aws-sdk/client-elastic-load-balancing 3.928.0 → 3.930.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/dist-cjs/index.js +1027 -3010
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/ElasticLoadBalancingClient.js +2 -0
- package/dist-es/commands/AddTagsCommand.js +3 -9
- package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +3 -9
- package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +3 -9
- package/dist-es/commands/ConfigureHealthCheckCommand.js +3 -9
- package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +3 -9
- package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +3 -9
- package/dist-es/commands/CreateLoadBalancerCommand.js +3 -9
- package/dist-es/commands/CreateLoadBalancerListenersCommand.js +3 -9
- package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteLoadBalancerCommand.js +3 -9
- package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +3 -9
- package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +3 -9
- package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +3 -9
- package/dist-es/commands/DescribeAccountLimitsCommand.js +3 -9
- package/dist-es/commands/DescribeInstanceHealthCommand.js +3 -9
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +3 -9
- package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +3 -9
- package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +3 -9
- package/dist-es/commands/DescribeLoadBalancersCommand.js +3 -9
- package/dist-es/commands/DescribeTagsCommand.js +3 -9
- package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +3 -9
- package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +3 -9
- package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +3 -9
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +3 -9
- package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +3 -9
- package/dist-es/commands/RemoveTagsCommand.js +3 -9
- package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +3 -9
- package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +3 -9
- package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1002 -0
- package/dist-types/ElasticLoadBalancingClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +163 -0
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
- package/package.json +34 -34
- package/dist-es/protocols/Aws_query.js +0 -2838
- package/dist-types/protocols/Aws_query.d.ts +0 -263
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +0 -353
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const core_1 = require("@aws-sdk/core");
|
|
5
|
+
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
5
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
7
8
|
const util_base64_1 = require("@smithy/util-base64");
|
|
@@ -25,6 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
25
26
|
},
|
|
26
27
|
],
|
|
27
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
+
protocol: config?.protocol ??
|
|
30
|
+
new protocols_1.AwsQueryProtocol({
|
|
31
|
+
defaultNamespace: "com.amazonaws.elasticloadbalancing",
|
|
32
|
+
xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
|
|
33
|
+
version: "2012-06-01",
|
|
34
|
+
}),
|
|
28
35
|
serviceId: config?.serviceId ?? "Elastic Load Balancing",
|
|
29
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
30
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
|
|
|
4
4
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
5
5
|
import { resolveRegionConfig } from "@smithy/config-resolver";
|
|
6
6
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
7
|
+
import { getSchemaSerdePlugin } from "@smithy/core/schema";
|
|
7
8
|
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
|
|
8
9
|
import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
|
|
9
10
|
import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
|
|
@@ -28,6 +29,7 @@ export class ElasticLoadBalancingClient extends __Client {
|
|
|
28
29
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
29
30
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
30
31
|
this.config = _config_8;
|
|
32
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
31
33
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
32
34
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
33
35
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { AddTags } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class AddTagsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "AddTags", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "AddTagsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_AddTagsCommand)
|
|
20
|
-
.de(de_AddTagsCommand)
|
|
14
|
+
.sc(AddTags)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ApplySecurityGroupsToLoadBalancer } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ApplySecurityGroupsToLoadBalancerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "ApplySecurityGroupsToLoadBalancer", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "ApplySecurityGroupsToLoadBalancerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ApplySecurityGroupsToLoadBalancerCommand)
|
|
20
|
-
.de(de_ApplySecurityGroupsToLoadBalancerCommand)
|
|
14
|
+
.sc(ApplySecurityGroupsToLoadBalancer)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { AttachLoadBalancerToSubnets } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class AttachLoadBalancerToSubnetsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "AttachLoadBalancerToSubnets", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "AttachLoadBalancerToSubnetsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_AttachLoadBalancerToSubnetsCommand)
|
|
20
|
-
.de(de_AttachLoadBalancerToSubnetsCommand)
|
|
14
|
+
.sc(AttachLoadBalancerToSubnets)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ConfigureHealthCheck } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ConfigureHealthCheckCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "ConfigureHealthCheck", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "ConfigureHealthCheckCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ConfigureHealthCheckCommand)
|
|
20
|
-
.de(de_ConfigureHealthCheckCommand)
|
|
14
|
+
.sc(ConfigureHealthCheck)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { CreateAppCookieStickinessPolicy } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class CreateAppCookieStickinessPolicyCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "CreateAppCookieStickinessPolicy", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "CreateAppCookieStickinessPolicyCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_CreateAppCookieStickinessPolicyCommand)
|
|
20
|
-
.de(de_CreateAppCookieStickinessPolicyCommand)
|
|
14
|
+
.sc(CreateAppCookieStickinessPolicy)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { CreateLBCookieStickinessPolicy } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class CreateLBCookieStickinessPolicyCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "CreateLBCookieStickinessPolicy", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "CreateLBCookieStickinessPolicyCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_CreateLBCookieStickinessPolicyCommand)
|
|
20
|
-
.de(de_CreateLBCookieStickinessPolicyCommand)
|
|
14
|
+
.sc(CreateLBCookieStickinessPolicy)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { CreateLoadBalancer } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class CreateLoadBalancerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancer", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_CreateLoadBalancerCommand)
|
|
20
|
-
.de(de_CreateLoadBalancerCommand)
|
|
14
|
+
.sc(CreateLoadBalancer)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { CreateLoadBalancerListeners } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class CreateLoadBalancerListenersCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancerListeners", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerListenersCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_CreateLoadBalancerListenersCommand)
|
|
20
|
-
.de(de_CreateLoadBalancerListenersCommand)
|
|
14
|
+
.sc(CreateLoadBalancerListeners)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { CreateLoadBalancerPolicy } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class CreateLoadBalancerPolicyCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancerPolicy", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerPolicyCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_CreateLoadBalancerPolicyCommand)
|
|
20
|
-
.de(de_CreateLoadBalancerPolicyCommand)
|
|
14
|
+
.sc(CreateLoadBalancerPolicy)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeleteLoadBalancer } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeleteLoadBalancerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancer", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeleteLoadBalancerCommand)
|
|
20
|
-
.de(de_DeleteLoadBalancerCommand)
|
|
14
|
+
.sc(DeleteLoadBalancer)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeleteLoadBalancerListeners } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeleteLoadBalancerListenersCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancerListeners", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerListenersCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeleteLoadBalancerListenersCommand)
|
|
20
|
-
.de(de_DeleteLoadBalancerListenersCommand)
|
|
14
|
+
.sc(DeleteLoadBalancerListeners)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeleteLoadBalancerPolicy } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeleteLoadBalancerPolicyCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancerPolicy", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerPolicyCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeleteLoadBalancerPolicyCommand)
|
|
20
|
-
.de(de_DeleteLoadBalancerPolicyCommand)
|
|
14
|
+
.sc(DeleteLoadBalancerPolicy)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DeregisterInstancesFromLoadBalancer } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DeregisterInstancesFromLoadBalancerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DeregisterInstancesFromLoadBalancer", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DeregisterInstancesFromLoadBalancerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DeregisterInstancesFromLoadBalancerCommand)
|
|
20
|
-
.de(de_DeregisterInstancesFromLoadBalancerCommand)
|
|
14
|
+
.sc(DeregisterInstancesFromLoadBalancer)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeAccountLimits } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeAccountLimitsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeAccountLimits", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeAccountLimitsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeAccountLimitsCommand)
|
|
20
|
-
.de(de_DescribeAccountLimitsCommand)
|
|
14
|
+
.sc(DescribeAccountLimits)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeInstanceHealth } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeInstanceHealthCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeInstanceHealth", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeInstanceHealthCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeInstanceHealthCommand)
|
|
20
|
-
.de(de_DescribeInstanceHealthCommand)
|
|
14
|
+
.sc(DescribeInstanceHealth)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeLoadBalancerAttributes } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeLoadBalancerAttributesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerAttributes", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerAttributesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeLoadBalancerAttributesCommand)
|
|
20
|
-
.de(de_DescribeLoadBalancerAttributesCommand)
|
|
14
|
+
.sc(DescribeLoadBalancerAttributes)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeLoadBalancerPolicies } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeLoadBalancerPoliciesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicies", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerPoliciesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeLoadBalancerPoliciesCommand)
|
|
20
|
-
.de(de_DescribeLoadBalancerPoliciesCommand)
|
|
14
|
+
.sc(DescribeLoadBalancerPolicies)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeLoadBalancerPolicyTypes } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeLoadBalancerPolicyTypesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicyTypes", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerPolicyTypesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeLoadBalancerPolicyTypesCommand)
|
|
20
|
-
.de(de_DescribeLoadBalancerPolicyTypesCommand)
|
|
14
|
+
.sc(DescribeLoadBalancerPolicyTypes)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeLoadBalancers } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeLoadBalancersCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancers", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancersCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeLoadBalancersCommand)
|
|
20
|
-
.de(de_DescribeLoadBalancersCommand)
|
|
14
|
+
.sc(DescribeLoadBalancers)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DescribeTags } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DescribeTagsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DescribeTags", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DescribeTagsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DescribeTagsCommand)
|
|
20
|
-
.de(de_DescribeTagsCommand)
|
|
14
|
+
.sc(DescribeTags)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DetachLoadBalancerFromSubnets } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DetachLoadBalancerFromSubnetsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DetachLoadBalancerFromSubnets", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DetachLoadBalancerFromSubnetsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DetachLoadBalancerFromSubnetsCommand)
|
|
20
|
-
.de(de_DetachLoadBalancerFromSubnetsCommand)
|
|
14
|
+
.sc(DetachLoadBalancerFromSubnets)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DisableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DisableAvailabilityZonesForLoadBalancerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ElasticLoadBalancing_v7", "DisableAvailabilityZonesForLoadBalancer", {})
|
|
17
13
|
.n("ElasticLoadBalancingClient", "DisableAvailabilityZonesForLoadBalancerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DisableAvailabilityZonesForLoadBalancerCommand)
|
|
20
|
-
.de(de_DisableAvailabilityZonesForLoadBalancerCommand)
|
|
14
|
+
.sc(DisableAvailabilityZonesForLoadBalancer)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|