@aws-sdk/client-elastic-load-balancing 3.53.0 → 3.55.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/CHANGELOG.md +24 -0
- package/dist-cjs/ElasticLoadBalancingClient.js +13 -13
- package/dist-cjs/commands/AddTagsCommand.js +3 -3
- package/dist-cjs/commands/ApplySecurityGroupsToLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/AttachLoadBalancerToSubnetsCommand.js +3 -3
- package/dist-cjs/commands/ConfigureHealthCheckCommand.js +3 -3
- package/dist-cjs/commands/CreateAppCookieStickinessPolicyCommand.js +3 -3
- package/dist-cjs/commands/CreateLBCookieStickinessPolicyCommand.js +3 -3
- package/dist-cjs/commands/CreateLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/CreateLoadBalancerListenersCommand.js +3 -3
- package/dist-cjs/commands/CreateLoadBalancerPolicyCommand.js +3 -3
- package/dist-cjs/commands/DeleteLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/DeleteLoadBalancerListenersCommand.js +3 -3
- package/dist-cjs/commands/DeleteLoadBalancerPolicyCommand.js +3 -3
- package/dist-cjs/commands/DeregisterInstancesFromLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/DescribeAccountLimitsCommand.js +3 -3
- package/dist-cjs/commands/DescribeInstanceHealthCommand.js +3 -3
- package/dist-cjs/commands/DescribeLoadBalancerAttributesCommand.js +3 -3
- package/dist-cjs/commands/DescribeLoadBalancerPoliciesCommand.js +3 -3
- package/dist-cjs/commands/DescribeLoadBalancerPolicyTypesCommand.js +3 -3
- package/dist-cjs/commands/DescribeLoadBalancersCommand.js +3 -3
- package/dist-cjs/commands/DescribeTagsCommand.js +3 -3
- package/dist-cjs/commands/DetachLoadBalancerFromSubnetsCommand.js +3 -3
- package/dist-cjs/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/ModifyLoadBalancerAttributesCommand.js +3 -3
- package/dist-cjs/commands/RegisterInstancesWithLoadBalancerCommand.js +3 -3
- package/dist-cjs/commands/RemoveTagsCommand.js +3 -3
- package/dist-cjs/commands/SetLoadBalancerListenerSSLCertificateCommand.js +3 -3
- package/dist-cjs/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +3 -3
- package/dist-cjs/commands/SetLoadBalancerPoliciesOfListenerCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_query.js +168 -168
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/waiters/waitForAnyInstanceInService.js +3 -3
- package/dist-es/ElasticLoadBalancing.js +29 -29
- package/dist-es/pagination/DescribeLoadBalancersPaginator.js +4 -4
- package/dist-es/protocols/Aws_query.js +47 -47
- package/dist-es/waiters/waitForAnyInstanceInService.js +1 -1
- package/dist-types/ElasticLoadBalancingClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +35 -35
|
@@ -11,7 +11,7 @@ class RegisterInstancesWithLoadBalancerCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ElasticLoadBalancingClient";
|
|
@@ -27,10 +27,10 @@ class RegisterInstancesWithLoadBalancerCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryRegisterInstancesWithLoadBalancerCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryRegisterInstancesWithLoadBalancerCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryRegisterInstancesWithLoadBalancerCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryRegisterInstancesWithLoadBalancerCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RegisterInstancesWithLoadBalancerCommand = RegisterInstancesWithLoadBalancerCommand;
|
|
@@ -11,7 +11,7 @@ class RemoveTagsCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ElasticLoadBalancingClient";
|
|
@@ -27,10 +27,10 @@ class RemoveTagsCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_queryRemoveTagsCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_queryRemoveTagsCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_queryRemoveTagsCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_queryRemoveTagsCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RemoveTagsCommand = RemoveTagsCommand;
|
|
@@ -11,7 +11,7 @@ class SetLoadBalancerListenerSSLCertificateCommand extends smithy_client_1.Comma
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ElasticLoadBalancingClient";
|
|
@@ -27,10 +27,10 @@ class SetLoadBalancerListenerSSLCertificateCommand extends smithy_client_1.Comma
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_querySetLoadBalancerListenerSSLCertificateCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_querySetLoadBalancerListenerSSLCertificateCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_querySetLoadBalancerListenerSSLCertificateCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_querySetLoadBalancerListenerSSLCertificateCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.SetLoadBalancerListenerSSLCertificateCommand = SetLoadBalancerListenerSSLCertificateCommand;
|
|
@@ -11,7 +11,7 @@ class SetLoadBalancerPoliciesForBackendServerCommand extends smithy_client_1.Com
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ElasticLoadBalancingClient";
|
|
@@ -27,10 +27,10 @@ class SetLoadBalancerPoliciesForBackendServerCommand extends smithy_client_1.Com
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_querySetLoadBalancerPoliciesForBackendServerCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_querySetLoadBalancerPoliciesForBackendServerCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_querySetLoadBalancerPoliciesForBackendServerCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_querySetLoadBalancerPoliciesForBackendServerCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.SetLoadBalancerPoliciesForBackendServerCommand = SetLoadBalancerPoliciesForBackendServerCommand;
|
|
@@ -11,7 +11,7 @@ class SetLoadBalancerPoliciesOfListenerCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ElasticLoadBalancingClient";
|
|
@@ -27,10 +27,10 @@ class SetLoadBalancerPoliciesOfListenerCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_query_1.serializeAws_querySetLoadBalancerPoliciesOfListenerCommand(input, context);
|
|
30
|
+
return (0, Aws_query_1.serializeAws_querySetLoadBalancerPoliciesOfListenerCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_query_1.deserializeAws_querySetLoadBalancerPoliciesOfListenerCommand(output, context);
|
|
33
|
+
return (0, Aws_query_1.deserializeAws_querySetLoadBalancerPoliciesOfListenerCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.SetLoadBalancerPoliciesOfListenerCommand = SetLoadBalancerPoliciesOfListenerCommand;
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -175,7 +175,7 @@ const partitionHash = {
|
|
|
175
175
|
],
|
|
176
176
|
},
|
|
177
177
|
};
|
|
178
|
-
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
|
178
|
+
const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
|
|
179
179
|
...options,
|
|
180
180
|
signingService: "elasticloadbalancing",
|
|
181
181
|
regionHash,
|