@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.
- package/dist-cjs/protocols/Aws_query.js +97 -407
- package/dist-es/protocols/Aws_query.js +97 -407
- package/dist-types/ElasticLoadBalancingV2.d.ts +35 -0
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +24 -4
- package/dist-types/commands/AddListenerCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +16 -0
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRulesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTargetHealthCommand.d.ts +16 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +16 -0
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ModifyRuleCommand.d.ts +16 -0
- package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ModifyTargetGroupCommand.d.ts +16 -0
- package/dist-types/commands/RegisterTargetsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +16 -0
- package/dist-types/commands/SetRulePrioritiesCommand.d.ts +16 -0
- package/dist-types/commands/SetSecurityGroupsCommand.d.ts +16 -0
- package/dist-types/commands/SetSubnetsCommand.d.ts +16 -0
- package/dist-types/models/ElasticLoadBalancingV2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +328 -11
- package/dist-types/pagination/DescribeListenersPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeTargetGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- 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 { DeleteListenerInput, DeleteListenerOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteListenerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteListenerCommandInput extends DeleteListenerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteListenerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified listener.</p>
|
|
18
23
|
* <p>Alternatively, your listener is deleted when you delete the load balancer to which it is
|
|
19
24
|
* attached.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteListenerCommandInput - {@link DeleteListenerCommandInput}
|
|
36
|
+
* @returns {@link DeleteListenerCommandOutput}
|
|
30
37
|
* @see {@link DeleteListenerCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteListenerCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
53
60
|
export declare class DeleteListenerCommand extends $Command<DeleteListenerCommandInput, DeleteListenerCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
54
61
|
readonly input: DeleteListenerCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeleteListenerCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteListenerCommandInput, DeleteListenerCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DeleteLoadBalancerInput, DeleteLoadBalancerOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLoadBalancerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLoadBalancerCommandInput extends DeleteLoadBalancerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLoadBalancerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified Application Load Balancer, Network Load Balancer, or Gateway Load
|
|
18
23
|
* Balancer. Deleting a load balancer also deletes its listeners.</p>
|
|
19
24
|
* <p>You can't delete a load balancer if deletion protection is enabled. If the load balancer
|
|
@@ -31,6 +36,8 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DeleteLoadBalancerCommandInput - {@link DeleteLoadBalancerCommandInput}
|
|
40
|
+
* @returns {@link DeleteLoadBalancerCommandOutput}
|
|
34
41
|
* @see {@link DeleteLoadBalancerCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DeleteLoadBalancerCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
60
67
|
export declare class DeleteLoadBalancerCommand extends $Command<DeleteLoadBalancerCommandInput, DeleteLoadBalancerCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
61
68
|
readonly input: DeleteLoadBalancerCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DeleteLoadBalancerCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLoadBalancerCommandInput, DeleteLoadBalancerCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DeleteRuleInput, DeleteRuleOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRuleCommandInput extends DeleteRuleInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified rule.</p>
|
|
18
23
|
* <p>You can't delete the default rule.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteRuleCommandInput - {@link DeleteRuleCommandInput}
|
|
35
|
+
* @returns {@link DeleteRuleCommandOutput}
|
|
29
36
|
* @see {@link DeleteRuleCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteRuleCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
52
59
|
export declare class DeleteRuleCommand extends $Command<DeleteRuleCommandInput, DeleteRuleCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteRuleCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteRuleCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRuleCommandInput, DeleteRuleCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DeleteTargetGroupInput, DeleteTargetGroupOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTargetGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTargetGroupCommandInput extends DeleteTargetGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTargetGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified target group.</p>
|
|
18
23
|
* <p>You can delete a target group if it is not referenced by any actions. Deleting a target
|
|
19
24
|
* group also deletes any associated health checks. Deleting a target group does not affect its
|
|
@@ -29,6 +34,8 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteTargetGroupCommandInput - {@link DeleteTargetGroupCommandInput}
|
|
38
|
+
* @returns {@link DeleteTargetGroupCommandOutput}
|
|
32
39
|
* @see {@link DeleteTargetGroupCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteTargetGroupCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
52
59
|
export declare class DeleteTargetGroupCommand extends $Command<DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteTargetGroupCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteTargetGroupCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DeregisterTargetsInput, DeregisterTargetsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterTargetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterTargetsCommandInput extends DeregisterTargetsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterTargetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregisters the specified targets from the specified target group. After the targets are
|
|
18
23
|
* deregistered, they no longer receive traffic from the load balancer.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeregisterTargetsCommandInput - {@link DeregisterTargetsCommandInput}
|
|
35
|
+
* @returns {@link DeregisterTargetsCommandOutput}
|
|
29
36
|
* @see {@link DeregisterTargetsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeregisterTargetsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
58
65
|
export declare class DeregisterTargetsCommand extends $Command<DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
59
66
|
readonly input: DeregisterTargetsCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeregisterTargetsCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAccountLimitsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAccountLimitsCommandInput extends DescribeAccountLimitsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAccountLimitsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimitsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the current Elastic Load Balancing resource limits for your Amazon Web Services
|
|
18
23
|
* account.</p>
|
|
19
24
|
* <p>For more information, see the following:</p>
|
|
@@ -47,6 +52,8 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param DescribeAccountLimitsCommandInput - {@link DescribeAccountLimitsCommandInput}
|
|
56
|
+
* @returns {@link DescribeAccountLimitsCommandOutput}
|
|
50
57
|
* @see {@link DescribeAccountLimitsCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
56
63
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
57
64
|
readonly input: DescribeAccountLimitsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DescribeAccountLimitsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeListenerCertificatesInput, DescribeListenerCertificatesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeListenerCertificatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeListenerCertificatesCommandInput extends DescribeListenerCertificatesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeListenerCertificatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeListenerCertificatesCommandOutput extends DescribeListenerCertificatesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the default certificate and the certificate list for the specified HTTPS or TLS
|
|
18
23
|
* listener.</p>
|
|
19
24
|
* <p>If the default certificate is also in the certificate list, it appears twice in the
|
|
@@ -32,6 +37,8 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DescribeListenerCertificatesCommandInput - {@link DescribeListenerCertificatesCommandInput}
|
|
41
|
+
* @returns {@link DescribeListenerCertificatesCommandOutput}
|
|
35
42
|
* @see {@link DescribeListenerCertificatesCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DescribeListenerCertificatesCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
44
51
|
export declare class DescribeListenerCertificatesCommand extends $Command<DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
45
52
|
readonly input: DescribeListenerCertificatesCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DescribeListenerCertificatesCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeListenersInput, DescribeListenersOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeListenersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeListenersCommandInput extends DescribeListenersInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeListenersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeListenersCommandOutput extends DescribeListenersOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified listeners or the listeners for the specified Application Load
|
|
18
23
|
* Balancer, Network Load Balancer, or Gateway Load Balancer. You must specify either a load
|
|
19
24
|
* balancer or one or more listeners.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeListenersCommandInput - {@link DescribeListenersCommandInput}
|
|
36
|
+
* @returns {@link DescribeListenersCommandOutput}
|
|
30
37
|
* @see {@link DescribeListenersCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeListenersCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
76
83
|
export declare class DescribeListenersCommand extends $Command<DescribeListenersCommandInput, DescribeListenersCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
77
84
|
readonly input: DescribeListenersCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: DescribeListenersCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeListenersCommandInput, DescribeListenersCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLoadBalancerAttributesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLoadBalancerAttributesCommandInput extends DescribeLoadBalancerAttributesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLoadBalancerAttributesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoadBalancerAttributesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the attributes for the specified Application Load Balancer, Network Load
|
|
18
23
|
* Balancer, or Gateway Load Balancer.</p>
|
|
19
24
|
* <p>For more information, see the following:</p>
|
|
@@ -47,6 +52,8 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param DescribeLoadBalancerAttributesCommandInput - {@link DescribeLoadBalancerAttributesCommandInput}
|
|
56
|
+
* @returns {@link DescribeLoadBalancerAttributesCommandOutput}
|
|
50
57
|
* @see {@link DescribeLoadBalancerAttributesCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link DescribeLoadBalancerAttributesCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -96,11 +103,20 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
96
103
|
export declare class DescribeLoadBalancerAttributesCommand extends $Command<DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
97
104
|
readonly input: DescribeLoadBalancerAttributesCommandInput;
|
|
98
105
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
99
109
|
constructor(input: DescribeLoadBalancerAttributesCommandInput);
|
|
100
110
|
/**
|
|
101
111
|
* @internal
|
|
102
112
|
*/
|
|
103
113
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
104
117
|
private serialize;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
105
121
|
private deserialize;
|
|
106
122
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeLoadBalancersInput, DescribeLoadBalancersOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLoadBalancersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLoadBalancersCommandInput extends DescribeLoadBalancersInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLoadBalancersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancersOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified load balancers or all of your load balancers.</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 DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeLoadBalancersCommandInput - {@link DescribeLoadBalancersCommandInput}
|
|
34
|
+
* @returns {@link DescribeLoadBalancersCommandOutput}
|
|
28
35
|
* @see {@link DescribeLoadBalancersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeLoadBalancersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer
|
|
|
82
89
|
export declare class DescribeLoadBalancersCommand extends $Command<DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
83
90
|
readonly input: DescribeLoadBalancersCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: DescribeLoadBalancersCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeRulesInput, DescribeRulesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRulesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRulesCommandInput extends DescribeRulesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRulesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified rules or the rules for the specified listener. You must specify
|
|
18
23
|
* either a listener or one or more rules.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeRulesCommandInput - {@link DescribeRulesCommandInput}
|
|
35
|
+
* @returns {@link DescribeRulesCommandOutput}
|
|
29
36
|
* @see {@link DescribeRulesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeRulesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __Metad
|
|
|
82
89
|
export declare class DescribeRulesCommand extends $Command<DescribeRulesCommandInput, DescribeRulesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
83
90
|
readonly input: DescribeRulesCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: DescribeRulesCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRulesCommandInput, DescribeRulesCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
|
|
5
5
|
import { DescribeSSLPoliciesInput, DescribeSSLPoliciesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSSLPoliciesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSSLPoliciesCommandInput extends DescribeSSLPoliciesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSSLPoliciesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified policies or all policies used for SSL negotiation.</p>
|
|
18
23
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies">Security policies</a> in the <i>Application Load Balancers Guide</i> or
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeSSLPoliciesCommandInput - {@link DescribeSSLPoliciesCommandInput}
|
|
36
|
+
* @returns {@link DescribeSSLPoliciesCommandOutput}
|
|
30
37
|
* @see {@link DescribeSSLPoliciesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeSSLPoliciesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
@@ -144,11 +151,20 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut
|
|
|
144
151
|
export declare class DescribeSSLPoliciesCommand extends $Command<DescribeSSLPoliciesCommandInput, DescribeSSLPoliciesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
145
152
|
readonly input: DescribeSSLPoliciesCommandInput;
|
|
146
153
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
147
157
|
constructor(input: DescribeSSLPoliciesCommandInput);
|
|
148
158
|
/**
|
|
149
159
|
* @internal
|
|
150
160
|
*/
|
|
151
161
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSSLPoliciesCommandInput, DescribeSSLPoliciesCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* @internal
|
|
164
|
+
*/
|
|
152
165
|
private serialize;
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
153
169
|
private deserialize;
|
|
154
170
|
}
|