@aws-sdk/client-elastic-load-balancing-v2 3.306.0 → 3.310.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/commands/AddListenerCertificatesCommand.js +2 -2
- package/dist-cjs/commands/AddTagsCommand.js +2 -2
- package/dist-cjs/commands/CreateListenerCommand.js +2 -2
- package/dist-cjs/commands/CreateLoadBalancerCommand.js +2 -2
- package/dist-cjs/commands/CreateRuleCommand.js +2 -2
- package/dist-cjs/commands/CreateTargetGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteListenerCommand.js +2 -2
- package/dist-cjs/commands/DeleteLoadBalancerCommand.js +2 -2
- package/dist-cjs/commands/DeleteRuleCommand.js +2 -2
- package/dist-cjs/commands/DeleteTargetGroupCommand.js +2 -2
- package/dist-cjs/commands/DeregisterTargetsCommand.js +2 -2
- package/dist-cjs/commands/DescribeAccountLimitsCommand.js +2 -2
- package/dist-cjs/commands/DescribeListenerCertificatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeListenersCommand.js +2 -2
- package/dist-cjs/commands/DescribeLoadBalancerAttributesCommand.js +2 -2
- package/dist-cjs/commands/DescribeLoadBalancersCommand.js +2 -2
- package/dist-cjs/commands/DescribeRulesCommand.js +2 -2
- package/dist-cjs/commands/DescribeSSLPoliciesCommand.js +2 -2
- package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTargetGroupAttributesCommand.js +2 -2
- package/dist-cjs/commands/DescribeTargetGroupsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTargetHealthCommand.js +2 -2
- package/dist-cjs/commands/ModifyListenerCommand.js +2 -2
- package/dist-cjs/commands/ModifyLoadBalancerAttributesCommand.js +2 -2
- package/dist-cjs/commands/ModifyRuleCommand.js +2 -2
- package/dist-cjs/commands/ModifyTargetGroupAttributesCommand.js +2 -2
- package/dist-cjs/commands/ModifyTargetGroupCommand.js +2 -2
- package/dist-cjs/commands/RegisterTargetsCommand.js +2 -2
- package/dist-cjs/commands/RemoveListenerCertificatesCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsCommand.js +2 -2
- package/dist-cjs/commands/SetIpAddressTypeCommand.js +2 -2
- package/dist-cjs/commands/SetRulePrioritiesCommand.js +2 -2
- package/dist-cjs/commands/SetSecurityGroupsCommand.js +2 -2
- package/dist-cjs/commands/SetSubnetsCommand.js +2 -2
- package/dist-cjs/protocols/Aws_query.js +870 -872
- package/dist-es/commands/AddListenerCertificatesCommand.js +3 -3
- package/dist-es/commands/AddTagsCommand.js +3 -3
- package/dist-es/commands/CreateListenerCommand.js +3 -3
- package/dist-es/commands/CreateLoadBalancerCommand.js +3 -3
- package/dist-es/commands/CreateRuleCommand.js +3 -3
- package/dist-es/commands/CreateTargetGroupCommand.js +3 -3
- package/dist-es/commands/DeleteListenerCommand.js +3 -3
- package/dist-es/commands/DeleteLoadBalancerCommand.js +3 -3
- package/dist-es/commands/DeleteRuleCommand.js +3 -3
- package/dist-es/commands/DeleteTargetGroupCommand.js +3 -3
- package/dist-es/commands/DeregisterTargetsCommand.js +3 -3
- package/dist-es/commands/DescribeAccountLimitsCommand.js +3 -3
- package/dist-es/commands/DescribeListenerCertificatesCommand.js +3 -3
- package/dist-es/commands/DescribeListenersCommand.js +3 -3
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +3 -3
- package/dist-es/commands/DescribeLoadBalancersCommand.js +3 -3
- package/dist-es/commands/DescribeRulesCommand.js +3 -3
- package/dist-es/commands/DescribeSSLPoliciesCommand.js +3 -3
- package/dist-es/commands/DescribeTagsCommand.js +3 -3
- package/dist-es/commands/DescribeTargetGroupAttributesCommand.js +3 -3
- package/dist-es/commands/DescribeTargetGroupsCommand.js +3 -3
- package/dist-es/commands/DescribeTargetHealthCommand.js +3 -3
- package/dist-es/commands/ModifyListenerCommand.js +3 -3
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +3 -3
- package/dist-es/commands/ModifyRuleCommand.js +3 -3
- package/dist-es/commands/ModifyTargetGroupAttributesCommand.js +3 -3
- package/dist-es/commands/ModifyTargetGroupCommand.js +3 -3
- package/dist-es/commands/RegisterTargetsCommand.js +3 -3
- package/dist-es/commands/RemoveListenerCertificatesCommand.js +3 -3
- package/dist-es/commands/RemoveTagsCommand.js +3 -3
- package/dist-es/commands/SetIpAddressTypeCommand.js +3 -3
- package/dist-es/commands/SetRulePrioritiesCommand.js +3 -3
- package/dist-es/commands/SetSecurityGroupsCommand.js +3 -3
- package/dist-es/commands/SetSubnetsCommand.js +3 -3
- package/dist-es/protocols/Aws_query.js +800 -802
- package/dist-types/protocols/Aws_query.d.ts +272 -68
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +68 -68
- package/package.json +36 -36
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_RemoveTagsCommand, se_RemoveTagsCommand } from "../protocols/Aws_query";
|
|
5
5
|
export class RemoveTagsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class RemoveTagsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_RemoveTagsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_RemoveTagsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_SetIpAddressTypeCommand, se_SetIpAddressTypeCommand } from "../protocols/Aws_query";
|
|
5
5
|
export class SetIpAddressTypeCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class SetIpAddressTypeCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_SetIpAddressTypeCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_SetIpAddressTypeCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_SetRulePrioritiesCommand, se_SetRulePrioritiesCommand } from "../protocols/Aws_query";
|
|
5
5
|
export class SetRulePrioritiesCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class SetRulePrioritiesCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_SetRulePrioritiesCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_SetRulePrioritiesCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_SetSecurityGroupsCommand, se_SetSecurityGroupsCommand } from "../protocols/Aws_query";
|
|
5
5
|
export class SetSecurityGroupsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class SetSecurityGroupsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_SetSecurityGroupsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_SetSecurityGroupsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_SetSubnetsCommand, se_SetSubnetsCommand } from "../protocols/Aws_query";
|
|
5
5
|
export class SetSubnetsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class SetSubnetsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_SetSubnetsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_SetSubnetsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|