@aws-sdk/client-elastic-load-balancing 3.952.0 → 3.954.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 +473 -337
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AddTagsCommand.js +2 -2
- package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +2 -2
- package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +2 -2
- package/dist-es/commands/ConfigureHealthCheckCommand.js +2 -2
- package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +2 -2
- package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +2 -2
- package/dist-es/commands/CreateLoadBalancerCommand.js +2 -2
- package/dist-es/commands/CreateLoadBalancerListenersCommand.js +2 -2
- package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteLoadBalancerCommand.js +2 -2
- package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +2 -2
- package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +2 -2
- package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +2 -2
- package/dist-es/commands/DescribeAccountLimitsCommand.js +2 -2
- package/dist-es/commands/DescribeInstanceHealthCommand.js +2 -2
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +2 -2
- package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +2 -2
- package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +2 -2
- package/dist-es/commands/DescribeLoadBalancersCommand.js +2 -2
- package/dist-es/commands/DescribeTagsCommand.js +2 -2
- package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +2 -2
- package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +2 -2
- package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +2 -2
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +2 -2
- package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +2 -2
- package/dist-es/commands/RemoveTagsCommand.js +2 -2
- package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +2 -2
- package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +2 -2
- package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +249 -249
- package/dist-types/ElasticLoadBalancingClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +137 -163
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +136 -163
- package/package.json +35 -35
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsQueryProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.elasticloadbalancing",
|
|
32
|
+
xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
|
|
33
|
+
version: "2012-06-01",
|
|
34
|
+
serviceTarget: "ElasticLoadBalancing_v7",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "Elastic Load Balancing",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddTags } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "AddTags", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "AddTagsCommand")
|
|
14
|
-
.sc(AddTags)
|
|
14
|
+
.sc(AddTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ApplySecurityGroupsToLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { ApplySecurityGroupsToLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ApplySecurityGroupsToLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ApplySecurityGroupsToLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "ApplySecurityGroupsToLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "ApplySecurityGroupsToLoadBalancerCommand")
|
|
14
|
-
.sc(ApplySecurityGroupsToLoadBalancer)
|
|
14
|
+
.sc(ApplySecurityGroupsToLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AttachLoadBalancerToSubnets } from "../schemas/schemas_0";
|
|
4
|
+
import { AttachLoadBalancerToSubnets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AttachLoadBalancerToSubnetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AttachLoadBalancerToSubnetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "AttachLoadBalancerToSubnets", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "AttachLoadBalancerToSubnetsCommand")
|
|
14
|
-
.sc(AttachLoadBalancerToSubnets)
|
|
14
|
+
.sc(AttachLoadBalancerToSubnets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ConfigureHealthCheck } from "../schemas/schemas_0";
|
|
4
|
+
import { ConfigureHealthCheck$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ConfigureHealthCheckCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ConfigureHealthCheckCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "ConfigureHealthCheck", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "ConfigureHealthCheckCommand")
|
|
14
|
-
.sc(ConfigureHealthCheck)
|
|
14
|
+
.sc(ConfigureHealthCheck$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAppCookieStickinessPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppCookieStickinessPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppCookieStickinessPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppCookieStickinessPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "CreateAppCookieStickinessPolicy", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "CreateAppCookieStickinessPolicyCommand")
|
|
14
|
-
.sc(CreateAppCookieStickinessPolicy)
|
|
14
|
+
.sc(CreateAppCookieStickinessPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLBCookieStickinessPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLBCookieStickinessPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLBCookieStickinessPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLBCookieStickinessPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "CreateLBCookieStickinessPolicy", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "CreateLBCookieStickinessPolicyCommand")
|
|
14
|
-
.sc(CreateLBCookieStickinessPolicy)
|
|
14
|
+
.sc(CreateLBCookieStickinessPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerCommand")
|
|
14
|
-
.sc(CreateLoadBalancer)
|
|
14
|
+
.sc(CreateLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLoadBalancerListeners } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLoadBalancerListeners$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLoadBalancerListenersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLoadBalancerListenersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancerListeners", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerListenersCommand")
|
|
14
|
-
.sc(CreateLoadBalancerListeners)
|
|
14
|
+
.sc(CreateLoadBalancerListeners$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLoadBalancerPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLoadBalancerPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLoadBalancerPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLoadBalancerPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "CreateLoadBalancerPolicy", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "CreateLoadBalancerPolicyCommand")
|
|
14
|
-
.sc(CreateLoadBalancerPolicy)
|
|
14
|
+
.sc(CreateLoadBalancerPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerCommand")
|
|
14
|
-
.sc(DeleteLoadBalancer)
|
|
14
|
+
.sc(DeleteLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLoadBalancerListeners } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLoadBalancerListeners$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLoadBalancerListenersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLoadBalancerListenersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancerListeners", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerListenersCommand")
|
|
14
|
-
.sc(DeleteLoadBalancerListeners)
|
|
14
|
+
.sc(DeleteLoadBalancerListeners$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLoadBalancerPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLoadBalancerPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLoadBalancerPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLoadBalancerPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DeleteLoadBalancerPolicy", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DeleteLoadBalancerPolicyCommand")
|
|
14
|
-
.sc(DeleteLoadBalancerPolicy)
|
|
14
|
+
.sc(DeleteLoadBalancerPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeregisterInstancesFromLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterInstancesFromLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterInstancesFromLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterInstancesFromLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DeregisterInstancesFromLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DeregisterInstancesFromLoadBalancerCommand")
|
|
14
|
-
.sc(DeregisterInstancesFromLoadBalancer)
|
|
14
|
+
.sc(DeregisterInstancesFromLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAccountLimits } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAccountLimits$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAccountLimitsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAccountLimitsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeAccountLimits", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeAccountLimitsCommand")
|
|
14
|
-
.sc(DescribeAccountLimits)
|
|
14
|
+
.sc(DescribeAccountLimits$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeInstanceHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInstanceHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInstanceHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInstanceHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeInstanceHealth", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeInstanceHealthCommand")
|
|
14
|
-
.sc(DescribeInstanceHealth)
|
|
14
|
+
.sc(DescribeInstanceHealth$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLoadBalancerAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLoadBalancerAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLoadBalancerAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLoadBalancerAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerAttributes", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerAttributesCommand")
|
|
14
|
-
.sc(DescribeLoadBalancerAttributes)
|
|
14
|
+
.sc(DescribeLoadBalancerAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLoadBalancerPolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLoadBalancerPolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLoadBalancerPoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLoadBalancerPoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicies", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerPoliciesCommand")
|
|
14
|
-
.sc(DescribeLoadBalancerPolicies)
|
|
14
|
+
.sc(DescribeLoadBalancerPolicies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLoadBalancerPolicyTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLoadBalancerPolicyTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLoadBalancerPolicyTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLoadBalancerPolicyTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicyTypes", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancerPolicyTypesCommand")
|
|
14
|
-
.sc(DescribeLoadBalancerPolicyTypes)
|
|
14
|
+
.sc(DescribeLoadBalancerPolicyTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLoadBalancers } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLoadBalancers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLoadBalancersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLoadBalancersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeLoadBalancers", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeLoadBalancersCommand")
|
|
14
|
-
.sc(DescribeLoadBalancers)
|
|
14
|
+
.sc(DescribeLoadBalancers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTags } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DescribeTags", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DescribeTagsCommand")
|
|
14
|
-
.sc(DescribeTags)
|
|
14
|
+
.sc(DescribeTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DetachLoadBalancerFromSubnets } from "../schemas/schemas_0";
|
|
4
|
+
import { DetachLoadBalancerFromSubnets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DetachLoadBalancerFromSubnetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DetachLoadBalancerFromSubnetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DetachLoadBalancerFromSubnets", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DetachLoadBalancerFromSubnetsCommand")
|
|
14
|
-
.sc(DetachLoadBalancerFromSubnets)
|
|
14
|
+
.sc(DetachLoadBalancerFromSubnets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableAvailabilityZonesForLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableAvailabilityZonesForLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableAvailabilityZonesForLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "DisableAvailabilityZonesForLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "DisableAvailabilityZonesForLoadBalancerCommand")
|
|
14
|
-
.sc(DisableAvailabilityZonesForLoadBalancer)
|
|
14
|
+
.sc(DisableAvailabilityZonesForLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableAvailabilityZonesForLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableAvailabilityZonesForLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableAvailabilityZonesForLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "EnableAvailabilityZonesForLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "EnableAvailabilityZonesForLoadBalancerCommand")
|
|
14
|
-
.sc(EnableAvailabilityZonesForLoadBalancer)
|
|
14
|
+
.sc(EnableAvailabilityZonesForLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ModifyLoadBalancerAttributes } from "../schemas/schemas_0";
|
|
4
|
+
import { ModifyLoadBalancerAttributes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ModifyLoadBalancerAttributesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ModifyLoadBalancerAttributesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "ModifyLoadBalancerAttributes", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "ModifyLoadBalancerAttributesCommand")
|
|
14
|
-
.sc(ModifyLoadBalancerAttributes)
|
|
14
|
+
.sc(ModifyLoadBalancerAttributes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterInstancesWithLoadBalancer } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterInstancesWithLoadBalancer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterInstancesWithLoadBalancerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterInstancesWithLoadBalancerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "RegisterInstancesWithLoadBalancer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "RegisterInstancesWithLoadBalancerCommand")
|
|
14
|
-
.sc(RegisterInstancesWithLoadBalancer)
|
|
14
|
+
.sc(RegisterInstancesWithLoadBalancer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemoveTags } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "RemoveTags", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "RemoveTagsCommand")
|
|
14
|
-
.sc(RemoveTags)
|
|
14
|
+
.sc(RemoveTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetLoadBalancerListenerSSLCertificate } from "../schemas/schemas_0";
|
|
4
|
+
import { SetLoadBalancerListenerSSLCertificate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetLoadBalancerListenerSSLCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetLoadBalancerListenerSSLCertificateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "SetLoadBalancerListenerSSLCertificate", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "SetLoadBalancerListenerSSLCertificateCommand")
|
|
14
|
-
.sc(SetLoadBalancerListenerSSLCertificate)
|
|
14
|
+
.sc(SetLoadBalancerListenerSSLCertificate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetLoadBalancerPoliciesForBackendServer } from "../schemas/schemas_0";
|
|
4
|
+
import { SetLoadBalancerPoliciesForBackendServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetLoadBalancerPoliciesForBackendServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetLoadBalancerPoliciesForBackendServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "SetLoadBalancerPoliciesForBackendServer", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "SetLoadBalancerPoliciesForBackendServerCommand")
|
|
14
|
-
.sc(SetLoadBalancerPoliciesForBackendServer)
|
|
14
|
+
.sc(SetLoadBalancerPoliciesForBackendServer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetLoadBalancerPoliciesOfListener } from "../schemas/schemas_0";
|
|
4
|
+
import { SetLoadBalancerPoliciesOfListener$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetLoadBalancerPoliciesOfListenerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetLoadBalancerPoliciesOfListenerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ElasticLoadBalancing_v7", "SetLoadBalancerPoliciesOfListener", {})
|
|
13
13
|
.n("ElasticLoadBalancingClient", "SetLoadBalancerPoliciesOfListenerCommand")
|
|
14
|
-
.sc(SetLoadBalancerPoliciesOfListener)
|
|
14
|
+
.sc(SetLoadBalancerPoliciesOfListener$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.elasticloadbalancing",
|
|
29
|
+
xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
|
|
30
|
+
version: "2012-06-01",
|
|
31
|
+
serviceTarget: "ElasticLoadBalancing_v7",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "Elastic Load Balancing",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|