@aws-sdk/client-elastic-load-balancing 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/ElasticLoadBalancing.d.ts +574 -150
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +304 -102
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1051 -932
- package/dist-types/ts3.4/pagination/DescribeLoadBalancersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +353 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeLoadBalancersCommandInput,
|
|
4
|
+
DescribeLoadBalancersCommandOutput,
|
|
5
|
+
} from "../commands/DescribeLoadBalancersCommand";
|
|
6
|
+
import { ElasticLoadBalancingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeLoadBalancers(
|
|
8
|
+
config: ElasticLoadBalancingPaginationConfiguration,
|
|
9
|
+
input: DescribeLoadBalancersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeLoadBalancersCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ElasticLoadBalancing } from "../ElasticLoadBalancing";
|
|
3
|
-
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
-
export interface ElasticLoadBalancingPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ElasticLoadBalancing } from "../ElasticLoadBalancing";
|
|
3
|
+
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
4
|
+
export interface ElasticLoadBalancingPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ElasticLoadBalancing | ElasticLoadBalancingClient;
|
|
7
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./DescribeLoadBalancersPaginator";
|
|
2
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeLoadBalancersPaginator";
|
|
2
|
+
export * from "./Interfaces";
|
|
@@ -1,89 +1,353 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AddTagsCommandInput,
|
|
8
|
+
AddTagsCommandOutput,
|
|
9
|
+
} from "../commands/AddTagsCommand";
|
|
10
|
+
import {
|
|
11
|
+
ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
12
|
+
ApplySecurityGroupsToLoadBalancerCommandOutput,
|
|
13
|
+
} from "../commands/ApplySecurityGroupsToLoadBalancerCommand";
|
|
14
|
+
import {
|
|
15
|
+
AttachLoadBalancerToSubnetsCommandInput,
|
|
16
|
+
AttachLoadBalancerToSubnetsCommandOutput,
|
|
17
|
+
} from "../commands/AttachLoadBalancerToSubnetsCommand";
|
|
18
|
+
import {
|
|
19
|
+
ConfigureHealthCheckCommandInput,
|
|
20
|
+
ConfigureHealthCheckCommandOutput,
|
|
21
|
+
} from "../commands/ConfigureHealthCheckCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateAppCookieStickinessPolicyCommandInput,
|
|
24
|
+
CreateAppCookieStickinessPolicyCommandOutput,
|
|
25
|
+
} from "../commands/CreateAppCookieStickinessPolicyCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateLBCookieStickinessPolicyCommandInput,
|
|
28
|
+
CreateLBCookieStickinessPolicyCommandOutput,
|
|
29
|
+
} from "../commands/CreateLBCookieStickinessPolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateLoadBalancerCommandInput,
|
|
32
|
+
CreateLoadBalancerCommandOutput,
|
|
33
|
+
} from "../commands/CreateLoadBalancerCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateLoadBalancerListenersCommandInput,
|
|
36
|
+
CreateLoadBalancerListenersCommandOutput,
|
|
37
|
+
} from "../commands/CreateLoadBalancerListenersCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateLoadBalancerPolicyCommandInput,
|
|
40
|
+
CreateLoadBalancerPolicyCommandOutput,
|
|
41
|
+
} from "../commands/CreateLoadBalancerPolicyCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteLoadBalancerCommandInput,
|
|
44
|
+
DeleteLoadBalancerCommandOutput,
|
|
45
|
+
} from "../commands/DeleteLoadBalancerCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteLoadBalancerListenersCommandInput,
|
|
48
|
+
DeleteLoadBalancerListenersCommandOutput,
|
|
49
|
+
} from "../commands/DeleteLoadBalancerListenersCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteLoadBalancerPolicyCommandInput,
|
|
52
|
+
DeleteLoadBalancerPolicyCommandOutput,
|
|
53
|
+
} from "../commands/DeleteLoadBalancerPolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeregisterInstancesFromLoadBalancerCommandInput,
|
|
56
|
+
DeregisterInstancesFromLoadBalancerCommandOutput,
|
|
57
|
+
} from "../commands/DeregisterInstancesFromLoadBalancerCommand";
|
|
58
|
+
import {
|
|
59
|
+
DescribeAccountLimitsCommandInput,
|
|
60
|
+
DescribeAccountLimitsCommandOutput,
|
|
61
|
+
} from "../commands/DescribeAccountLimitsCommand";
|
|
62
|
+
import {
|
|
63
|
+
DescribeInstanceHealthCommandInput,
|
|
64
|
+
DescribeInstanceHealthCommandOutput,
|
|
65
|
+
} from "../commands/DescribeInstanceHealthCommand";
|
|
66
|
+
import {
|
|
67
|
+
DescribeLoadBalancerAttributesCommandInput,
|
|
68
|
+
DescribeLoadBalancerAttributesCommandOutput,
|
|
69
|
+
} from "../commands/DescribeLoadBalancerAttributesCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeLoadBalancerPoliciesCommandInput,
|
|
72
|
+
DescribeLoadBalancerPoliciesCommandOutput,
|
|
73
|
+
} from "../commands/DescribeLoadBalancerPoliciesCommand";
|
|
74
|
+
import {
|
|
75
|
+
DescribeLoadBalancerPolicyTypesCommandInput,
|
|
76
|
+
DescribeLoadBalancerPolicyTypesCommandOutput,
|
|
77
|
+
} from "../commands/DescribeLoadBalancerPolicyTypesCommand";
|
|
78
|
+
import {
|
|
79
|
+
DescribeLoadBalancersCommandInput,
|
|
80
|
+
DescribeLoadBalancersCommandOutput,
|
|
81
|
+
} from "../commands/DescribeLoadBalancersCommand";
|
|
82
|
+
import {
|
|
83
|
+
DescribeTagsCommandInput,
|
|
84
|
+
DescribeTagsCommandOutput,
|
|
85
|
+
} from "../commands/DescribeTagsCommand";
|
|
86
|
+
import {
|
|
87
|
+
DetachLoadBalancerFromSubnetsCommandInput,
|
|
88
|
+
DetachLoadBalancerFromSubnetsCommandOutput,
|
|
89
|
+
} from "../commands/DetachLoadBalancerFromSubnetsCommand";
|
|
90
|
+
import {
|
|
91
|
+
DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
92
|
+
DisableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
93
|
+
} from "../commands/DisableAvailabilityZonesForLoadBalancerCommand";
|
|
94
|
+
import {
|
|
95
|
+
EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
96
|
+
EnableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
97
|
+
} from "../commands/EnableAvailabilityZonesForLoadBalancerCommand";
|
|
98
|
+
import {
|
|
99
|
+
ModifyLoadBalancerAttributesCommandInput,
|
|
100
|
+
ModifyLoadBalancerAttributesCommandOutput,
|
|
101
|
+
} from "../commands/ModifyLoadBalancerAttributesCommand";
|
|
102
|
+
import {
|
|
103
|
+
RegisterInstancesWithLoadBalancerCommandInput,
|
|
104
|
+
RegisterInstancesWithLoadBalancerCommandOutput,
|
|
105
|
+
} from "../commands/RegisterInstancesWithLoadBalancerCommand";
|
|
106
|
+
import {
|
|
107
|
+
RemoveTagsCommandInput,
|
|
108
|
+
RemoveTagsCommandOutput,
|
|
109
|
+
} from "../commands/RemoveTagsCommand";
|
|
110
|
+
import {
|
|
111
|
+
SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
112
|
+
SetLoadBalancerListenerSSLCertificateCommandOutput,
|
|
113
|
+
} from "../commands/SetLoadBalancerListenerSSLCertificateCommand";
|
|
114
|
+
import {
|
|
115
|
+
SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
116
|
+
SetLoadBalancerPoliciesForBackendServerCommandOutput,
|
|
117
|
+
} from "../commands/SetLoadBalancerPoliciesForBackendServerCommand";
|
|
118
|
+
import {
|
|
119
|
+
SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
120
|
+
SetLoadBalancerPoliciesOfListenerCommandOutput,
|
|
121
|
+
} from "../commands/SetLoadBalancerPoliciesOfListenerCommand";
|
|
122
|
+
export declare const serializeAws_queryAddTagsCommand: (
|
|
123
|
+
input: AddTagsCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_queryApplySecurityGroupsToLoadBalancerCommand: (
|
|
127
|
+
input: ApplySecurityGroupsToLoadBalancerCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_queryAttachLoadBalancerToSubnetsCommand: (
|
|
131
|
+
input: AttachLoadBalancerToSubnetsCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_queryConfigureHealthCheckCommand: (
|
|
135
|
+
input: ConfigureHealthCheckCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_queryCreateAppCookieStickinessPolicyCommand: (
|
|
139
|
+
input: CreateAppCookieStickinessPolicyCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_queryCreateLBCookieStickinessPolicyCommand: (
|
|
143
|
+
input: CreateLBCookieStickinessPolicyCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_queryCreateLoadBalancerCommand: (
|
|
147
|
+
input: CreateLoadBalancerCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_queryCreateLoadBalancerListenersCommand: (
|
|
151
|
+
input: CreateLoadBalancerListenersCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_queryCreateLoadBalancerPolicyCommand: (
|
|
155
|
+
input: CreateLoadBalancerPolicyCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_queryDeleteLoadBalancerCommand: (
|
|
159
|
+
input: DeleteLoadBalancerCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_queryDeleteLoadBalancerListenersCommand: (
|
|
163
|
+
input: DeleteLoadBalancerListenersCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_queryDeleteLoadBalancerPolicyCommand: (
|
|
167
|
+
input: DeleteLoadBalancerPolicyCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_queryDeregisterInstancesFromLoadBalancerCommand: (
|
|
171
|
+
input: DeregisterInstancesFromLoadBalancerCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_queryDescribeAccountLimitsCommand: (
|
|
175
|
+
input: DescribeAccountLimitsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_queryDescribeInstanceHealthCommand: (
|
|
179
|
+
input: DescribeInstanceHealthCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_queryDescribeLoadBalancerAttributesCommand: (
|
|
183
|
+
input: DescribeLoadBalancerAttributesCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_queryDescribeLoadBalancerPoliciesCommand: (
|
|
187
|
+
input: DescribeLoadBalancerPoliciesCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_queryDescribeLoadBalancerPolicyTypesCommand: (
|
|
191
|
+
input: DescribeLoadBalancerPolicyTypesCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_queryDescribeLoadBalancersCommand: (
|
|
195
|
+
input: DescribeLoadBalancersCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_queryDescribeTagsCommand: (
|
|
199
|
+
input: DescribeTagsCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_queryDetachLoadBalancerFromSubnetsCommand: (
|
|
203
|
+
input: DetachLoadBalancerFromSubnetsCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_queryDisableAvailabilityZonesForLoadBalancerCommand: (
|
|
207
|
+
input: DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_queryEnableAvailabilityZonesForLoadBalancerCommand: (
|
|
211
|
+
input: EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_queryModifyLoadBalancerAttributesCommand: (
|
|
215
|
+
input: ModifyLoadBalancerAttributesCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_queryRegisterInstancesWithLoadBalancerCommand: (
|
|
219
|
+
input: RegisterInstancesWithLoadBalancerCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_queryRemoveTagsCommand: (
|
|
223
|
+
input: RemoveTagsCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_querySetLoadBalancerListenerSSLCertificateCommand: (
|
|
227
|
+
input: SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_querySetLoadBalancerPoliciesForBackendServerCommand: (
|
|
231
|
+
input: SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_querySetLoadBalancerPoliciesOfListenerCommand: (
|
|
235
|
+
input: SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const deserializeAws_queryAddTagsCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<AddTagsCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_queryApplySecurityGroupsToLoadBalancerCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<ApplySecurityGroupsToLoadBalancerCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_queryAttachLoadBalancerToSubnetsCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<AttachLoadBalancerToSubnetsCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_queryConfigureHealthCheckCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<ConfigureHealthCheckCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_queryCreateAppCookieStickinessPolicyCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<CreateAppCookieStickinessPolicyCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_queryCreateLBCookieStickinessPolicyCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<CreateLBCookieStickinessPolicyCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_queryCreateLoadBalancerCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateLoadBalancerCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_queryCreateLoadBalancerListenersCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<CreateLoadBalancerListenersCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_queryCreateLoadBalancerPolicyCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<CreateLoadBalancerPolicyCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_queryDeleteLoadBalancerCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeleteLoadBalancerCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_queryDeleteLoadBalancerListenersCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteLoadBalancerListenersCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_queryDeleteLoadBalancerPolicyCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeleteLoadBalancerPolicyCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_queryDeregisterInstancesFromLoadBalancerCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DeregisterInstancesFromLoadBalancerCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_queryDescribeAccountLimitsCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DescribeAccountLimitsCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_queryDescribeInstanceHealthCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DescribeInstanceHealthCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_queryDescribeLoadBalancerAttributesCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DescribeLoadBalancerAttributesCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_queryDescribeLoadBalancerPoliciesCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<DescribeLoadBalancerPoliciesCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_queryDescribeLoadBalancerPolicyTypesCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<DescribeLoadBalancerPolicyTypesCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_queryDescribeLoadBalancersCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<DescribeLoadBalancersCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_queryDescribeTagsCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<DescribeTagsCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_queryDetachLoadBalancerFromSubnetsCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<DetachLoadBalancerFromSubnetsCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_queryDisableAvailabilityZonesForLoadBalancerCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<DisableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_queryEnableAvailabilityZonesForLoadBalancerCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<EnableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_queryModifyLoadBalancerAttributesCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ModifyLoadBalancerAttributesCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_queryRegisterInstancesWithLoadBalancerCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<RegisterInstancesWithLoadBalancerCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_queryRemoveTagsCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<RemoveTagsCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_querySetLoadBalancerListenerSSLCertificateCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<SetLoadBalancerListenerSSLCertificateCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_querySetLoadBalancerPoliciesForBackendServerCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<SetLoadBalancerPoliciesForBackendServerCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_querySetLoadBalancerPoliciesOfListenerCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<SetLoadBalancerPoliciesOfListenerCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: ElasticLoadBalancingClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|