@aws-sdk/client-elastic-load-balancing-v2 3.296.0 → 3.297.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.
Files changed (45) hide show
  1. package/dist-cjs/protocols/Aws_query.js +97 -407
  2. package/dist-es/protocols/Aws_query.js +97 -407
  3. package/dist-types/ElasticLoadBalancingV2.d.ts +35 -0
  4. package/dist-types/ElasticLoadBalancingV2Client.d.ts +24 -4
  5. package/dist-types/commands/AddListenerCertificatesCommand.d.ts +16 -0
  6. package/dist-types/commands/AddTagsCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateRuleCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateTargetGroupCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteListenerCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteTargetGroupCommand.d.ts +16 -0
  15. package/dist-types/commands/DeregisterTargetsCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeListenersCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeRulesCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeTargetHealthCommand.d.ts +16 -0
  27. package/dist-types/commands/ModifyListenerCommand.d.ts +16 -0
  28. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +16 -0
  29. package/dist-types/commands/ModifyRuleCommand.d.ts +16 -0
  30. package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +16 -0
  31. package/dist-types/commands/ModifyTargetGroupCommand.d.ts +16 -0
  32. package/dist-types/commands/RegisterTargetsCommand.d.ts +16 -0
  33. package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +16 -0
  34. package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
  35. package/dist-types/commands/SetIpAddressTypeCommand.d.ts +16 -0
  36. package/dist-types/commands/SetRulePrioritiesCommand.d.ts +16 -0
  37. package/dist-types/commands/SetSecurityGroupsCommand.d.ts +16 -0
  38. package/dist-types/commands/SetSubnetsCommand.d.ts +16 -0
  39. package/dist-types/models/ElasticLoadBalancingV2ServiceException.d.ts +2 -0
  40. package/dist-types/models/models_0.d.ts +328 -11
  41. package/dist-types/pagination/DescribeListenersPaginator.d.ts +3 -0
  42. package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +3 -0
  43. package/dist-types/pagination/DescribeTargetGroupsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/Interfaces.d.ts +3 -0
  45. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { SetIpAddressTypeInput, SetIpAddressTypeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetIpAddressTypeCommand}.
8
10
  */
9
11
  export interface SetIpAddressTypeCommandInput extends SetIpAddressTypeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetIpAddressTypeCommand}.
13
17
  */
14
18
  export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets the type of IP addresses used by the subnets of the specified load balancer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SetIpAddressTypeCommandInput - {@link SetIpAddressTypeCommandInput}
34
+ * @returns {@link SetIpAddressTypeCommandOutput}
28
35
  * @see {@link SetIpAddressTypeCommandInput} for command's `input` shape.
29
36
  * @see {@link SetIpAddressTypeCommandOutput} for command's `response` shape.
30
37
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -43,11 +50,20 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, _
43
50
  export declare class SetIpAddressTypeCommand extends $Command<SetIpAddressTypeCommandInput, SetIpAddressTypeCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
44
51
  readonly input: SetIpAddressTypeCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: SetIpAddressTypeCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetIpAddressTypeCommandInput, SetIpAddressTypeCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { SetRulePrioritiesInput, SetRulePrioritiesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetRulePrioritiesCommand}.
8
10
  */
9
11
  export interface SetRulePrioritiesCommandInput extends SetRulePrioritiesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetRulePrioritiesCommand}.
13
17
  */
14
18
  export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets the priorities of the specified rules.</p>
18
23
  * <p>You can reorder the rules as long as there are no priority conflicts in the new order. Any
19
24
  * existing rules that you do not specify retain their current priority.</p>
@@ -27,6 +32,8 @@ export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param SetRulePrioritiesCommandInput - {@link SetRulePrioritiesCommandInput}
36
+ * @returns {@link SetRulePrioritiesCommandOutput}
30
37
  * @see {@link SetRulePrioritiesCommandInput} for command's `input` shape.
31
38
  * @see {@link SetRulePrioritiesCommandOutput} for command's `response` shape.
32
39
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -86,11 +93,20 @@ export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput,
86
93
  export declare class SetRulePrioritiesCommand extends $Command<SetRulePrioritiesCommandInput, SetRulePrioritiesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
87
94
  readonly input: SetRulePrioritiesCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: SetRulePrioritiesCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetRulePrioritiesCommandInput, SetRulePrioritiesCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { SetSecurityGroupsInput, SetSecurityGroupsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetSecurityGroupsCommand}.
8
10
  */
9
11
  export interface SetSecurityGroupsCommandInput extends SetSecurityGroupsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetSecurityGroupsCommand}.
13
17
  */
14
18
  export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates the specified security groups with the specified Application Load Balancer. The
18
23
  * specified security groups override the previously associated security groups.</p>
19
24
  * <p>You can't specify a security group for a Network Load Balancer or Gateway Load
@@ -28,6 +33,8 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput,
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param SetSecurityGroupsCommandInput - {@link SetSecurityGroupsCommandInput}
37
+ * @returns {@link SetSecurityGroupsCommandOutput}
31
38
  * @see {@link SetSecurityGroupsCommandInput} for command's `input` shape.
32
39
  * @see {@link SetSecurityGroupsCommandOutput} for command's `response` shape.
33
40
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -67,11 +74,20 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput,
67
74
  export declare class SetSecurityGroupsCommand extends $Command<SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
68
75
  readonly input: SetSecurityGroupsCommandInput;
69
76
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
70
80
  constructor(input: SetSecurityGroupsCommandInput);
71
81
  /**
72
82
  * @internal
73
83
  */
74
84
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput>;
85
+ /**
86
+ * @internal
87
+ */
75
88
  private serialize;
89
+ /**
90
+ * @internal
91
+ */
76
92
  private deserialize;
77
93
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { SetSubnetsInput, SetSubnetsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetSubnetsCommand}.
8
10
  */
9
11
  export interface SetSubnetsCommandInput extends SetSubnetsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetSubnetsCommand}.
13
17
  */
14
18
  export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Enables the Availability Zones for the specified public subnets for the specified
18
23
  * Application Load Balancer or Network Load Balancer. The specified subnets replace the
19
24
  * previously enabled subnets.</p>
@@ -30,6 +35,8 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param SetSubnetsCommandInput - {@link SetSubnetsCommandInput}
39
+ * @returns {@link SetSubnetsCommandOutput}
33
40
  * @see {@link SetSubnetsCommandInput} for command's `input` shape.
34
41
  * @see {@link SetSubnetsCommandOutput} for command's `response` shape.
35
42
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -86,11 +93,20 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
86
93
  export declare class SetSubnetsCommand extends $Command<SetSubnetsCommandInput, SetSubnetsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
87
94
  readonly input: SetSubnetsCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: SetSubnetsCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetSubnetsCommandInput, SetSubnetsCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ElasticLoadBalancingV2 service.
4
6
  */
5
7
  export declare class ElasticLoadBalancingV2ServiceException extends __ServiceException {