@aws-sdk/client-elastic-load-balancing 3.1075.0 → 3.1077.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/index.js +1575 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ElasticLoadBalancingServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -309
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1032
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultElasticLoadBalancingHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "elasticloadbalancing",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultElasticLoadBalancingHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1369 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://elasticloadbalancing-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://elasticloadbalancing.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://elasticloadbalancing-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://elasticloadbalancing.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://elasticloadbalancing.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class ElasticLoadBalancingServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, ElasticLoadBalancingServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class AccessPointNotFoundException extends ElasticLoadBalancingServiceException {
|
|
144
|
+
name = "AccessPointNotFoundException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
Message;
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "AccessPointNotFoundException",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, AccessPointNotFoundException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
class DuplicateTagKeysException extends ElasticLoadBalancingServiceException {
|
|
158
|
+
name = "DuplicateTagKeysException";
|
|
159
|
+
$fault = "client";
|
|
160
|
+
Message;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "DuplicateTagKeysException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class TooManyTagsException extends ElasticLoadBalancingServiceException {
|
|
172
|
+
name = "TooManyTagsException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Message;
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "TooManyTagsException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
182
|
+
this.Message = opts.Message;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class InvalidConfigurationRequestException extends ElasticLoadBalancingServiceException {
|
|
186
|
+
name = "InvalidConfigurationRequestException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
Message;
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "InvalidConfigurationRequestException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class InvalidSecurityGroupException extends ElasticLoadBalancingServiceException {
|
|
200
|
+
name = "InvalidSecurityGroupException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
Message;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "InvalidSecurityGroupException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
|
|
210
|
+
this.Message = opts.Message;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class InvalidSubnetException extends ElasticLoadBalancingServiceException {
|
|
214
|
+
name = "InvalidSubnetException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
Message;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "InvalidSubnetException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, InvalidSubnetException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class SubnetNotFoundException extends ElasticLoadBalancingServiceException {
|
|
228
|
+
name = "SubnetNotFoundException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
Message;
|
|
231
|
+
constructor(opts) {
|
|
232
|
+
super({
|
|
233
|
+
name: "SubnetNotFoundException",
|
|
234
|
+
$fault: "client",
|
|
235
|
+
...opts,
|
|
236
|
+
});
|
|
237
|
+
Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
|
|
238
|
+
this.Message = opts.Message;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class CertificateNotFoundException extends ElasticLoadBalancingServiceException {
|
|
242
|
+
name = "CertificateNotFoundException";
|
|
243
|
+
$fault = "client";
|
|
244
|
+
Message;
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "CertificateNotFoundException",
|
|
248
|
+
$fault: "client",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
|
|
252
|
+
this.Message = opts.Message;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
class DuplicatePolicyNameException extends ElasticLoadBalancingServiceException {
|
|
256
|
+
name = "DuplicatePolicyNameException";
|
|
257
|
+
$fault = "client";
|
|
258
|
+
Message;
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "DuplicatePolicyNameException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
Object.setPrototypeOf(this, DuplicatePolicyNameException.prototype);
|
|
266
|
+
this.Message = opts.Message;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
class TooManyPoliciesException extends ElasticLoadBalancingServiceException {
|
|
270
|
+
name = "TooManyPoliciesException";
|
|
271
|
+
$fault = "client";
|
|
272
|
+
Message;
|
|
273
|
+
constructor(opts) {
|
|
274
|
+
super({
|
|
275
|
+
name: "TooManyPoliciesException",
|
|
276
|
+
$fault: "client",
|
|
277
|
+
...opts,
|
|
278
|
+
});
|
|
279
|
+
Object.setPrototypeOf(this, TooManyPoliciesException.prototype);
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class DuplicateAccessPointNameException extends ElasticLoadBalancingServiceException {
|
|
284
|
+
name = "DuplicateAccessPointNameException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
Message;
|
|
287
|
+
constructor(opts) {
|
|
288
|
+
super({
|
|
289
|
+
name: "DuplicateAccessPointNameException",
|
|
290
|
+
$fault: "client",
|
|
291
|
+
...opts,
|
|
292
|
+
});
|
|
293
|
+
Object.setPrototypeOf(this, DuplicateAccessPointNameException.prototype);
|
|
294
|
+
this.Message = opts.Message;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
class InvalidSchemeException extends ElasticLoadBalancingServiceException {
|
|
298
|
+
name = "InvalidSchemeException";
|
|
299
|
+
$fault = "client";
|
|
300
|
+
Message;
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "InvalidSchemeException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
Object.setPrototypeOf(this, InvalidSchemeException.prototype);
|
|
308
|
+
this.Message = opts.Message;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class OperationNotPermittedException extends ElasticLoadBalancingServiceException {
|
|
312
|
+
name = "OperationNotPermittedException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
Message;
|
|
315
|
+
constructor(opts) {
|
|
316
|
+
super({
|
|
317
|
+
name: "OperationNotPermittedException",
|
|
318
|
+
$fault: "client",
|
|
319
|
+
...opts,
|
|
320
|
+
});
|
|
321
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
322
|
+
this.Message = opts.Message;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class TooManyAccessPointsException extends ElasticLoadBalancingServiceException {
|
|
326
|
+
name = "TooManyAccessPointsException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
Message;
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "TooManyAccessPointsException",
|
|
332
|
+
$fault: "client",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
Object.setPrototypeOf(this, TooManyAccessPointsException.prototype);
|
|
336
|
+
this.Message = opts.Message;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
class UnsupportedProtocolException extends ElasticLoadBalancingServiceException {
|
|
340
|
+
name = "UnsupportedProtocolException";
|
|
341
|
+
$fault = "client";
|
|
342
|
+
Message;
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "UnsupportedProtocolException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
|
|
350
|
+
this.Message = opts.Message;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class DuplicateListenerException extends ElasticLoadBalancingServiceException {
|
|
354
|
+
name = "DuplicateListenerException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "DuplicateListenerException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, DuplicateListenerException.prototype);
|
|
364
|
+
this.Message = opts.Message;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
class PolicyTypeNotFoundException extends ElasticLoadBalancingServiceException {
|
|
368
|
+
name = "PolicyTypeNotFoundException";
|
|
369
|
+
$fault = "client";
|
|
370
|
+
Message;
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "PolicyTypeNotFoundException",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts,
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, PolicyTypeNotFoundException.prototype);
|
|
378
|
+
this.Message = opts.Message;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
class DependencyThrottleException extends ElasticLoadBalancingServiceException {
|
|
382
|
+
name = "DependencyThrottleException";
|
|
383
|
+
$fault = "client";
|
|
384
|
+
Message;
|
|
385
|
+
constructor(opts) {
|
|
386
|
+
super({
|
|
387
|
+
name: "DependencyThrottleException",
|
|
388
|
+
$fault: "client",
|
|
389
|
+
...opts,
|
|
390
|
+
});
|
|
391
|
+
Object.setPrototypeOf(this, DependencyThrottleException.prototype);
|
|
392
|
+
this.Message = opts.Message;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
class InvalidEndPointException extends ElasticLoadBalancingServiceException {
|
|
396
|
+
name = "InvalidEndPointException";
|
|
397
|
+
$fault = "client";
|
|
398
|
+
Message;
|
|
399
|
+
constructor(opts) {
|
|
400
|
+
super({
|
|
401
|
+
name: "InvalidEndPointException",
|
|
402
|
+
$fault: "client",
|
|
403
|
+
...opts,
|
|
404
|
+
});
|
|
405
|
+
Object.setPrototypeOf(this, InvalidEndPointException.prototype);
|
|
406
|
+
this.Message = opts.Message;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
class LoadBalancerAttributeNotFoundException extends ElasticLoadBalancingServiceException {
|
|
410
|
+
name = "LoadBalancerAttributeNotFoundException";
|
|
411
|
+
$fault = "client";
|
|
412
|
+
Message;
|
|
413
|
+
constructor(opts) {
|
|
414
|
+
super({
|
|
415
|
+
name: "LoadBalancerAttributeNotFoundException",
|
|
416
|
+
$fault: "client",
|
|
417
|
+
...opts,
|
|
418
|
+
});
|
|
419
|
+
Object.setPrototypeOf(this, LoadBalancerAttributeNotFoundException.prototype);
|
|
420
|
+
this.Message = opts.Message;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
class PolicyNotFoundException extends ElasticLoadBalancingServiceException {
|
|
424
|
+
name = "PolicyNotFoundException";
|
|
425
|
+
$fault = "client";
|
|
426
|
+
Message;
|
|
427
|
+
constructor(opts) {
|
|
428
|
+
super({
|
|
429
|
+
name: "PolicyNotFoundException",
|
|
430
|
+
$fault: "client",
|
|
431
|
+
...opts,
|
|
432
|
+
});
|
|
433
|
+
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
434
|
+
this.Message = opts.Message;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
class ListenerNotFoundException extends ElasticLoadBalancingServiceException {
|
|
438
|
+
name = "ListenerNotFoundException";
|
|
439
|
+
$fault = "client";
|
|
440
|
+
Message;
|
|
441
|
+
constructor(opts) {
|
|
442
|
+
super({
|
|
443
|
+
name: "ListenerNotFoundException",
|
|
444
|
+
$fault: "client",
|
|
445
|
+
...opts,
|
|
446
|
+
});
|
|
447
|
+
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
448
|
+
this.Message = opts.Message;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
const _AA = "AdditionalAttribute";
|
|
453
|
+
const _AAZI = "AddAvailabilityZonesInput";
|
|
454
|
+
const _AAZO = "AddAvailabilityZonesOutput";
|
|
455
|
+
const _AAd = "AdditionalAttributes";
|
|
456
|
+
const _ACSP = "AppCookieStickinessPolicy";
|
|
457
|
+
const _ACSPp = "AppCookieStickinessPolicies";
|
|
458
|
+
const _AL = "AccessLog";
|
|
459
|
+
const _ALBTS = "AttachLoadBalancerToSubnets";
|
|
460
|
+
const _ALBTSI = "AttachLoadBalancerToSubnetsInput";
|
|
461
|
+
const _ALBTSO = "AttachLoadBalancerToSubnetsOutput";
|
|
462
|
+
const _AN = "AttributeName";
|
|
463
|
+
const _APNFE = "AccessPointNotFoundException";
|
|
464
|
+
const _ASGTLB = "ApplySecurityGroupsToLoadBalancer";
|
|
465
|
+
const _ASGTLBI = "ApplySecurityGroupsToLoadBalancerInput";
|
|
466
|
+
const _ASGTLBO = "ApplySecurityGroupsToLoadBalancerOutput";
|
|
467
|
+
const _AT = "AttributeType";
|
|
468
|
+
const _ATI = "AddTagsInput";
|
|
469
|
+
const _ATO = "AddTagsOutput";
|
|
470
|
+
const _ATd = "AddTags";
|
|
471
|
+
const _AV = "AttributeValue";
|
|
472
|
+
const _AZ = "AvailabilityZones";
|
|
473
|
+
const _BSD = "BackendServerDescription";
|
|
474
|
+
const _BSDa = "BackendServerDescriptions";
|
|
475
|
+
const _C = "Cardinality";
|
|
476
|
+
const _CACSP = "CreateAppCookieStickinessPolicy";
|
|
477
|
+
const _CACSPI = "CreateAppCookieStickinessPolicyInput";
|
|
478
|
+
const _CACSPO = "CreateAppCookieStickinessPolicyOutput";
|
|
479
|
+
const _CAPI = "CreateAccessPointInput";
|
|
480
|
+
const _CAPO = "CreateAccessPointOutput";
|
|
481
|
+
const _CD = "ConnectionDraining";
|
|
482
|
+
const _CEP = "CookieExpirationPeriod";
|
|
483
|
+
const _CHC = "ConfigureHealthCheck";
|
|
484
|
+
const _CHCI = "ConfigureHealthCheckInput";
|
|
485
|
+
const _CHCO = "ConfigureHealthCheckOutput";
|
|
486
|
+
const _CHZN = "CanonicalHostedZoneName";
|
|
487
|
+
const _CHZNID = "CanonicalHostedZoneNameID";
|
|
488
|
+
const _CLB = "CreateLoadBalancer";
|
|
489
|
+
const _CLBCSP = "CreateLBCookieStickinessPolicy";
|
|
490
|
+
const _CLBCSPI = "CreateLBCookieStickinessPolicyInput";
|
|
491
|
+
const _CLBCSPO = "CreateLBCookieStickinessPolicyOutput";
|
|
492
|
+
const _CLBL = "CreateLoadBalancerListeners";
|
|
493
|
+
const _CLBLI = "CreateLoadBalancerListenerInput";
|
|
494
|
+
const _CLBLO = "CreateLoadBalancerListenerOutput";
|
|
495
|
+
const _CLBP = "CreateLoadBalancerPolicy";
|
|
496
|
+
const _CLBPI = "CreateLoadBalancerPolicyInput";
|
|
497
|
+
const _CLBPO = "CreateLoadBalancerPolicyOutput";
|
|
498
|
+
const _CN = "CookieName";
|
|
499
|
+
const _CNFE = "CertificateNotFoundException";
|
|
500
|
+
const _CS = "ConnectionSettings";
|
|
501
|
+
const _CT = "CreatedTime";
|
|
502
|
+
const _CZLB = "CrossZoneLoadBalancing";
|
|
503
|
+
const _D = "Description";
|
|
504
|
+
const _DAL = "DescribeAccountLimits";
|
|
505
|
+
const _DALI = "DescribeAccountLimitsInput";
|
|
506
|
+
const _DALO = "DescribeAccountLimitsOutput";
|
|
507
|
+
const _DAPI = "DeleteAccessPointInput";
|
|
508
|
+
const _DAPIe = "DescribeAccessPointsInput";
|
|
509
|
+
const _DAPNE = "DuplicateAccessPointNameException";
|
|
510
|
+
const _DAPO = "DeleteAccessPointOutput";
|
|
511
|
+
const _DAPOe = "DescribeAccessPointsOutput";
|
|
512
|
+
const _DAZFLB = "DisableAvailabilityZonesForLoadBalancer";
|
|
513
|
+
const _DEPI = "DeregisterEndPointsInput";
|
|
514
|
+
const _DEPO = "DeregisterEndPointsOutput";
|
|
515
|
+
const _DEPSI = "DescribeEndPointStateInput";
|
|
516
|
+
const _DEPSO = "DescribeEndPointStateOutput";
|
|
517
|
+
const _DIFLB = "DeregisterInstancesFromLoadBalancer";
|
|
518
|
+
const _DIH = "DescribeInstanceHealth";
|
|
519
|
+
const _DLB = "DeleteLoadBalancer";
|
|
520
|
+
const _DLBA = "DescribeLoadBalancerAttributes";
|
|
521
|
+
const _DLBAI = "DescribeLoadBalancerAttributesInput";
|
|
522
|
+
const _DLBAO = "DescribeLoadBalancerAttributesOutput";
|
|
523
|
+
const _DLBFS = "DetachLoadBalancerFromSubnets";
|
|
524
|
+
const _DLBFSI = "DetachLoadBalancerFromSubnetsInput";
|
|
525
|
+
const _DLBFSO = "DetachLoadBalancerFromSubnetsOutput";
|
|
526
|
+
const _DLBL = "DeleteLoadBalancerListeners";
|
|
527
|
+
const _DLBLI = "DeleteLoadBalancerListenerInput";
|
|
528
|
+
const _DLBLO = "DeleteLoadBalancerListenerOutput";
|
|
529
|
+
const _DLBP = "DeleteLoadBalancerPolicy";
|
|
530
|
+
const _DLBPI = "DeleteLoadBalancerPolicyInput";
|
|
531
|
+
const _DLBPIe = "DescribeLoadBalancerPoliciesInput";
|
|
532
|
+
const _DLBPO = "DeleteLoadBalancerPolicyOutput";
|
|
533
|
+
const _DLBPOe = "DescribeLoadBalancerPoliciesOutput";
|
|
534
|
+
const _DLBPT = "DescribeLoadBalancerPolicyTypes";
|
|
535
|
+
const _DLBPTI = "DescribeLoadBalancerPolicyTypesInput";
|
|
536
|
+
const _DLBPTO = "DescribeLoadBalancerPolicyTypesOutput";
|
|
537
|
+
const _DLBPe = "DescribeLoadBalancerPolicies";
|
|
538
|
+
const _DLBe = "DescribeLoadBalancers";
|
|
539
|
+
const _DLE = "DuplicateListenerException";
|
|
540
|
+
const _DNSN = "DNSName";
|
|
541
|
+
const _DPNE = "DuplicatePolicyNameException";
|
|
542
|
+
const _DT = "DescribeTags";
|
|
543
|
+
const _DTE = "DependencyThrottleException";
|
|
544
|
+
const _DTI = "DescribeTagsInput";
|
|
545
|
+
const _DTKE = "DuplicateTagKeysException";
|
|
546
|
+
const _DTO = "DescribeTagsOutput";
|
|
547
|
+
const _DV = "DefaultValue";
|
|
548
|
+
const _E = "Enabled";
|
|
549
|
+
const _EAZFLB = "EnableAvailabilityZonesForLoadBalancer";
|
|
550
|
+
const _EI = "EmitInterval";
|
|
551
|
+
const _GN = "GroupName";
|
|
552
|
+
const _HC = "HealthCheck";
|
|
553
|
+
const _HT = "HealthyThreshold";
|
|
554
|
+
const _I = "Instances";
|
|
555
|
+
const _ICRE = "InvalidConfigurationRequestException";
|
|
556
|
+
const _IEPE = "InvalidEndPointException";
|
|
557
|
+
const _II = "InstanceId";
|
|
558
|
+
const _IP = "InstancePort";
|
|
559
|
+
const _IPn = "InstanceProtocol";
|
|
560
|
+
const _IS = "InstanceStates";
|
|
561
|
+
const _ISE = "InvalidSchemeException";
|
|
562
|
+
const _ISEn = "InvalidSubnetException";
|
|
563
|
+
const _ISGE = "InvalidSecurityGroupException";
|
|
564
|
+
const _ISn = "InstanceState";
|
|
565
|
+
const _IT = "IdleTimeout";
|
|
566
|
+
const _In = "Interval";
|
|
567
|
+
const _Ins = "Instance";
|
|
568
|
+
const _K = "Key";
|
|
569
|
+
const _L = "Listeners";
|
|
570
|
+
const _LBA = "LoadBalancerAttributes";
|
|
571
|
+
const _LBANFE = "LoadBalancerAttributeNotFoundException";
|
|
572
|
+
const _LBCSP = "LBCookieStickinessPolicy";
|
|
573
|
+
const _LBCSPo = "LBCookieStickinessPolicies";
|
|
574
|
+
const _LBD = "LoadBalancerDescriptions";
|
|
575
|
+
const _LBDo = "LoadBalancerDescription";
|
|
576
|
+
const _LBN = "LoadBalancerName";
|
|
577
|
+
const _LBNo = "LoadBalancerNames";
|
|
578
|
+
const _LBP = "LoadBalancerPorts";
|
|
579
|
+
const _LBPo = "LoadBalancerPort";
|
|
580
|
+
const _LD = "ListenerDescription";
|
|
581
|
+
const _LDi = "ListenerDescriptions";
|
|
582
|
+
const _LNFE = "ListenerNotFoundException";
|
|
583
|
+
const _Li = "Limits";
|
|
584
|
+
const _Lim = "Limit";
|
|
585
|
+
const _Lis = "Listener";
|
|
586
|
+
const _M = "Message";
|
|
587
|
+
const _MLBA = "ModifyLoadBalancerAttributes";
|
|
588
|
+
const _MLBAI = "ModifyLoadBalancerAttributesInput";
|
|
589
|
+
const _MLBAO = "ModifyLoadBalancerAttributesOutput";
|
|
590
|
+
const _Ma = "Marker";
|
|
591
|
+
const _Max = "Max";
|
|
592
|
+
const _N = "Name";
|
|
593
|
+
const _NM = "NextMarker";
|
|
594
|
+
const _OA = "OwnerAlias";
|
|
595
|
+
const _ONPE = "OperationNotPermittedException";
|
|
596
|
+
const _OP = "OtherPolicies";
|
|
597
|
+
const _P = "Protocol";
|
|
598
|
+
const _PA = "PolicyAttributes";
|
|
599
|
+
const _PAD = "PolicyAttributeDescription";
|
|
600
|
+
const _PADo = "PolicyAttributeDescriptions";
|
|
601
|
+
const _PATD = "PolicyAttributeTypeDescription";
|
|
602
|
+
const _PATDo = "PolicyAttributeTypeDescriptions";
|
|
603
|
+
const _PAo = "PolicyAttribute";
|
|
604
|
+
const _PD = "PolicyDescriptions";
|
|
605
|
+
const _PDo = "PolicyDescription";
|
|
606
|
+
const _PN = "PolicyName";
|
|
607
|
+
const _PNFE = "PolicyNotFoundException";
|
|
608
|
+
const _PNo = "PolicyNames";
|
|
609
|
+
const _PS = "PageSize";
|
|
610
|
+
const _PTD = "PolicyTypeDescriptions";
|
|
611
|
+
const _PTDo = "PolicyTypeDescription";
|
|
612
|
+
const _PTN = "PolicyTypeName";
|
|
613
|
+
const _PTNFE = "PolicyTypeNotFoundException";
|
|
614
|
+
const _PTNo = "PolicyTypeNames";
|
|
615
|
+
const _Po = "Policies";
|
|
616
|
+
const _RAZI = "RemoveAvailabilityZonesInput";
|
|
617
|
+
const _RAZO = "RemoveAvailabilityZonesOutput";
|
|
618
|
+
const _RC = "ReasonCode";
|
|
619
|
+
const _REPI = "RegisterEndPointsInput";
|
|
620
|
+
const _REPO = "RegisterEndPointsOutput";
|
|
621
|
+
const _RIWLB = "RegisterInstancesWithLoadBalancer";
|
|
622
|
+
const _RT = "RemoveTags";
|
|
623
|
+
const _RTI = "RemoveTagsInput";
|
|
624
|
+
const _RTO = "RemoveTagsOutput";
|
|
625
|
+
const _S = "Subnets";
|
|
626
|
+
const _SBN = "S3BucketName";
|
|
627
|
+
const _SBP = "S3BucketPrefix";
|
|
628
|
+
const _SG = "SecurityGroups";
|
|
629
|
+
const _SLBLSSLC = "SetLoadBalancerListenerSSLCertificate";
|
|
630
|
+
const _SLBLSSLCI = "SetLoadBalancerListenerSSLCertificateInput";
|
|
631
|
+
const _SLBLSSLCO = "SetLoadBalancerListenerSSLCertificateOutput";
|
|
632
|
+
const _SLBPFBS = "SetLoadBalancerPoliciesForBackendServer";
|
|
633
|
+
const _SLBPFBSI = "SetLoadBalancerPoliciesForBackendServerInput";
|
|
634
|
+
const _SLBPFBSO = "SetLoadBalancerPoliciesForBackendServerOutput";
|
|
635
|
+
const _SLBPOL = "SetLoadBalancerPoliciesOfListener";
|
|
636
|
+
const _SLBPOLI = "SetLoadBalancerPoliciesOfListenerInput";
|
|
637
|
+
const _SLBPOLO = "SetLoadBalancerPoliciesOfListenerOutput";
|
|
638
|
+
const _SNFE = "SubnetNotFoundException";
|
|
639
|
+
const _SSG = "SourceSecurityGroup";
|
|
640
|
+
const _SSLCI = "SSLCertificateId";
|
|
641
|
+
const _Sc = "Scheme";
|
|
642
|
+
const _St = "State";
|
|
643
|
+
const _T = "Tags";
|
|
644
|
+
const _TD = "TagDescriptions";
|
|
645
|
+
const _TDa = "TagDescription";
|
|
646
|
+
const _TKL = "TagKeyList";
|
|
647
|
+
const _TKO = "TagKeyOnly";
|
|
648
|
+
const _TL = "TagList";
|
|
649
|
+
const _TMAPE = "TooManyAccessPointsException";
|
|
650
|
+
const _TMPE = "TooManyPoliciesException";
|
|
651
|
+
const _TMTE = "TooManyTagsException";
|
|
652
|
+
const _Ta = "Target";
|
|
653
|
+
const _Tag = "Tag";
|
|
654
|
+
const _Ti = "Timeout";
|
|
655
|
+
const _UPE = "UnsupportedProtocolException";
|
|
656
|
+
const _UT = "UnhealthyThreshold";
|
|
657
|
+
const _V = "Value";
|
|
658
|
+
const _VPCI = "VPCId";
|
|
659
|
+
const _aQE = "awsQueryError";
|
|
660
|
+
const _c = "client";
|
|
661
|
+
const _e = "error";
|
|
662
|
+
const _hE = "httpError";
|
|
663
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elasticloadbalancing";
|
|
664
|
+
const n0 = "com.amazonaws.elasticloadbalancing";
|
|
665
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
666
|
+
var ElasticLoadBalancingServiceException$ = [-3, _s, "ElasticLoadBalancingServiceException", 0, [], []];
|
|
667
|
+
_s_registry.registerError(ElasticLoadBalancingServiceException$, ElasticLoadBalancingServiceException);
|
|
668
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
669
|
+
var AccessPointNotFoundException$ = [-3, n0, _APNFE,
|
|
670
|
+
{ [_aQE]: [`LoadBalancerNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
671
|
+
[_M],
|
|
672
|
+
[0]
|
|
673
|
+
];
|
|
674
|
+
n0_registry.registerError(AccessPointNotFoundException$, AccessPointNotFoundException);
|
|
675
|
+
var CertificateNotFoundException$ = [-3, n0, _CNFE,
|
|
676
|
+
{ [_aQE]: [`CertificateNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
677
|
+
[_M],
|
|
678
|
+
[0]
|
|
679
|
+
];
|
|
680
|
+
n0_registry.registerError(CertificateNotFoundException$, CertificateNotFoundException);
|
|
681
|
+
var DependencyThrottleException$ = [-3, n0, _DTE,
|
|
682
|
+
{ [_aQE]: [`DependencyThrottle`, 400], [_e]: _c, [_hE]: 400 },
|
|
683
|
+
[_M],
|
|
684
|
+
[0]
|
|
685
|
+
];
|
|
686
|
+
n0_registry.registerError(DependencyThrottleException$, DependencyThrottleException);
|
|
687
|
+
var DuplicateAccessPointNameException$ = [-3, n0, _DAPNE,
|
|
688
|
+
{ [_aQE]: [`DuplicateLoadBalancerName`, 400], [_e]: _c, [_hE]: 400 },
|
|
689
|
+
[_M],
|
|
690
|
+
[0]
|
|
691
|
+
];
|
|
692
|
+
n0_registry.registerError(DuplicateAccessPointNameException$, DuplicateAccessPointNameException);
|
|
693
|
+
var DuplicateListenerException$ = [-3, n0, _DLE,
|
|
694
|
+
{ [_aQE]: [`DuplicateListener`, 400], [_e]: _c, [_hE]: 400 },
|
|
695
|
+
[_M],
|
|
696
|
+
[0]
|
|
697
|
+
];
|
|
698
|
+
n0_registry.registerError(DuplicateListenerException$, DuplicateListenerException);
|
|
699
|
+
var DuplicatePolicyNameException$ = [-3, n0, _DPNE,
|
|
700
|
+
{ [_aQE]: [`DuplicatePolicyName`, 400], [_e]: _c, [_hE]: 400 },
|
|
701
|
+
[_M],
|
|
702
|
+
[0]
|
|
703
|
+
];
|
|
704
|
+
n0_registry.registerError(DuplicatePolicyNameException$, DuplicatePolicyNameException);
|
|
705
|
+
var DuplicateTagKeysException$ = [-3, n0, _DTKE,
|
|
706
|
+
{ [_aQE]: [`DuplicateTagKeys`, 400], [_e]: _c, [_hE]: 400 },
|
|
707
|
+
[_M],
|
|
708
|
+
[0]
|
|
709
|
+
];
|
|
710
|
+
n0_registry.registerError(DuplicateTagKeysException$, DuplicateTagKeysException);
|
|
711
|
+
var InvalidConfigurationRequestException$ = [-3, n0, _ICRE,
|
|
712
|
+
{ [_aQE]: [`InvalidConfigurationRequest`, 409], [_e]: _c, [_hE]: 409 },
|
|
713
|
+
[_M],
|
|
714
|
+
[0]
|
|
715
|
+
];
|
|
716
|
+
n0_registry.registerError(InvalidConfigurationRequestException$, InvalidConfigurationRequestException);
|
|
717
|
+
var InvalidEndPointException$ = [-3, n0, _IEPE,
|
|
718
|
+
{ [_aQE]: [`InvalidInstance`, 400], [_e]: _c, [_hE]: 400 },
|
|
719
|
+
[_M],
|
|
720
|
+
[0]
|
|
721
|
+
];
|
|
722
|
+
n0_registry.registerError(InvalidEndPointException$, InvalidEndPointException);
|
|
723
|
+
var InvalidSchemeException$ = [-3, n0, _ISE,
|
|
724
|
+
{ [_aQE]: [`InvalidScheme`, 400], [_e]: _c, [_hE]: 400 },
|
|
725
|
+
[_M],
|
|
726
|
+
[0]
|
|
727
|
+
];
|
|
728
|
+
n0_registry.registerError(InvalidSchemeException$, InvalidSchemeException);
|
|
729
|
+
var InvalidSecurityGroupException$ = [-3, n0, _ISGE,
|
|
730
|
+
{ [_aQE]: [`InvalidSecurityGroup`, 400], [_e]: _c, [_hE]: 400 },
|
|
731
|
+
[_M],
|
|
732
|
+
[0]
|
|
733
|
+
];
|
|
734
|
+
n0_registry.registerError(InvalidSecurityGroupException$, InvalidSecurityGroupException);
|
|
735
|
+
var InvalidSubnetException$ = [-3, n0, _ISEn,
|
|
736
|
+
{ [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
|
|
737
|
+
[_M],
|
|
738
|
+
[0]
|
|
739
|
+
];
|
|
740
|
+
n0_registry.registerError(InvalidSubnetException$, InvalidSubnetException);
|
|
741
|
+
var ListenerNotFoundException$ = [-3, n0, _LNFE,
|
|
742
|
+
{ [_aQE]: [`ListenerNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
743
|
+
[_M],
|
|
744
|
+
[0]
|
|
745
|
+
];
|
|
746
|
+
n0_registry.registerError(ListenerNotFoundException$, ListenerNotFoundException);
|
|
747
|
+
var LoadBalancerAttributeNotFoundException$ = [-3, n0, _LBANFE,
|
|
748
|
+
{ [_aQE]: [`LoadBalancerAttributeNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
749
|
+
[_M],
|
|
750
|
+
[0]
|
|
751
|
+
];
|
|
752
|
+
n0_registry.registerError(LoadBalancerAttributeNotFoundException$, LoadBalancerAttributeNotFoundException);
|
|
753
|
+
var OperationNotPermittedException$ = [-3, n0, _ONPE,
|
|
754
|
+
{ [_aQE]: [`OperationNotPermitted`, 400], [_e]: _c, [_hE]: 400 },
|
|
755
|
+
[_M],
|
|
756
|
+
[0]
|
|
757
|
+
];
|
|
758
|
+
n0_registry.registerError(OperationNotPermittedException$, OperationNotPermittedException);
|
|
759
|
+
var PolicyNotFoundException$ = [-3, n0, _PNFE,
|
|
760
|
+
{ [_aQE]: [`PolicyNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
761
|
+
[_M],
|
|
762
|
+
[0]
|
|
763
|
+
];
|
|
764
|
+
n0_registry.registerError(PolicyNotFoundException$, PolicyNotFoundException);
|
|
765
|
+
var PolicyTypeNotFoundException$ = [-3, n0, _PTNFE,
|
|
766
|
+
{ [_aQE]: [`PolicyTypeNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
767
|
+
[_M],
|
|
768
|
+
[0]
|
|
769
|
+
];
|
|
770
|
+
n0_registry.registerError(PolicyTypeNotFoundException$, PolicyTypeNotFoundException);
|
|
771
|
+
var SubnetNotFoundException$ = [-3, n0, _SNFE,
|
|
772
|
+
{ [_aQE]: [`SubnetNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
773
|
+
[_M],
|
|
774
|
+
[0]
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(SubnetNotFoundException$, SubnetNotFoundException);
|
|
777
|
+
var TooManyAccessPointsException$ = [-3, n0, _TMAPE,
|
|
778
|
+
{ [_aQE]: [`TooManyLoadBalancers`, 400], [_e]: _c, [_hE]: 400 },
|
|
779
|
+
[_M],
|
|
780
|
+
[0]
|
|
781
|
+
];
|
|
782
|
+
n0_registry.registerError(TooManyAccessPointsException$, TooManyAccessPointsException);
|
|
783
|
+
var TooManyPoliciesException$ = [-3, n0, _TMPE,
|
|
784
|
+
{ [_aQE]: [`TooManyPolicies`, 400], [_e]: _c, [_hE]: 400 },
|
|
785
|
+
[_M],
|
|
786
|
+
[0]
|
|
787
|
+
];
|
|
788
|
+
n0_registry.registerError(TooManyPoliciesException$, TooManyPoliciesException);
|
|
789
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
790
|
+
{ [_aQE]: [`TooManyTags`, 400], [_e]: _c, [_hE]: 400 },
|
|
791
|
+
[_M],
|
|
792
|
+
[0]
|
|
793
|
+
];
|
|
794
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
795
|
+
var UnsupportedProtocolException$ = [-3, n0, _UPE,
|
|
796
|
+
{ [_aQE]: [`UnsupportedProtocol`, 400], [_e]: _c, [_hE]: 400 },
|
|
797
|
+
[_M],
|
|
798
|
+
[0]
|
|
799
|
+
];
|
|
800
|
+
n0_registry.registerError(UnsupportedProtocolException$, UnsupportedProtocolException);
|
|
801
|
+
const errorTypeRegistries = [
|
|
802
|
+
_s_registry,
|
|
803
|
+
n0_registry,
|
|
804
|
+
];
|
|
805
|
+
var AccessLog$ = [3, n0, _AL,
|
|
806
|
+
0,
|
|
807
|
+
[_E, _SBN, _EI, _SBP],
|
|
808
|
+
[2, 0, 1, 0], 1
|
|
809
|
+
];
|
|
810
|
+
var AddAvailabilityZonesInput$ = [3, n0, _AAZI,
|
|
811
|
+
0,
|
|
812
|
+
[_LBN, _AZ],
|
|
813
|
+
[0, 64 | 0], 2
|
|
814
|
+
];
|
|
815
|
+
var AddAvailabilityZonesOutput$ = [3, n0, _AAZO,
|
|
816
|
+
0,
|
|
817
|
+
[_AZ],
|
|
818
|
+
[64 | 0]
|
|
819
|
+
];
|
|
820
|
+
var AdditionalAttribute$ = [3, n0, _AA,
|
|
821
|
+
0,
|
|
822
|
+
[_K, _V],
|
|
823
|
+
[0, 0]
|
|
824
|
+
];
|
|
825
|
+
var AddTagsInput$ = [3, n0, _ATI,
|
|
826
|
+
0,
|
|
827
|
+
[_LBNo, _T],
|
|
828
|
+
[64 | 0, () => TagList], 2
|
|
829
|
+
];
|
|
830
|
+
var AddTagsOutput$ = [3, n0, _ATO,
|
|
831
|
+
0,
|
|
832
|
+
[],
|
|
833
|
+
[]
|
|
834
|
+
];
|
|
835
|
+
var AppCookieStickinessPolicy$ = [3, n0, _ACSP,
|
|
836
|
+
0,
|
|
837
|
+
[_PN, _CN],
|
|
838
|
+
[0, 0]
|
|
839
|
+
];
|
|
840
|
+
var ApplySecurityGroupsToLoadBalancerInput$ = [3, n0, _ASGTLBI,
|
|
841
|
+
0,
|
|
842
|
+
[_LBN, _SG],
|
|
843
|
+
[0, 64 | 0], 2
|
|
844
|
+
];
|
|
845
|
+
var ApplySecurityGroupsToLoadBalancerOutput$ = [3, n0, _ASGTLBO,
|
|
846
|
+
0,
|
|
847
|
+
[_SG],
|
|
848
|
+
[64 | 0]
|
|
849
|
+
];
|
|
850
|
+
var AttachLoadBalancerToSubnetsInput$ = [3, n0, _ALBTSI,
|
|
851
|
+
0,
|
|
852
|
+
[_LBN, _S],
|
|
853
|
+
[0, 64 | 0], 2
|
|
854
|
+
];
|
|
855
|
+
var AttachLoadBalancerToSubnetsOutput$ = [3, n0, _ALBTSO,
|
|
856
|
+
0,
|
|
857
|
+
[_S],
|
|
858
|
+
[64 | 0]
|
|
859
|
+
];
|
|
860
|
+
var BackendServerDescription$ = [3, n0, _BSD,
|
|
861
|
+
0,
|
|
862
|
+
[_IP, _PNo],
|
|
863
|
+
[1, 64 | 0]
|
|
864
|
+
];
|
|
865
|
+
var ConfigureHealthCheckInput$ = [3, n0, _CHCI,
|
|
866
|
+
0,
|
|
867
|
+
[_LBN, _HC],
|
|
868
|
+
[0, () => HealthCheck$], 2
|
|
869
|
+
];
|
|
870
|
+
var ConfigureHealthCheckOutput$ = [3, n0, _CHCO,
|
|
871
|
+
0,
|
|
872
|
+
[_HC],
|
|
873
|
+
[() => HealthCheck$]
|
|
874
|
+
];
|
|
875
|
+
var ConnectionDraining$ = [3, n0, _CD,
|
|
876
|
+
0,
|
|
877
|
+
[_E, _Ti],
|
|
878
|
+
[2, 1], 1
|
|
879
|
+
];
|
|
880
|
+
var ConnectionSettings$ = [3, n0, _CS,
|
|
881
|
+
0,
|
|
882
|
+
[_IT],
|
|
883
|
+
[1], 1
|
|
884
|
+
];
|
|
885
|
+
var CreateAccessPointInput$ = [3, n0, _CAPI,
|
|
886
|
+
0,
|
|
887
|
+
[_LBN, _L, _AZ, _S, _SG, _Sc, _T],
|
|
888
|
+
[0, () => Listeners, 64 | 0, 64 | 0, 64 | 0, 0, () => TagList], 2
|
|
889
|
+
];
|
|
890
|
+
var CreateAccessPointOutput$ = [3, n0, _CAPO,
|
|
891
|
+
0,
|
|
892
|
+
[_DNSN],
|
|
893
|
+
[0]
|
|
894
|
+
];
|
|
895
|
+
var CreateAppCookieStickinessPolicyInput$ = [3, n0, _CACSPI,
|
|
896
|
+
0,
|
|
897
|
+
[_LBN, _PN, _CN],
|
|
898
|
+
[0, 0, 0], 3
|
|
899
|
+
];
|
|
900
|
+
var CreateAppCookieStickinessPolicyOutput$ = [3, n0, _CACSPO,
|
|
901
|
+
0,
|
|
902
|
+
[],
|
|
903
|
+
[]
|
|
904
|
+
];
|
|
905
|
+
var CreateLBCookieStickinessPolicyInput$ = [3, n0, _CLBCSPI,
|
|
906
|
+
0,
|
|
907
|
+
[_LBN, _PN, _CEP],
|
|
908
|
+
[0, 0, 1], 2
|
|
909
|
+
];
|
|
910
|
+
var CreateLBCookieStickinessPolicyOutput$ = [3, n0, _CLBCSPO,
|
|
911
|
+
0,
|
|
912
|
+
[],
|
|
913
|
+
[]
|
|
914
|
+
];
|
|
915
|
+
var CreateLoadBalancerListenerInput$ = [3, n0, _CLBLI,
|
|
916
|
+
0,
|
|
917
|
+
[_LBN, _L],
|
|
918
|
+
[0, () => Listeners], 2
|
|
919
|
+
];
|
|
920
|
+
var CreateLoadBalancerListenerOutput$ = [3, n0, _CLBLO,
|
|
921
|
+
0,
|
|
922
|
+
[],
|
|
923
|
+
[]
|
|
924
|
+
];
|
|
925
|
+
var CreateLoadBalancerPolicyInput$ = [3, n0, _CLBPI,
|
|
926
|
+
0,
|
|
927
|
+
[_LBN, _PN, _PTN, _PA],
|
|
928
|
+
[0, 0, 0, () => PolicyAttributes], 3
|
|
929
|
+
];
|
|
930
|
+
var CreateLoadBalancerPolicyOutput$ = [3, n0, _CLBPO,
|
|
931
|
+
0,
|
|
932
|
+
[],
|
|
933
|
+
[]
|
|
934
|
+
];
|
|
935
|
+
var CrossZoneLoadBalancing$ = [3, n0, _CZLB,
|
|
936
|
+
0,
|
|
937
|
+
[_E],
|
|
938
|
+
[2], 1
|
|
939
|
+
];
|
|
940
|
+
var DeleteAccessPointInput$ = [3, n0, _DAPI,
|
|
941
|
+
0,
|
|
942
|
+
[_LBN],
|
|
943
|
+
[0], 1
|
|
944
|
+
];
|
|
945
|
+
var DeleteAccessPointOutput$ = [3, n0, _DAPO,
|
|
946
|
+
0,
|
|
947
|
+
[],
|
|
948
|
+
[]
|
|
949
|
+
];
|
|
950
|
+
var DeleteLoadBalancerListenerInput$ = [3, n0, _DLBLI,
|
|
951
|
+
0,
|
|
952
|
+
[_LBN, _LBP],
|
|
953
|
+
[0, 64 | 1], 2
|
|
954
|
+
];
|
|
955
|
+
var DeleteLoadBalancerListenerOutput$ = [3, n0, _DLBLO,
|
|
956
|
+
0,
|
|
957
|
+
[],
|
|
958
|
+
[]
|
|
959
|
+
];
|
|
960
|
+
var DeleteLoadBalancerPolicyInput$ = [3, n0, _DLBPI,
|
|
961
|
+
0,
|
|
962
|
+
[_LBN, _PN],
|
|
963
|
+
[0, 0], 2
|
|
964
|
+
];
|
|
965
|
+
var DeleteLoadBalancerPolicyOutput$ = [3, n0, _DLBPO,
|
|
966
|
+
0,
|
|
967
|
+
[],
|
|
968
|
+
[]
|
|
969
|
+
];
|
|
970
|
+
var DeregisterEndPointsInput$ = [3, n0, _DEPI,
|
|
971
|
+
0,
|
|
972
|
+
[_LBN, _I],
|
|
973
|
+
[0, () => Instances], 2
|
|
974
|
+
];
|
|
975
|
+
var DeregisterEndPointsOutput$ = [3, n0, _DEPO,
|
|
976
|
+
0,
|
|
977
|
+
[_I],
|
|
978
|
+
[() => Instances]
|
|
979
|
+
];
|
|
980
|
+
var DescribeAccessPointsInput$ = [3, n0, _DAPIe,
|
|
981
|
+
0,
|
|
982
|
+
[_LBNo, _Ma, _PS],
|
|
983
|
+
[64 | 0, 0, 1]
|
|
984
|
+
];
|
|
985
|
+
var DescribeAccessPointsOutput$ = [3, n0, _DAPOe,
|
|
986
|
+
0,
|
|
987
|
+
[_LBD, _NM],
|
|
988
|
+
[() => LoadBalancerDescriptions, 0]
|
|
989
|
+
];
|
|
990
|
+
var DescribeAccountLimitsInput$ = [3, n0, _DALI,
|
|
991
|
+
0,
|
|
992
|
+
[_Ma, _PS],
|
|
993
|
+
[0, 1]
|
|
994
|
+
];
|
|
995
|
+
var DescribeAccountLimitsOutput$ = [3, n0, _DALO,
|
|
996
|
+
0,
|
|
997
|
+
[_Li, _NM],
|
|
998
|
+
[() => Limits, 0]
|
|
999
|
+
];
|
|
1000
|
+
var DescribeEndPointStateInput$ = [3, n0, _DEPSI,
|
|
1001
|
+
0,
|
|
1002
|
+
[_LBN, _I],
|
|
1003
|
+
[0, () => Instances], 1
|
|
1004
|
+
];
|
|
1005
|
+
var DescribeEndPointStateOutput$ = [3, n0, _DEPSO,
|
|
1006
|
+
0,
|
|
1007
|
+
[_IS],
|
|
1008
|
+
[() => InstanceStates]
|
|
1009
|
+
];
|
|
1010
|
+
var DescribeLoadBalancerAttributesInput$ = [3, n0, _DLBAI,
|
|
1011
|
+
0,
|
|
1012
|
+
[_LBN],
|
|
1013
|
+
[0], 1
|
|
1014
|
+
];
|
|
1015
|
+
var DescribeLoadBalancerAttributesOutput$ = [3, n0, _DLBAO,
|
|
1016
|
+
0,
|
|
1017
|
+
[_LBA],
|
|
1018
|
+
[() => LoadBalancerAttributes$]
|
|
1019
|
+
];
|
|
1020
|
+
var DescribeLoadBalancerPoliciesInput$ = [3, n0, _DLBPIe,
|
|
1021
|
+
0,
|
|
1022
|
+
[_LBN, _PNo],
|
|
1023
|
+
[0, 64 | 0]
|
|
1024
|
+
];
|
|
1025
|
+
var DescribeLoadBalancerPoliciesOutput$ = [3, n0, _DLBPOe,
|
|
1026
|
+
0,
|
|
1027
|
+
[_PD],
|
|
1028
|
+
[() => PolicyDescriptions]
|
|
1029
|
+
];
|
|
1030
|
+
var DescribeLoadBalancerPolicyTypesInput$ = [3, n0, _DLBPTI,
|
|
1031
|
+
0,
|
|
1032
|
+
[_PTNo],
|
|
1033
|
+
[64 | 0]
|
|
1034
|
+
];
|
|
1035
|
+
var DescribeLoadBalancerPolicyTypesOutput$ = [3, n0, _DLBPTO,
|
|
1036
|
+
0,
|
|
1037
|
+
[_PTD],
|
|
1038
|
+
[() => PolicyTypeDescriptions]
|
|
1039
|
+
];
|
|
1040
|
+
var DescribeTagsInput$ = [3, n0, _DTI,
|
|
1041
|
+
0,
|
|
1042
|
+
[_LBNo],
|
|
1043
|
+
[64 | 0], 1
|
|
1044
|
+
];
|
|
1045
|
+
var DescribeTagsOutput$ = [3, n0, _DTO,
|
|
1046
|
+
0,
|
|
1047
|
+
[_TD],
|
|
1048
|
+
[() => TagDescriptions]
|
|
1049
|
+
];
|
|
1050
|
+
var DetachLoadBalancerFromSubnetsInput$ = [3, n0, _DLBFSI,
|
|
1051
|
+
0,
|
|
1052
|
+
[_LBN, _S],
|
|
1053
|
+
[0, 64 | 0], 2
|
|
1054
|
+
];
|
|
1055
|
+
var DetachLoadBalancerFromSubnetsOutput$ = [3, n0, _DLBFSO,
|
|
1056
|
+
0,
|
|
1057
|
+
[_S],
|
|
1058
|
+
[64 | 0]
|
|
1059
|
+
];
|
|
1060
|
+
var HealthCheck$ = [3, n0, _HC,
|
|
1061
|
+
0,
|
|
1062
|
+
[_Ta, _In, _Ti, _UT, _HT],
|
|
1063
|
+
[0, 1, 1, 1, 1], 5
|
|
1064
|
+
];
|
|
1065
|
+
var Instance$ = [3, n0, _Ins,
|
|
1066
|
+
0,
|
|
1067
|
+
[_II],
|
|
1068
|
+
[0]
|
|
1069
|
+
];
|
|
1070
|
+
var InstanceState$ = [3, n0, _ISn,
|
|
1071
|
+
0,
|
|
1072
|
+
[_II, _St, _RC, _D],
|
|
1073
|
+
[0, 0, 0, 0]
|
|
1074
|
+
];
|
|
1075
|
+
var LBCookieStickinessPolicy$ = [3, n0, _LBCSP,
|
|
1076
|
+
0,
|
|
1077
|
+
[_PN, _CEP],
|
|
1078
|
+
[0, 1]
|
|
1079
|
+
];
|
|
1080
|
+
var Limit$ = [3, n0, _Lim,
|
|
1081
|
+
0,
|
|
1082
|
+
[_N, _Max],
|
|
1083
|
+
[0, 0]
|
|
1084
|
+
];
|
|
1085
|
+
var Listener$ = [3, n0, _Lis,
|
|
1086
|
+
0,
|
|
1087
|
+
[_P, _LBPo, _IP, _IPn, _SSLCI],
|
|
1088
|
+
[0, 1, 1, 0, 0], 3
|
|
1089
|
+
];
|
|
1090
|
+
var ListenerDescription$ = [3, n0, _LD,
|
|
1091
|
+
0,
|
|
1092
|
+
[_Lis, _PNo],
|
|
1093
|
+
[() => Listener$, 64 | 0]
|
|
1094
|
+
];
|
|
1095
|
+
var LoadBalancerAttributes$ = [3, n0, _LBA,
|
|
1096
|
+
0,
|
|
1097
|
+
[_CZLB, _AL, _CD, _CS, _AAd],
|
|
1098
|
+
[() => CrossZoneLoadBalancing$, () => AccessLog$, () => ConnectionDraining$, () => ConnectionSettings$, () => AdditionalAttributes]
|
|
1099
|
+
];
|
|
1100
|
+
var LoadBalancerDescription$ = [3, n0, _LBDo,
|
|
1101
|
+
0,
|
|
1102
|
+
[_LBN, _DNSN, _CHZN, _CHZNID, _LDi, _Po, _BSDa, _AZ, _S, _VPCI, _I, _HC, _SSG, _SG, _CT, _Sc],
|
|
1103
|
+
[0, 0, 0, 0, () => ListenerDescriptions, () => Policies$, () => BackendServerDescriptions, 64 | 0, 64 | 0, 0, () => Instances, () => HealthCheck$, () => SourceSecurityGroup$, 64 | 0, 4, 0]
|
|
1104
|
+
];
|
|
1105
|
+
var ModifyLoadBalancerAttributesInput$ = [3, n0, _MLBAI,
|
|
1106
|
+
0,
|
|
1107
|
+
[_LBN, _LBA],
|
|
1108
|
+
[0, () => LoadBalancerAttributes$], 2
|
|
1109
|
+
];
|
|
1110
|
+
var ModifyLoadBalancerAttributesOutput$ = [3, n0, _MLBAO,
|
|
1111
|
+
0,
|
|
1112
|
+
[_LBN, _LBA],
|
|
1113
|
+
[0, () => LoadBalancerAttributes$]
|
|
1114
|
+
];
|
|
1115
|
+
var Policies$ = [3, n0, _Po,
|
|
1116
|
+
0,
|
|
1117
|
+
[_ACSPp, _LBCSPo, _OP],
|
|
1118
|
+
[() => AppCookieStickinessPolicies, () => LBCookieStickinessPolicies, 64 | 0]
|
|
1119
|
+
];
|
|
1120
|
+
var PolicyAttribute$ = [3, n0, _PAo,
|
|
1121
|
+
0,
|
|
1122
|
+
[_AN, _AV],
|
|
1123
|
+
[0, 0]
|
|
1124
|
+
];
|
|
1125
|
+
var PolicyAttributeDescription$ = [3, n0, _PAD,
|
|
1126
|
+
0,
|
|
1127
|
+
[_AN, _AV],
|
|
1128
|
+
[0, 0]
|
|
1129
|
+
];
|
|
1130
|
+
var PolicyAttributeTypeDescription$ = [3, n0, _PATD,
|
|
1131
|
+
0,
|
|
1132
|
+
[_AN, _AT, _D, _DV, _C],
|
|
1133
|
+
[0, 0, 0, 0, 0]
|
|
1134
|
+
];
|
|
1135
|
+
var PolicyDescription$ = [3, n0, _PDo,
|
|
1136
|
+
0,
|
|
1137
|
+
[_PN, _PTN, _PADo],
|
|
1138
|
+
[0, 0, () => PolicyAttributeDescriptions]
|
|
1139
|
+
];
|
|
1140
|
+
var PolicyTypeDescription$ = [3, n0, _PTDo,
|
|
1141
|
+
0,
|
|
1142
|
+
[_PTN, _D, _PATDo],
|
|
1143
|
+
[0, 0, () => PolicyAttributeTypeDescriptions]
|
|
1144
|
+
];
|
|
1145
|
+
var RegisterEndPointsInput$ = [3, n0, _REPI,
|
|
1146
|
+
0,
|
|
1147
|
+
[_LBN, _I],
|
|
1148
|
+
[0, () => Instances], 2
|
|
1149
|
+
];
|
|
1150
|
+
var RegisterEndPointsOutput$ = [3, n0, _REPO,
|
|
1151
|
+
0,
|
|
1152
|
+
[_I],
|
|
1153
|
+
[() => Instances]
|
|
1154
|
+
];
|
|
1155
|
+
var RemoveAvailabilityZonesInput$ = [3, n0, _RAZI,
|
|
1156
|
+
0,
|
|
1157
|
+
[_LBN, _AZ],
|
|
1158
|
+
[0, 64 | 0], 2
|
|
1159
|
+
];
|
|
1160
|
+
var RemoveAvailabilityZonesOutput$ = [3, n0, _RAZO,
|
|
1161
|
+
0,
|
|
1162
|
+
[_AZ],
|
|
1163
|
+
[64 | 0]
|
|
1164
|
+
];
|
|
1165
|
+
var RemoveTagsInput$ = [3, n0, _RTI,
|
|
1166
|
+
0,
|
|
1167
|
+
[_LBNo, _T],
|
|
1168
|
+
[64 | 0, () => TagKeyList], 2
|
|
1169
|
+
];
|
|
1170
|
+
var RemoveTagsOutput$ = [3, n0, _RTO,
|
|
1171
|
+
0,
|
|
1172
|
+
[],
|
|
1173
|
+
[]
|
|
1174
|
+
];
|
|
1175
|
+
var SetLoadBalancerListenerSSLCertificateInput$ = [3, n0, _SLBLSSLCI,
|
|
1176
|
+
0,
|
|
1177
|
+
[_LBN, _LBPo, _SSLCI],
|
|
1178
|
+
[0, 1, 0], 3
|
|
1179
|
+
];
|
|
1180
|
+
var SetLoadBalancerListenerSSLCertificateOutput$ = [3, n0, _SLBLSSLCO,
|
|
1181
|
+
0,
|
|
1182
|
+
[],
|
|
1183
|
+
[]
|
|
1184
|
+
];
|
|
1185
|
+
var SetLoadBalancerPoliciesForBackendServerInput$ = [3, n0, _SLBPFBSI,
|
|
1186
|
+
0,
|
|
1187
|
+
[_LBN, _IP, _PNo],
|
|
1188
|
+
[0, 1, 64 | 0], 3
|
|
1189
|
+
];
|
|
1190
|
+
var SetLoadBalancerPoliciesForBackendServerOutput$ = [3, n0, _SLBPFBSO,
|
|
1191
|
+
0,
|
|
1192
|
+
[],
|
|
1193
|
+
[]
|
|
1194
|
+
];
|
|
1195
|
+
var SetLoadBalancerPoliciesOfListenerInput$ = [3, n0, _SLBPOLI,
|
|
1196
|
+
0,
|
|
1197
|
+
[_LBN, _LBPo, _PNo],
|
|
1198
|
+
[0, 1, 64 | 0], 3
|
|
1199
|
+
];
|
|
1200
|
+
var SetLoadBalancerPoliciesOfListenerOutput$ = [3, n0, _SLBPOLO,
|
|
1201
|
+
0,
|
|
1202
|
+
[],
|
|
1203
|
+
[]
|
|
1204
|
+
];
|
|
1205
|
+
var SourceSecurityGroup$ = [3, n0, _SSG,
|
|
1206
|
+
0,
|
|
1207
|
+
[_OA, _GN],
|
|
1208
|
+
[0, 0]
|
|
1209
|
+
];
|
|
1210
|
+
var Tag$ = [3, n0, _Tag,
|
|
1211
|
+
0,
|
|
1212
|
+
[_K, _V],
|
|
1213
|
+
[0, 0], 1
|
|
1214
|
+
];
|
|
1215
|
+
var TagDescription$ = [3, n0, _TDa,
|
|
1216
|
+
0,
|
|
1217
|
+
[_LBN, _T],
|
|
1218
|
+
[0, () => TagList]
|
|
1219
|
+
];
|
|
1220
|
+
var TagKeyOnly$ = [3, n0, _TKO,
|
|
1221
|
+
0,
|
|
1222
|
+
[_K],
|
|
1223
|
+
[0]
|
|
1224
|
+
];
|
|
1225
|
+
var AdditionalAttributes = [1, n0, _AAd,
|
|
1226
|
+
0, () => AdditionalAttribute$
|
|
1227
|
+
];
|
|
1228
|
+
var AppCookieStickinessPolicies = [1, n0, _ACSPp,
|
|
1229
|
+
0, () => AppCookieStickinessPolicy$
|
|
1230
|
+
];
|
|
1231
|
+
var BackendServerDescriptions = [1, n0, _BSDa,
|
|
1232
|
+
0, () => BackendServerDescription$
|
|
1233
|
+
];
|
|
1234
|
+
var Instances = [1, n0, _I,
|
|
1235
|
+
0, () => Instance$
|
|
1236
|
+
];
|
|
1237
|
+
var InstanceStates = [1, n0, _IS,
|
|
1238
|
+
0, () => InstanceState$
|
|
1239
|
+
];
|
|
1240
|
+
var LBCookieStickinessPolicies = [1, n0, _LBCSPo,
|
|
1241
|
+
0, () => LBCookieStickinessPolicy$
|
|
1242
|
+
];
|
|
1243
|
+
var Limits = [1, n0, _Li,
|
|
1244
|
+
0, () => Limit$
|
|
1245
|
+
];
|
|
1246
|
+
var ListenerDescriptions = [1, n0, _LDi,
|
|
1247
|
+
0, () => ListenerDescription$
|
|
1248
|
+
];
|
|
1249
|
+
var Listeners = [1, n0, _L,
|
|
1250
|
+
0, () => Listener$
|
|
1251
|
+
];
|
|
1252
|
+
var LoadBalancerDescriptions = [1, n0, _LBD,
|
|
1253
|
+
0, () => LoadBalancerDescription$
|
|
1254
|
+
];
|
|
1255
|
+
var PolicyAttributeDescriptions = [1, n0, _PADo,
|
|
1256
|
+
0, () => PolicyAttributeDescription$
|
|
1257
|
+
];
|
|
1258
|
+
var PolicyAttributes = [1, n0, _PA,
|
|
1259
|
+
0, () => PolicyAttribute$
|
|
1260
|
+
];
|
|
1261
|
+
var PolicyAttributeTypeDescriptions = [1, n0, _PATDo,
|
|
1262
|
+
0, () => PolicyAttributeTypeDescription$
|
|
1263
|
+
];
|
|
1264
|
+
var PolicyDescriptions = [1, n0, _PD,
|
|
1265
|
+
0, () => PolicyDescription$
|
|
1266
|
+
];
|
|
1267
|
+
var PolicyTypeDescriptions = [1, n0, _PTD,
|
|
1268
|
+
0, () => PolicyTypeDescription$
|
|
1269
|
+
];
|
|
1270
|
+
var TagDescriptions = [1, n0, _TD,
|
|
1271
|
+
0, () => TagDescription$
|
|
1272
|
+
];
|
|
1273
|
+
var TagKeyList = [1, n0, _TKL,
|
|
1274
|
+
0, () => TagKeyOnly$
|
|
1275
|
+
];
|
|
1276
|
+
var TagList = [1, n0, _TL,
|
|
1277
|
+
0, () => Tag$
|
|
1278
|
+
];
|
|
1279
|
+
var AddTags$ = [9, n0, _ATd,
|
|
1280
|
+
0, () => AddTagsInput$, () => AddTagsOutput$
|
|
1281
|
+
];
|
|
1282
|
+
var ApplySecurityGroupsToLoadBalancer$ = [9, n0, _ASGTLB,
|
|
1283
|
+
0, () => ApplySecurityGroupsToLoadBalancerInput$, () => ApplySecurityGroupsToLoadBalancerOutput$
|
|
1284
|
+
];
|
|
1285
|
+
var AttachLoadBalancerToSubnets$ = [9, n0, _ALBTS,
|
|
1286
|
+
0, () => AttachLoadBalancerToSubnetsInput$, () => AttachLoadBalancerToSubnetsOutput$
|
|
1287
|
+
];
|
|
1288
|
+
var ConfigureHealthCheck$ = [9, n0, _CHC,
|
|
1289
|
+
0, () => ConfigureHealthCheckInput$, () => ConfigureHealthCheckOutput$
|
|
1290
|
+
];
|
|
1291
|
+
var CreateAppCookieStickinessPolicy$ = [9, n0, _CACSP,
|
|
1292
|
+
0, () => CreateAppCookieStickinessPolicyInput$, () => CreateAppCookieStickinessPolicyOutput$
|
|
1293
|
+
];
|
|
1294
|
+
var CreateLBCookieStickinessPolicy$ = [9, n0, _CLBCSP,
|
|
1295
|
+
0, () => CreateLBCookieStickinessPolicyInput$, () => CreateLBCookieStickinessPolicyOutput$
|
|
1296
|
+
];
|
|
1297
|
+
var CreateLoadBalancer$ = [9, n0, _CLB,
|
|
1298
|
+
0, () => CreateAccessPointInput$, () => CreateAccessPointOutput$
|
|
1299
|
+
];
|
|
1300
|
+
var CreateLoadBalancerListeners$ = [9, n0, _CLBL,
|
|
1301
|
+
0, () => CreateLoadBalancerListenerInput$, () => CreateLoadBalancerListenerOutput$
|
|
1302
|
+
];
|
|
1303
|
+
var CreateLoadBalancerPolicy$ = [9, n0, _CLBP,
|
|
1304
|
+
0, () => CreateLoadBalancerPolicyInput$, () => CreateLoadBalancerPolicyOutput$
|
|
1305
|
+
];
|
|
1306
|
+
var DeleteLoadBalancer$ = [9, n0, _DLB,
|
|
1307
|
+
0, () => DeleteAccessPointInput$, () => DeleteAccessPointOutput$
|
|
1308
|
+
];
|
|
1309
|
+
var DeleteLoadBalancerListeners$ = [9, n0, _DLBL,
|
|
1310
|
+
0, () => DeleteLoadBalancerListenerInput$, () => DeleteLoadBalancerListenerOutput$
|
|
1311
|
+
];
|
|
1312
|
+
var DeleteLoadBalancerPolicy$ = [9, n0, _DLBP,
|
|
1313
|
+
0, () => DeleteLoadBalancerPolicyInput$, () => DeleteLoadBalancerPolicyOutput$
|
|
1314
|
+
];
|
|
1315
|
+
var DeregisterInstancesFromLoadBalancer$ = [9, n0, _DIFLB,
|
|
1316
|
+
0, () => DeregisterEndPointsInput$, () => DeregisterEndPointsOutput$
|
|
1317
|
+
];
|
|
1318
|
+
var DescribeAccountLimits$ = [9, n0, _DAL,
|
|
1319
|
+
0, () => DescribeAccountLimitsInput$, () => DescribeAccountLimitsOutput$
|
|
1320
|
+
];
|
|
1321
|
+
var DescribeInstanceHealth$ = [9, n0, _DIH,
|
|
1322
|
+
0, () => DescribeEndPointStateInput$, () => DescribeEndPointStateOutput$
|
|
1323
|
+
];
|
|
1324
|
+
var DescribeLoadBalancerAttributes$ = [9, n0, _DLBA,
|
|
1325
|
+
0, () => DescribeLoadBalancerAttributesInput$, () => DescribeLoadBalancerAttributesOutput$
|
|
1326
|
+
];
|
|
1327
|
+
var DescribeLoadBalancerPolicies$ = [9, n0, _DLBPe,
|
|
1328
|
+
0, () => DescribeLoadBalancerPoliciesInput$, () => DescribeLoadBalancerPoliciesOutput$
|
|
1329
|
+
];
|
|
1330
|
+
var DescribeLoadBalancerPolicyTypes$ = [9, n0, _DLBPT,
|
|
1331
|
+
0, () => DescribeLoadBalancerPolicyTypesInput$, () => DescribeLoadBalancerPolicyTypesOutput$
|
|
1332
|
+
];
|
|
1333
|
+
var DescribeLoadBalancers$ = [9, n0, _DLBe,
|
|
1334
|
+
0, () => DescribeAccessPointsInput$, () => DescribeAccessPointsOutput$
|
|
1335
|
+
];
|
|
1336
|
+
var DescribeTags$ = [9, n0, _DT,
|
|
1337
|
+
0, () => DescribeTagsInput$, () => DescribeTagsOutput$
|
|
1338
|
+
];
|
|
1339
|
+
var DetachLoadBalancerFromSubnets$ = [9, n0, _DLBFS,
|
|
1340
|
+
0, () => DetachLoadBalancerFromSubnetsInput$, () => DetachLoadBalancerFromSubnetsOutput$
|
|
1341
|
+
];
|
|
1342
|
+
var DisableAvailabilityZonesForLoadBalancer$ = [9, n0, _DAZFLB,
|
|
1343
|
+
0, () => RemoveAvailabilityZonesInput$, () => RemoveAvailabilityZonesOutput$
|
|
1344
|
+
];
|
|
1345
|
+
var EnableAvailabilityZonesForLoadBalancer$ = [9, n0, _EAZFLB,
|
|
1346
|
+
0, () => AddAvailabilityZonesInput$, () => AddAvailabilityZonesOutput$
|
|
1347
|
+
];
|
|
1348
|
+
var ModifyLoadBalancerAttributes$ = [9, n0, _MLBA,
|
|
1349
|
+
0, () => ModifyLoadBalancerAttributesInput$, () => ModifyLoadBalancerAttributesOutput$
|
|
1350
|
+
];
|
|
1351
|
+
var RegisterInstancesWithLoadBalancer$ = [9, n0, _RIWLB,
|
|
1352
|
+
0, () => RegisterEndPointsInput$, () => RegisterEndPointsOutput$
|
|
1353
|
+
];
|
|
1354
|
+
var RemoveTags$ = [9, n0, _RT,
|
|
1355
|
+
0, () => RemoveTagsInput$, () => RemoveTagsOutput$
|
|
1356
|
+
];
|
|
1357
|
+
var SetLoadBalancerListenerSSLCertificate$ = [9, n0, _SLBLSSLC,
|
|
1358
|
+
0, () => SetLoadBalancerListenerSSLCertificateInput$, () => SetLoadBalancerListenerSSLCertificateOutput$
|
|
1359
|
+
];
|
|
1360
|
+
var SetLoadBalancerPoliciesForBackendServer$ = [9, n0, _SLBPFBS,
|
|
1361
|
+
0, () => SetLoadBalancerPoliciesForBackendServerInput$, () => SetLoadBalancerPoliciesForBackendServerOutput$
|
|
1362
|
+
];
|
|
1363
|
+
var SetLoadBalancerPoliciesOfListener$ = [9, n0, _SLBPOL,
|
|
1364
|
+
0, () => SetLoadBalancerPoliciesOfListenerInput$, () => SetLoadBalancerPoliciesOfListenerOutput$
|
|
1365
|
+
];
|
|
1366
|
+
|
|
1367
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1368
|
+
return {
|
|
1369
|
+
apiVersion: "2012-06-01",
|
|
1370
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1371
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1372
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1373
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1374
|
+
extensions: config?.extensions ?? [],
|
|
1375
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultElasticLoadBalancingHttpAuthSchemeProvider,
|
|
1376
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1377
|
+
{
|
|
1378
|
+
schemeId: "aws.auth#sigv4",
|
|
1379
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1380
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1381
|
+
},
|
|
1382
|
+
],
|
|
1383
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1384
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
1385
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1386
|
+
defaultNamespace: "com.amazonaws.elasticloadbalancing",
|
|
1387
|
+
errorTypeRegistries,
|
|
1388
|
+
xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
|
|
1389
|
+
version: "2012-06-01",
|
|
1390
|
+
serviceTarget: "ElasticLoadBalancing_v7",
|
|
1391
|
+
},
|
|
1392
|
+
serviceId: config?.serviceId ?? "Elastic Load Balancing",
|
|
1393
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1394
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1395
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1396
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1397
|
+
};
|
|
1398
|
+
};
|
|
1399
|
+
|
|
1400
|
+
const getRuntimeConfig = (config) => {
|
|
1401
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1402
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1403
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1404
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1405
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1406
|
+
const loaderConfig = {
|
|
1407
|
+
profile: config?.profile,
|
|
1408
|
+
logger: clientSharedValues.logger,
|
|
1409
|
+
};
|
|
1410
|
+
return {
|
|
1411
|
+
...clientSharedValues,
|
|
1412
|
+
...config,
|
|
1413
|
+
runtime: "node",
|
|
1414
|
+
defaultsMode,
|
|
1415
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1416
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1417
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1418
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1419
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1420
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1421
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1422
|
+
retryMode: config?.retryMode ??
|
|
1423
|
+
loadConfig({
|
|
1424
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1425
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1426
|
+
}, config),
|
|
1427
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1428
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1429
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1430
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1431
|
+
};
|
|
1432
|
+
};
|
|
1433
|
+
|
|
34
1434
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1435
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1436
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -622,37 +2022,197 @@ class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
622
2022
|
}
|
|
623
2023
|
createAggregatedClient(commands, ElasticLoadBalancing, { paginators, waiters });
|
|
624
2024
|
|
|
2025
|
+
exports.AccessLog$ = AccessLog$;
|
|
2026
|
+
exports.AccessPointNotFoundException = AccessPointNotFoundException;
|
|
2027
|
+
exports.AccessPointNotFoundException$ = AccessPointNotFoundException$;
|
|
2028
|
+
exports.AddAvailabilityZonesInput$ = AddAvailabilityZonesInput$;
|
|
2029
|
+
exports.AddAvailabilityZonesOutput$ = AddAvailabilityZonesOutput$;
|
|
2030
|
+
exports.AddTags$ = AddTags$;
|
|
625
2031
|
exports.AddTagsCommand = AddTagsCommand;
|
|
2032
|
+
exports.AddTagsInput$ = AddTagsInput$;
|
|
2033
|
+
exports.AddTagsOutput$ = AddTagsOutput$;
|
|
2034
|
+
exports.AdditionalAttribute$ = AdditionalAttribute$;
|
|
2035
|
+
exports.AppCookieStickinessPolicy$ = AppCookieStickinessPolicy$;
|
|
2036
|
+
exports.ApplySecurityGroupsToLoadBalancer$ = ApplySecurityGroupsToLoadBalancer$;
|
|
626
2037
|
exports.ApplySecurityGroupsToLoadBalancerCommand = ApplySecurityGroupsToLoadBalancerCommand;
|
|
2038
|
+
exports.ApplySecurityGroupsToLoadBalancerInput$ = ApplySecurityGroupsToLoadBalancerInput$;
|
|
2039
|
+
exports.ApplySecurityGroupsToLoadBalancerOutput$ = ApplySecurityGroupsToLoadBalancerOutput$;
|
|
2040
|
+
exports.AttachLoadBalancerToSubnets$ = AttachLoadBalancerToSubnets$;
|
|
627
2041
|
exports.AttachLoadBalancerToSubnetsCommand = AttachLoadBalancerToSubnetsCommand;
|
|
2042
|
+
exports.AttachLoadBalancerToSubnetsInput$ = AttachLoadBalancerToSubnetsInput$;
|
|
2043
|
+
exports.AttachLoadBalancerToSubnetsOutput$ = AttachLoadBalancerToSubnetsOutput$;
|
|
2044
|
+
exports.BackendServerDescription$ = BackendServerDescription$;
|
|
2045
|
+
exports.CertificateNotFoundException = CertificateNotFoundException;
|
|
2046
|
+
exports.CertificateNotFoundException$ = CertificateNotFoundException$;
|
|
2047
|
+
exports.ConfigureHealthCheck$ = ConfigureHealthCheck$;
|
|
628
2048
|
exports.ConfigureHealthCheckCommand = ConfigureHealthCheckCommand;
|
|
2049
|
+
exports.ConfigureHealthCheckInput$ = ConfigureHealthCheckInput$;
|
|
2050
|
+
exports.ConfigureHealthCheckOutput$ = ConfigureHealthCheckOutput$;
|
|
2051
|
+
exports.ConnectionDraining$ = ConnectionDraining$;
|
|
2052
|
+
exports.ConnectionSettings$ = ConnectionSettings$;
|
|
2053
|
+
exports.CreateAccessPointInput$ = CreateAccessPointInput$;
|
|
2054
|
+
exports.CreateAccessPointOutput$ = CreateAccessPointOutput$;
|
|
2055
|
+
exports.CreateAppCookieStickinessPolicy$ = CreateAppCookieStickinessPolicy$;
|
|
629
2056
|
exports.CreateAppCookieStickinessPolicyCommand = CreateAppCookieStickinessPolicyCommand;
|
|
2057
|
+
exports.CreateAppCookieStickinessPolicyInput$ = CreateAppCookieStickinessPolicyInput$;
|
|
2058
|
+
exports.CreateAppCookieStickinessPolicyOutput$ = CreateAppCookieStickinessPolicyOutput$;
|
|
2059
|
+
exports.CreateLBCookieStickinessPolicy$ = CreateLBCookieStickinessPolicy$;
|
|
630
2060
|
exports.CreateLBCookieStickinessPolicyCommand = CreateLBCookieStickinessPolicyCommand;
|
|
2061
|
+
exports.CreateLBCookieStickinessPolicyInput$ = CreateLBCookieStickinessPolicyInput$;
|
|
2062
|
+
exports.CreateLBCookieStickinessPolicyOutput$ = CreateLBCookieStickinessPolicyOutput$;
|
|
2063
|
+
exports.CreateLoadBalancer$ = CreateLoadBalancer$;
|
|
631
2064
|
exports.CreateLoadBalancerCommand = CreateLoadBalancerCommand;
|
|
2065
|
+
exports.CreateLoadBalancerListenerInput$ = CreateLoadBalancerListenerInput$;
|
|
2066
|
+
exports.CreateLoadBalancerListenerOutput$ = CreateLoadBalancerListenerOutput$;
|
|
2067
|
+
exports.CreateLoadBalancerListeners$ = CreateLoadBalancerListeners$;
|
|
632
2068
|
exports.CreateLoadBalancerListenersCommand = CreateLoadBalancerListenersCommand;
|
|
2069
|
+
exports.CreateLoadBalancerPolicy$ = CreateLoadBalancerPolicy$;
|
|
633
2070
|
exports.CreateLoadBalancerPolicyCommand = CreateLoadBalancerPolicyCommand;
|
|
2071
|
+
exports.CreateLoadBalancerPolicyInput$ = CreateLoadBalancerPolicyInput$;
|
|
2072
|
+
exports.CreateLoadBalancerPolicyOutput$ = CreateLoadBalancerPolicyOutput$;
|
|
2073
|
+
exports.CrossZoneLoadBalancing$ = CrossZoneLoadBalancing$;
|
|
2074
|
+
exports.DeleteAccessPointInput$ = DeleteAccessPointInput$;
|
|
2075
|
+
exports.DeleteAccessPointOutput$ = DeleteAccessPointOutput$;
|
|
2076
|
+
exports.DeleteLoadBalancer$ = DeleteLoadBalancer$;
|
|
634
2077
|
exports.DeleteLoadBalancerCommand = DeleteLoadBalancerCommand;
|
|
2078
|
+
exports.DeleteLoadBalancerListenerInput$ = DeleteLoadBalancerListenerInput$;
|
|
2079
|
+
exports.DeleteLoadBalancerListenerOutput$ = DeleteLoadBalancerListenerOutput$;
|
|
2080
|
+
exports.DeleteLoadBalancerListeners$ = DeleteLoadBalancerListeners$;
|
|
635
2081
|
exports.DeleteLoadBalancerListenersCommand = DeleteLoadBalancerListenersCommand;
|
|
2082
|
+
exports.DeleteLoadBalancerPolicy$ = DeleteLoadBalancerPolicy$;
|
|
636
2083
|
exports.DeleteLoadBalancerPolicyCommand = DeleteLoadBalancerPolicyCommand;
|
|
2084
|
+
exports.DeleteLoadBalancerPolicyInput$ = DeleteLoadBalancerPolicyInput$;
|
|
2085
|
+
exports.DeleteLoadBalancerPolicyOutput$ = DeleteLoadBalancerPolicyOutput$;
|
|
2086
|
+
exports.DependencyThrottleException = DependencyThrottleException;
|
|
2087
|
+
exports.DependencyThrottleException$ = DependencyThrottleException$;
|
|
2088
|
+
exports.DeregisterEndPointsInput$ = DeregisterEndPointsInput$;
|
|
2089
|
+
exports.DeregisterEndPointsOutput$ = DeregisterEndPointsOutput$;
|
|
2090
|
+
exports.DeregisterInstancesFromLoadBalancer$ = DeregisterInstancesFromLoadBalancer$;
|
|
637
2091
|
exports.DeregisterInstancesFromLoadBalancerCommand = DeregisterInstancesFromLoadBalancerCommand;
|
|
2092
|
+
exports.DescribeAccessPointsInput$ = DescribeAccessPointsInput$;
|
|
2093
|
+
exports.DescribeAccessPointsOutput$ = DescribeAccessPointsOutput$;
|
|
2094
|
+
exports.DescribeAccountLimits$ = DescribeAccountLimits$;
|
|
638
2095
|
exports.DescribeAccountLimitsCommand = DescribeAccountLimitsCommand;
|
|
2096
|
+
exports.DescribeAccountLimitsInput$ = DescribeAccountLimitsInput$;
|
|
2097
|
+
exports.DescribeAccountLimitsOutput$ = DescribeAccountLimitsOutput$;
|
|
2098
|
+
exports.DescribeEndPointStateInput$ = DescribeEndPointStateInput$;
|
|
2099
|
+
exports.DescribeEndPointStateOutput$ = DescribeEndPointStateOutput$;
|
|
2100
|
+
exports.DescribeInstanceHealth$ = DescribeInstanceHealth$;
|
|
639
2101
|
exports.DescribeInstanceHealthCommand = DescribeInstanceHealthCommand;
|
|
2102
|
+
exports.DescribeLoadBalancerAttributes$ = DescribeLoadBalancerAttributes$;
|
|
640
2103
|
exports.DescribeLoadBalancerAttributesCommand = DescribeLoadBalancerAttributesCommand;
|
|
2104
|
+
exports.DescribeLoadBalancerAttributesInput$ = DescribeLoadBalancerAttributesInput$;
|
|
2105
|
+
exports.DescribeLoadBalancerAttributesOutput$ = DescribeLoadBalancerAttributesOutput$;
|
|
2106
|
+
exports.DescribeLoadBalancerPolicies$ = DescribeLoadBalancerPolicies$;
|
|
641
2107
|
exports.DescribeLoadBalancerPoliciesCommand = DescribeLoadBalancerPoliciesCommand;
|
|
2108
|
+
exports.DescribeLoadBalancerPoliciesInput$ = DescribeLoadBalancerPoliciesInput$;
|
|
2109
|
+
exports.DescribeLoadBalancerPoliciesOutput$ = DescribeLoadBalancerPoliciesOutput$;
|
|
2110
|
+
exports.DescribeLoadBalancerPolicyTypes$ = DescribeLoadBalancerPolicyTypes$;
|
|
642
2111
|
exports.DescribeLoadBalancerPolicyTypesCommand = DescribeLoadBalancerPolicyTypesCommand;
|
|
2112
|
+
exports.DescribeLoadBalancerPolicyTypesInput$ = DescribeLoadBalancerPolicyTypesInput$;
|
|
2113
|
+
exports.DescribeLoadBalancerPolicyTypesOutput$ = DescribeLoadBalancerPolicyTypesOutput$;
|
|
2114
|
+
exports.DescribeLoadBalancers$ = DescribeLoadBalancers$;
|
|
643
2115
|
exports.DescribeLoadBalancersCommand = DescribeLoadBalancersCommand;
|
|
2116
|
+
exports.DescribeTags$ = DescribeTags$;
|
|
644
2117
|
exports.DescribeTagsCommand = DescribeTagsCommand;
|
|
2118
|
+
exports.DescribeTagsInput$ = DescribeTagsInput$;
|
|
2119
|
+
exports.DescribeTagsOutput$ = DescribeTagsOutput$;
|
|
2120
|
+
exports.DetachLoadBalancerFromSubnets$ = DetachLoadBalancerFromSubnets$;
|
|
645
2121
|
exports.DetachLoadBalancerFromSubnetsCommand = DetachLoadBalancerFromSubnetsCommand;
|
|
2122
|
+
exports.DetachLoadBalancerFromSubnetsInput$ = DetachLoadBalancerFromSubnetsInput$;
|
|
2123
|
+
exports.DetachLoadBalancerFromSubnetsOutput$ = DetachLoadBalancerFromSubnetsOutput$;
|
|
2124
|
+
exports.DisableAvailabilityZonesForLoadBalancer$ = DisableAvailabilityZonesForLoadBalancer$;
|
|
646
2125
|
exports.DisableAvailabilityZonesForLoadBalancerCommand = DisableAvailabilityZonesForLoadBalancerCommand;
|
|
2126
|
+
exports.DuplicateAccessPointNameException = DuplicateAccessPointNameException;
|
|
2127
|
+
exports.DuplicateAccessPointNameException$ = DuplicateAccessPointNameException$;
|
|
2128
|
+
exports.DuplicateListenerException = DuplicateListenerException;
|
|
2129
|
+
exports.DuplicateListenerException$ = DuplicateListenerException$;
|
|
2130
|
+
exports.DuplicatePolicyNameException = DuplicatePolicyNameException;
|
|
2131
|
+
exports.DuplicatePolicyNameException$ = DuplicatePolicyNameException$;
|
|
2132
|
+
exports.DuplicateTagKeysException = DuplicateTagKeysException;
|
|
2133
|
+
exports.DuplicateTagKeysException$ = DuplicateTagKeysException$;
|
|
647
2134
|
exports.ElasticLoadBalancing = ElasticLoadBalancing;
|
|
648
2135
|
exports.ElasticLoadBalancingClient = ElasticLoadBalancingClient;
|
|
2136
|
+
exports.ElasticLoadBalancingServiceException = ElasticLoadBalancingServiceException;
|
|
2137
|
+
exports.ElasticLoadBalancingServiceException$ = ElasticLoadBalancingServiceException$;
|
|
2138
|
+
exports.EnableAvailabilityZonesForLoadBalancer$ = EnableAvailabilityZonesForLoadBalancer$;
|
|
649
2139
|
exports.EnableAvailabilityZonesForLoadBalancerCommand = EnableAvailabilityZonesForLoadBalancerCommand;
|
|
2140
|
+
exports.HealthCheck$ = HealthCheck$;
|
|
2141
|
+
exports.Instance$ = Instance$;
|
|
2142
|
+
exports.InstanceState$ = InstanceState$;
|
|
2143
|
+
exports.InvalidConfigurationRequestException = InvalidConfigurationRequestException;
|
|
2144
|
+
exports.InvalidConfigurationRequestException$ = InvalidConfigurationRequestException$;
|
|
2145
|
+
exports.InvalidEndPointException = InvalidEndPointException;
|
|
2146
|
+
exports.InvalidEndPointException$ = InvalidEndPointException$;
|
|
2147
|
+
exports.InvalidSchemeException = InvalidSchemeException;
|
|
2148
|
+
exports.InvalidSchemeException$ = InvalidSchemeException$;
|
|
2149
|
+
exports.InvalidSecurityGroupException = InvalidSecurityGroupException;
|
|
2150
|
+
exports.InvalidSecurityGroupException$ = InvalidSecurityGroupException$;
|
|
2151
|
+
exports.InvalidSubnetException = InvalidSubnetException;
|
|
2152
|
+
exports.InvalidSubnetException$ = InvalidSubnetException$;
|
|
2153
|
+
exports.LBCookieStickinessPolicy$ = LBCookieStickinessPolicy$;
|
|
2154
|
+
exports.Limit$ = Limit$;
|
|
2155
|
+
exports.Listener$ = Listener$;
|
|
2156
|
+
exports.ListenerDescription$ = ListenerDescription$;
|
|
2157
|
+
exports.ListenerNotFoundException = ListenerNotFoundException;
|
|
2158
|
+
exports.ListenerNotFoundException$ = ListenerNotFoundException$;
|
|
2159
|
+
exports.LoadBalancerAttributeNotFoundException = LoadBalancerAttributeNotFoundException;
|
|
2160
|
+
exports.LoadBalancerAttributeNotFoundException$ = LoadBalancerAttributeNotFoundException$;
|
|
2161
|
+
exports.LoadBalancerAttributes$ = LoadBalancerAttributes$;
|
|
2162
|
+
exports.LoadBalancerDescription$ = LoadBalancerDescription$;
|
|
2163
|
+
exports.ModifyLoadBalancerAttributes$ = ModifyLoadBalancerAttributes$;
|
|
650
2164
|
exports.ModifyLoadBalancerAttributesCommand = ModifyLoadBalancerAttributesCommand;
|
|
2165
|
+
exports.ModifyLoadBalancerAttributesInput$ = ModifyLoadBalancerAttributesInput$;
|
|
2166
|
+
exports.ModifyLoadBalancerAttributesOutput$ = ModifyLoadBalancerAttributesOutput$;
|
|
2167
|
+
exports.OperationNotPermittedException = OperationNotPermittedException;
|
|
2168
|
+
exports.OperationNotPermittedException$ = OperationNotPermittedException$;
|
|
2169
|
+
exports.Policies$ = Policies$;
|
|
2170
|
+
exports.PolicyAttribute$ = PolicyAttribute$;
|
|
2171
|
+
exports.PolicyAttributeDescription$ = PolicyAttributeDescription$;
|
|
2172
|
+
exports.PolicyAttributeTypeDescription$ = PolicyAttributeTypeDescription$;
|
|
2173
|
+
exports.PolicyDescription$ = PolicyDescription$;
|
|
2174
|
+
exports.PolicyNotFoundException = PolicyNotFoundException;
|
|
2175
|
+
exports.PolicyNotFoundException$ = PolicyNotFoundException$;
|
|
2176
|
+
exports.PolicyTypeDescription$ = PolicyTypeDescription$;
|
|
2177
|
+
exports.PolicyTypeNotFoundException = PolicyTypeNotFoundException;
|
|
2178
|
+
exports.PolicyTypeNotFoundException$ = PolicyTypeNotFoundException$;
|
|
2179
|
+
exports.RegisterEndPointsInput$ = RegisterEndPointsInput$;
|
|
2180
|
+
exports.RegisterEndPointsOutput$ = RegisterEndPointsOutput$;
|
|
2181
|
+
exports.RegisterInstancesWithLoadBalancer$ = RegisterInstancesWithLoadBalancer$;
|
|
651
2182
|
exports.RegisterInstancesWithLoadBalancerCommand = RegisterInstancesWithLoadBalancerCommand;
|
|
2183
|
+
exports.RemoveAvailabilityZonesInput$ = RemoveAvailabilityZonesInput$;
|
|
2184
|
+
exports.RemoveAvailabilityZonesOutput$ = RemoveAvailabilityZonesOutput$;
|
|
2185
|
+
exports.RemoveTags$ = RemoveTags$;
|
|
652
2186
|
exports.RemoveTagsCommand = RemoveTagsCommand;
|
|
2187
|
+
exports.RemoveTagsInput$ = RemoveTagsInput$;
|
|
2188
|
+
exports.RemoveTagsOutput$ = RemoveTagsOutput$;
|
|
2189
|
+
exports.SetLoadBalancerListenerSSLCertificate$ = SetLoadBalancerListenerSSLCertificate$;
|
|
653
2190
|
exports.SetLoadBalancerListenerSSLCertificateCommand = SetLoadBalancerListenerSSLCertificateCommand;
|
|
2191
|
+
exports.SetLoadBalancerListenerSSLCertificateInput$ = SetLoadBalancerListenerSSLCertificateInput$;
|
|
2192
|
+
exports.SetLoadBalancerListenerSSLCertificateOutput$ = SetLoadBalancerListenerSSLCertificateOutput$;
|
|
2193
|
+
exports.SetLoadBalancerPoliciesForBackendServer$ = SetLoadBalancerPoliciesForBackendServer$;
|
|
654
2194
|
exports.SetLoadBalancerPoliciesForBackendServerCommand = SetLoadBalancerPoliciesForBackendServerCommand;
|
|
2195
|
+
exports.SetLoadBalancerPoliciesForBackendServerInput$ = SetLoadBalancerPoliciesForBackendServerInput$;
|
|
2196
|
+
exports.SetLoadBalancerPoliciesForBackendServerOutput$ = SetLoadBalancerPoliciesForBackendServerOutput$;
|
|
2197
|
+
exports.SetLoadBalancerPoliciesOfListener$ = SetLoadBalancerPoliciesOfListener$;
|
|
655
2198
|
exports.SetLoadBalancerPoliciesOfListenerCommand = SetLoadBalancerPoliciesOfListenerCommand;
|
|
2199
|
+
exports.SetLoadBalancerPoliciesOfListenerInput$ = SetLoadBalancerPoliciesOfListenerInput$;
|
|
2200
|
+
exports.SetLoadBalancerPoliciesOfListenerOutput$ = SetLoadBalancerPoliciesOfListenerOutput$;
|
|
2201
|
+
exports.SourceSecurityGroup$ = SourceSecurityGroup$;
|
|
2202
|
+
exports.SubnetNotFoundException = SubnetNotFoundException;
|
|
2203
|
+
exports.SubnetNotFoundException$ = SubnetNotFoundException$;
|
|
2204
|
+
exports.Tag$ = Tag$;
|
|
2205
|
+
exports.TagDescription$ = TagDescription$;
|
|
2206
|
+
exports.TagKeyOnly$ = TagKeyOnly$;
|
|
2207
|
+
exports.TooManyAccessPointsException = TooManyAccessPointsException;
|
|
2208
|
+
exports.TooManyAccessPointsException$ = TooManyAccessPointsException$;
|
|
2209
|
+
exports.TooManyPoliciesException = TooManyPoliciesException;
|
|
2210
|
+
exports.TooManyPoliciesException$ = TooManyPoliciesException$;
|
|
2211
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
2212
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2213
|
+
exports.UnsupportedProtocolException = UnsupportedProtocolException;
|
|
2214
|
+
exports.UnsupportedProtocolException$ = UnsupportedProtocolException$;
|
|
2215
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
656
2216
|
exports.paginateDescribeLoadBalancers = paginateDescribeLoadBalancers;
|
|
657
2217
|
exports.waitForAnyInstanceInService = waitForAnyInstanceInService;
|
|
658
2218
|
exports.waitForInstanceDeregistered = waitForInstanceDeregistered;
|