@aws-sdk/client-elastic-load-balancing 3.52.0 → 3.53.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ElasticLoadBalancingServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +312 -2
- package/dist-cjs/protocols/Aws_query.js +263 -874
- package/dist-es/index.js +1 -0
- package/dist-es/models/ElasticLoadBalancingServiceException.js +12 -0
- package/dist-es/models/models_0.js +288 -1
- package/dist-es/protocols/Aws_query.js +567 -933
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ElasticLoadBalancingServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +156 -67
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +112 -67
- package/package.json +26 -26
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AccessLog {
|
|
4
5
|
|
|
@@ -15,10 +16,12 @@ export declare namespace AccessLog {
|
|
|
15
16
|
const filterSensitiveLog: (obj: AccessLog) => any;
|
|
16
17
|
}
|
|
17
18
|
|
|
18
|
-
export
|
|
19
|
-
name: "AccessPointNotFoundException";
|
|
20
|
-
$fault: "client";
|
|
19
|
+
export declare class AccessPointNotFoundException extends __BaseException {
|
|
20
|
+
readonly name: "AccessPointNotFoundException";
|
|
21
|
+
readonly $fault: "client";
|
|
21
22
|
Message?: string;
|
|
23
|
+
|
|
24
|
+
constructor(opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>);
|
|
22
25
|
}
|
|
23
26
|
|
|
24
27
|
export interface AddAvailabilityZonesInput {
|
|
@@ -81,16 +84,20 @@ export declare namespace AddTagsOutput {
|
|
|
81
84
|
const filterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
82
85
|
}
|
|
83
86
|
|
|
84
|
-
export
|
|
85
|
-
name: "DuplicateTagKeysException";
|
|
86
|
-
$fault: "client";
|
|
87
|
+
export declare class DuplicateTagKeysException extends __BaseException {
|
|
88
|
+
readonly name: "DuplicateTagKeysException";
|
|
89
|
+
readonly $fault: "client";
|
|
87
90
|
Message?: string;
|
|
91
|
+
|
|
92
|
+
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
88
93
|
}
|
|
89
94
|
|
|
90
|
-
export
|
|
91
|
-
name: "TooManyTagsException";
|
|
92
|
-
$fault: "client";
|
|
95
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
96
|
+
readonly name: "TooManyTagsException";
|
|
97
|
+
readonly $fault: "client";
|
|
93
98
|
Message?: string;
|
|
99
|
+
|
|
100
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
94
101
|
}
|
|
95
102
|
|
|
96
103
|
export interface AppCookieStickinessPolicy {
|
|
@@ -124,16 +131,20 @@ export declare namespace ApplySecurityGroupsToLoadBalancerOutput {
|
|
|
124
131
|
const filterSensitiveLog: (obj: ApplySecurityGroupsToLoadBalancerOutput) => any;
|
|
125
132
|
}
|
|
126
133
|
|
|
127
|
-
export
|
|
128
|
-
name: "InvalidConfigurationRequestException";
|
|
129
|
-
$fault: "client";
|
|
134
|
+
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
135
|
+
readonly name: "InvalidConfigurationRequestException";
|
|
136
|
+
readonly $fault: "client";
|
|
130
137
|
Message?: string;
|
|
138
|
+
|
|
139
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
131
140
|
}
|
|
132
141
|
|
|
133
|
-
export
|
|
134
|
-
name: "InvalidSecurityGroupException";
|
|
135
|
-
$fault: "client";
|
|
142
|
+
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
143
|
+
readonly name: "InvalidSecurityGroupException";
|
|
144
|
+
readonly $fault: "client";
|
|
136
145
|
Message?: string;
|
|
146
|
+
|
|
147
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
137
148
|
}
|
|
138
149
|
|
|
139
150
|
export interface AttachLoadBalancerToSubnetsInput {
|
|
@@ -156,16 +167,20 @@ export declare namespace AttachLoadBalancerToSubnetsOutput {
|
|
|
156
167
|
const filterSensitiveLog: (obj: AttachLoadBalancerToSubnetsOutput) => any;
|
|
157
168
|
}
|
|
158
169
|
|
|
159
|
-
export
|
|
160
|
-
name: "InvalidSubnetException";
|
|
161
|
-
$fault: "client";
|
|
170
|
+
export declare class InvalidSubnetException extends __BaseException {
|
|
171
|
+
readonly name: "InvalidSubnetException";
|
|
172
|
+
readonly $fault: "client";
|
|
162
173
|
Message?: string;
|
|
174
|
+
|
|
175
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
163
176
|
}
|
|
164
177
|
|
|
165
|
-
export
|
|
166
|
-
name: "SubnetNotFoundException";
|
|
167
|
-
$fault: "client";
|
|
178
|
+
export declare class SubnetNotFoundException extends __BaseException {
|
|
179
|
+
readonly name: "SubnetNotFoundException";
|
|
180
|
+
readonly $fault: "client";
|
|
168
181
|
Message?: string;
|
|
182
|
+
|
|
183
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
169
184
|
}
|
|
170
185
|
|
|
171
186
|
export interface BackendServerDescription {
|
|
@@ -179,10 +194,12 @@ export declare namespace BackendServerDescription {
|
|
|
179
194
|
const filterSensitiveLog: (obj: BackendServerDescription) => any;
|
|
180
195
|
}
|
|
181
196
|
|
|
182
|
-
export
|
|
183
|
-
name: "CertificateNotFoundException";
|
|
184
|
-
$fault: "client";
|
|
197
|
+
export declare class CertificateNotFoundException extends __BaseException {
|
|
198
|
+
readonly name: "CertificateNotFoundException";
|
|
199
|
+
readonly $fault: "client";
|
|
185
200
|
Message?: string;
|
|
201
|
+
|
|
202
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
186
203
|
}
|
|
187
204
|
|
|
188
205
|
export interface HealthCheck {
|
|
@@ -309,16 +326,20 @@ export declare namespace CreateAppCookieStickinessPolicyOutput {
|
|
|
309
326
|
const filterSensitiveLog: (obj: CreateAppCookieStickinessPolicyOutput) => any;
|
|
310
327
|
}
|
|
311
328
|
|
|
312
|
-
export
|
|
313
|
-
name: "DuplicatePolicyNameException";
|
|
314
|
-
$fault: "client";
|
|
329
|
+
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
330
|
+
readonly name: "DuplicatePolicyNameException";
|
|
331
|
+
readonly $fault: "client";
|
|
315
332
|
Message?: string;
|
|
333
|
+
|
|
334
|
+
constructor(opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>);
|
|
316
335
|
}
|
|
317
336
|
|
|
318
|
-
export
|
|
319
|
-
name: "TooManyPoliciesException";
|
|
320
|
-
$fault: "client";
|
|
337
|
+
export declare class TooManyPoliciesException extends __BaseException {
|
|
338
|
+
readonly name: "TooManyPoliciesException";
|
|
339
|
+
readonly $fault: "client";
|
|
321
340
|
Message?: string;
|
|
341
|
+
|
|
342
|
+
constructor(opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>);
|
|
322
343
|
}
|
|
323
344
|
|
|
324
345
|
export interface CreateLBCookieStickinessPolicyInput {
|
|
@@ -341,34 +362,44 @@ export declare namespace CreateLBCookieStickinessPolicyOutput {
|
|
|
341
362
|
const filterSensitiveLog: (obj: CreateLBCookieStickinessPolicyOutput) => any;
|
|
342
363
|
}
|
|
343
364
|
|
|
344
|
-
export
|
|
345
|
-
name: "DuplicateAccessPointNameException";
|
|
346
|
-
$fault: "client";
|
|
365
|
+
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
366
|
+
readonly name: "DuplicateAccessPointNameException";
|
|
367
|
+
readonly $fault: "client";
|
|
347
368
|
Message?: string;
|
|
369
|
+
|
|
370
|
+
constructor(opts: __ExceptionOptionType<DuplicateAccessPointNameException, __BaseException>);
|
|
348
371
|
}
|
|
349
372
|
|
|
350
|
-
export
|
|
351
|
-
name: "InvalidSchemeException";
|
|
352
|
-
$fault: "client";
|
|
373
|
+
export declare class InvalidSchemeException extends __BaseException {
|
|
374
|
+
readonly name: "InvalidSchemeException";
|
|
375
|
+
readonly $fault: "client";
|
|
353
376
|
Message?: string;
|
|
377
|
+
|
|
378
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
354
379
|
}
|
|
355
380
|
|
|
356
|
-
export
|
|
357
|
-
name: "OperationNotPermittedException";
|
|
358
|
-
$fault: "client";
|
|
381
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
382
|
+
readonly name: "OperationNotPermittedException";
|
|
383
|
+
readonly $fault: "client";
|
|
359
384
|
Message?: string;
|
|
385
|
+
|
|
386
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
360
387
|
}
|
|
361
388
|
|
|
362
|
-
export
|
|
363
|
-
name: "TooManyAccessPointsException";
|
|
364
|
-
$fault: "client";
|
|
389
|
+
export declare class TooManyAccessPointsException extends __BaseException {
|
|
390
|
+
readonly name: "TooManyAccessPointsException";
|
|
391
|
+
readonly $fault: "client";
|
|
365
392
|
Message?: string;
|
|
393
|
+
|
|
394
|
+
constructor(opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>);
|
|
366
395
|
}
|
|
367
396
|
|
|
368
|
-
export
|
|
369
|
-
name: "UnsupportedProtocolException";
|
|
370
|
-
$fault: "client";
|
|
397
|
+
export declare class UnsupportedProtocolException extends __BaseException {
|
|
398
|
+
readonly name: "UnsupportedProtocolException";
|
|
399
|
+
readonly $fault: "client";
|
|
371
400
|
Message?: string;
|
|
401
|
+
|
|
402
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
372
403
|
}
|
|
373
404
|
|
|
374
405
|
export interface CreateLoadBalancerListenerInput {
|
|
@@ -389,10 +420,12 @@ export declare namespace CreateLoadBalancerListenerOutput {
|
|
|
389
420
|
const filterSensitiveLog: (obj: CreateLoadBalancerListenerOutput) => any;
|
|
390
421
|
}
|
|
391
422
|
|
|
392
|
-
export
|
|
393
|
-
name: "DuplicateListenerException";
|
|
394
|
-
$fault: "client";
|
|
423
|
+
export declare class DuplicateListenerException extends __BaseException {
|
|
424
|
+
readonly name: "DuplicateListenerException";
|
|
425
|
+
readonly $fault: "client";
|
|
395
426
|
Message?: string;
|
|
427
|
+
|
|
428
|
+
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
396
429
|
}
|
|
397
430
|
|
|
398
431
|
export interface PolicyAttribute {
|
|
@@ -428,10 +461,12 @@ export declare namespace CreateLoadBalancerPolicyOutput {
|
|
|
428
461
|
const filterSensitiveLog: (obj: CreateLoadBalancerPolicyOutput) => any;
|
|
429
462
|
}
|
|
430
463
|
|
|
431
|
-
export
|
|
432
|
-
name: "PolicyTypeNotFoundException";
|
|
433
|
-
$fault: "client";
|
|
464
|
+
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
465
|
+
readonly name: "PolicyTypeNotFoundException";
|
|
466
|
+
readonly $fault: "client";
|
|
434
467
|
Message?: string;
|
|
468
|
+
|
|
469
|
+
constructor(opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>);
|
|
435
470
|
}
|
|
436
471
|
|
|
437
472
|
export interface CrossZoneLoadBalancing {
|
|
@@ -495,10 +530,12 @@ export declare namespace DeleteLoadBalancerPolicyOutput {
|
|
|
495
530
|
const filterSensitiveLog: (obj: DeleteLoadBalancerPolicyOutput) => any;
|
|
496
531
|
}
|
|
497
532
|
|
|
498
|
-
export
|
|
499
|
-
name: "DependencyThrottleException";
|
|
500
|
-
$fault: "client";
|
|
533
|
+
export declare class DependencyThrottleException extends __BaseException {
|
|
534
|
+
readonly name: "DependencyThrottleException";
|
|
535
|
+
readonly $fault: "client";
|
|
501
536
|
Message?: string;
|
|
537
|
+
|
|
538
|
+
constructor(opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>);
|
|
502
539
|
}
|
|
503
540
|
|
|
504
541
|
export interface Instance {
|
|
@@ -530,10 +567,12 @@ export declare namespace DeregisterEndPointsOutput {
|
|
|
530
567
|
const filterSensitiveLog: (obj: DeregisterEndPointsOutput) => any;
|
|
531
568
|
}
|
|
532
569
|
|
|
533
|
-
export
|
|
534
|
-
name: "InvalidEndPointException";
|
|
535
|
-
$fault: "client";
|
|
570
|
+
export declare class InvalidEndPointException extends __BaseException {
|
|
571
|
+
readonly name: "InvalidEndPointException";
|
|
572
|
+
readonly $fault: "client";
|
|
536
573
|
Message?: string;
|
|
574
|
+
|
|
575
|
+
constructor(opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>);
|
|
537
576
|
}
|
|
538
577
|
|
|
539
578
|
export interface DescribeAccessPointsInput {
|
|
@@ -746,10 +785,12 @@ export declare namespace DescribeLoadBalancerAttributesOutput {
|
|
|
746
785
|
const filterSensitiveLog: (obj: DescribeLoadBalancerAttributesOutput) => any;
|
|
747
786
|
}
|
|
748
787
|
|
|
749
|
-
export
|
|
750
|
-
name: "LoadBalancerAttributeNotFoundException";
|
|
751
|
-
$fault: "client";
|
|
788
|
+
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
789
|
+
readonly name: "LoadBalancerAttributeNotFoundException";
|
|
790
|
+
readonly $fault: "client";
|
|
752
791
|
Message?: string;
|
|
792
|
+
|
|
793
|
+
constructor(opts: __ExceptionOptionType<LoadBalancerAttributeNotFoundException, __BaseException>);
|
|
753
794
|
}
|
|
754
795
|
|
|
755
796
|
export interface DescribeLoadBalancerPoliciesInput {
|
|
@@ -796,10 +837,12 @@ export declare namespace DescribeLoadBalancerPoliciesOutput {
|
|
|
796
837
|
const filterSensitiveLog: (obj: DescribeLoadBalancerPoliciesOutput) => any;
|
|
797
838
|
}
|
|
798
839
|
|
|
799
|
-
export
|
|
800
|
-
name: "PolicyNotFoundException";
|
|
801
|
-
$fault: "client";
|
|
840
|
+
export declare class PolicyNotFoundException extends __BaseException {
|
|
841
|
+
readonly name: "PolicyNotFoundException";
|
|
842
|
+
readonly $fault: "client";
|
|
802
843
|
Message?: string;
|
|
844
|
+
|
|
845
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
803
846
|
}
|
|
804
847
|
|
|
805
848
|
export interface DescribeLoadBalancerPolicyTypesInput {
|
|
@@ -988,10 +1031,12 @@ export declare namespace RemoveTagsOutput {
|
|
|
988
1031
|
const filterSensitiveLog: (obj: RemoveTagsOutput) => any;
|
|
989
1032
|
}
|
|
990
1033
|
|
|
991
|
-
export
|
|
992
|
-
name: "ListenerNotFoundException";
|
|
993
|
-
$fault: "client";
|
|
1034
|
+
export declare class ListenerNotFoundException extends __BaseException {
|
|
1035
|
+
readonly name: "ListenerNotFoundException";
|
|
1036
|
+
readonly $fault: "client";
|
|
994
1037
|
Message?: string;
|
|
1038
|
+
|
|
1039
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
995
1040
|
}
|
|
996
1041
|
|
|
997
1042
|
export interface SetLoadBalancerListenerSSLCertificateInput {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
51
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
52
52
|
"entities": "2.2.0",
|
|
53
53
|
"fast-xml-parser": "3.19.0",
|
|
54
54
|
"tslib": "^2.3.0"
|