@aws-sdk/client-elastic-load-balancing-v2 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ElasticLoadBalancingV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +523 -3
- package/dist-cjs/protocols/Aws_query.js +398 -1419
- package/dist-es/index.js +1 -0
- package/dist-es/models/ElasticLoadBalancingV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +483 -1
- package/dist-es/protocols/Aws_query.js +816 -1475
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ElasticLoadBalancingV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +261 -112
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ElasticLoadBalancingV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -94
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +28 -28
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput } from "./commands/AddListenerCertificatesCommand";
|
|
10
10
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
11
11
|
import { CreateListenerCommandInput, CreateListenerCommandOutput } from "./commands/CreateListenerCommand";
|
|
@@ -50,7 +50,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
50
50
|
|
|
51
51
|
urlParser?: __UrlParser;
|
|
52
52
|
|
|
53
|
-
bodyLengthChecker?:
|
|
53
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
54
54
|
|
|
55
55
|
streamCollector?: __StreamCollector;
|
|
56
56
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ElasticLoadBalancingV2ServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ElasticLoadBalancingV2ServiceException as __BaseException } from "./ElasticLoadBalancingV2ServiceException";
|
|
2
3
|
export declare enum AuthenticateCognitoActionConditionalBehaviorEnum {
|
|
3
4
|
ALLOW = "allow",
|
|
4
5
|
AUTHENTICATE = "authenticate",
|
|
@@ -196,22 +197,28 @@ export declare namespace AddListenerCertificatesOutput {
|
|
|
196
197
|
const filterSensitiveLog: (obj: AddListenerCertificatesOutput) => any;
|
|
197
198
|
}
|
|
198
199
|
|
|
199
|
-
export
|
|
200
|
-
name: "CertificateNotFoundException";
|
|
201
|
-
$fault: "client";
|
|
200
|
+
export declare class CertificateNotFoundException extends __BaseException {
|
|
201
|
+
readonly name: "CertificateNotFoundException";
|
|
202
|
+
readonly $fault: "client";
|
|
202
203
|
Message?: string;
|
|
204
|
+
|
|
205
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
export
|
|
206
|
-
name: "ListenerNotFoundException";
|
|
207
|
-
$fault: "client";
|
|
208
|
+
export declare class ListenerNotFoundException extends __BaseException {
|
|
209
|
+
readonly name: "ListenerNotFoundException";
|
|
210
|
+
readonly $fault: "client";
|
|
208
211
|
Message?: string;
|
|
212
|
+
|
|
213
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
209
214
|
}
|
|
210
215
|
|
|
211
|
-
export
|
|
212
|
-
name: "TooManyCertificatesException";
|
|
213
|
-
$fault: "client";
|
|
216
|
+
export declare class TooManyCertificatesException extends __BaseException {
|
|
217
|
+
readonly name: "TooManyCertificatesException";
|
|
218
|
+
readonly $fault: "client";
|
|
214
219
|
Message?: string;
|
|
220
|
+
|
|
221
|
+
constructor(opts: __ExceptionOptionType<TooManyCertificatesException, __BaseException>);
|
|
215
222
|
}
|
|
216
223
|
|
|
217
224
|
export interface Tag {
|
|
@@ -241,46 +248,60 @@ export declare namespace AddTagsOutput {
|
|
|
241
248
|
const filterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
242
249
|
}
|
|
243
250
|
|
|
244
|
-
export
|
|
245
|
-
name: "DuplicateTagKeysException";
|
|
246
|
-
$fault: "client";
|
|
251
|
+
export declare class DuplicateTagKeysException extends __BaseException {
|
|
252
|
+
readonly name: "DuplicateTagKeysException";
|
|
253
|
+
readonly $fault: "client";
|
|
247
254
|
Message?: string;
|
|
255
|
+
|
|
256
|
+
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
248
257
|
}
|
|
249
258
|
|
|
250
|
-
export
|
|
251
|
-
name: "LoadBalancerNotFoundException";
|
|
252
|
-
$fault: "client";
|
|
259
|
+
export declare class LoadBalancerNotFoundException extends __BaseException {
|
|
260
|
+
readonly name: "LoadBalancerNotFoundException";
|
|
261
|
+
readonly $fault: "client";
|
|
253
262
|
Message?: string;
|
|
263
|
+
|
|
264
|
+
constructor(opts: __ExceptionOptionType<LoadBalancerNotFoundException, __BaseException>);
|
|
254
265
|
}
|
|
255
266
|
|
|
256
|
-
export
|
|
257
|
-
name: "RuleNotFoundException";
|
|
258
|
-
$fault: "client";
|
|
267
|
+
export declare class RuleNotFoundException extends __BaseException {
|
|
268
|
+
readonly name: "RuleNotFoundException";
|
|
269
|
+
readonly $fault: "client";
|
|
259
270
|
Message?: string;
|
|
271
|
+
|
|
272
|
+
constructor(opts: __ExceptionOptionType<RuleNotFoundException, __BaseException>);
|
|
260
273
|
}
|
|
261
274
|
|
|
262
|
-
export
|
|
263
|
-
name: "TargetGroupNotFoundException";
|
|
264
|
-
$fault: "client";
|
|
275
|
+
export declare class TargetGroupNotFoundException extends __BaseException {
|
|
276
|
+
readonly name: "TargetGroupNotFoundException";
|
|
277
|
+
readonly $fault: "client";
|
|
265
278
|
Message?: string;
|
|
279
|
+
|
|
280
|
+
constructor(opts: __ExceptionOptionType<TargetGroupNotFoundException, __BaseException>);
|
|
266
281
|
}
|
|
267
282
|
|
|
268
|
-
export
|
|
269
|
-
name: "TooManyTagsException";
|
|
270
|
-
$fault: "client";
|
|
283
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
284
|
+
readonly name: "TooManyTagsException";
|
|
285
|
+
readonly $fault: "client";
|
|
271
286
|
Message?: string;
|
|
287
|
+
|
|
288
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
272
289
|
}
|
|
273
290
|
|
|
274
|
-
export
|
|
275
|
-
name: "AllocationIdNotFoundException";
|
|
276
|
-
$fault: "client";
|
|
291
|
+
export declare class AllocationIdNotFoundException extends __BaseException {
|
|
292
|
+
readonly name: "AllocationIdNotFoundException";
|
|
293
|
+
readonly $fault: "client";
|
|
277
294
|
Message?: string;
|
|
295
|
+
|
|
296
|
+
constructor(opts: __ExceptionOptionType<AllocationIdNotFoundException, __BaseException>);
|
|
278
297
|
}
|
|
279
298
|
|
|
280
|
-
export
|
|
281
|
-
name: "ALPNPolicyNotSupportedException";
|
|
282
|
-
$fault: "client";
|
|
299
|
+
export declare class ALPNPolicyNotSupportedException extends __BaseException {
|
|
300
|
+
readonly name: "ALPNPolicyNotSupportedException";
|
|
301
|
+
readonly $fault: "client";
|
|
283
302
|
Message?: string;
|
|
303
|
+
|
|
304
|
+
constructor(opts: __ExceptionOptionType<ALPNPolicyNotSupportedException, __BaseException>);
|
|
284
305
|
}
|
|
285
306
|
|
|
286
307
|
export interface LoadBalancerAddress {
|
|
@@ -313,10 +334,12 @@ export declare namespace AvailabilityZone {
|
|
|
313
334
|
const filterSensitiveLog: (obj: AvailabilityZone) => any;
|
|
314
335
|
}
|
|
315
336
|
|
|
316
|
-
export
|
|
317
|
-
name: "AvailabilityZoneNotSupportedException";
|
|
318
|
-
$fault: "client";
|
|
337
|
+
export declare class AvailabilityZoneNotSupportedException extends __BaseException {
|
|
338
|
+
readonly name: "AvailabilityZoneNotSupportedException";
|
|
339
|
+
readonly $fault: "client";
|
|
319
340
|
Message?: string;
|
|
341
|
+
|
|
342
|
+
constructor(opts: __ExceptionOptionType<AvailabilityZoneNotSupportedException, __BaseException>);
|
|
320
343
|
}
|
|
321
344
|
|
|
322
345
|
export interface Cipher {
|
|
@@ -384,76 +407,100 @@ export declare namespace CreateListenerOutput {
|
|
|
384
407
|
const filterSensitiveLog: (obj: CreateListenerOutput) => any;
|
|
385
408
|
}
|
|
386
409
|
|
|
387
|
-
export
|
|
388
|
-
name: "DuplicateListenerException";
|
|
389
|
-
$fault: "client";
|
|
410
|
+
export declare class DuplicateListenerException extends __BaseException {
|
|
411
|
+
readonly name: "DuplicateListenerException";
|
|
412
|
+
readonly $fault: "client";
|
|
390
413
|
Message?: string;
|
|
414
|
+
|
|
415
|
+
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
391
416
|
}
|
|
392
417
|
|
|
393
|
-
export
|
|
394
|
-
name: "IncompatibleProtocolsException";
|
|
395
|
-
$fault: "client";
|
|
418
|
+
export declare class IncompatibleProtocolsException extends __BaseException {
|
|
419
|
+
readonly name: "IncompatibleProtocolsException";
|
|
420
|
+
readonly $fault: "client";
|
|
396
421
|
Message?: string;
|
|
422
|
+
|
|
423
|
+
constructor(opts: __ExceptionOptionType<IncompatibleProtocolsException, __BaseException>);
|
|
397
424
|
}
|
|
398
425
|
|
|
399
|
-
export
|
|
400
|
-
name: "InvalidConfigurationRequestException";
|
|
401
|
-
$fault: "client";
|
|
426
|
+
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
427
|
+
readonly name: "InvalidConfigurationRequestException";
|
|
428
|
+
readonly $fault: "client";
|
|
402
429
|
Message?: string;
|
|
430
|
+
|
|
431
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
403
432
|
}
|
|
404
433
|
|
|
405
|
-
export
|
|
406
|
-
name: "InvalidLoadBalancerActionException";
|
|
407
|
-
$fault: "client";
|
|
434
|
+
export declare class InvalidLoadBalancerActionException extends __BaseException {
|
|
435
|
+
readonly name: "InvalidLoadBalancerActionException";
|
|
436
|
+
readonly $fault: "client";
|
|
408
437
|
Message?: string;
|
|
438
|
+
|
|
439
|
+
constructor(opts: __ExceptionOptionType<InvalidLoadBalancerActionException, __BaseException>);
|
|
409
440
|
}
|
|
410
441
|
|
|
411
|
-
export
|
|
412
|
-
name: "SSLPolicyNotFoundException";
|
|
413
|
-
$fault: "client";
|
|
442
|
+
export declare class SSLPolicyNotFoundException extends __BaseException {
|
|
443
|
+
readonly name: "SSLPolicyNotFoundException";
|
|
444
|
+
readonly $fault: "client";
|
|
414
445
|
Message?: string;
|
|
446
|
+
|
|
447
|
+
constructor(opts: __ExceptionOptionType<SSLPolicyNotFoundException, __BaseException>);
|
|
415
448
|
}
|
|
416
449
|
|
|
417
|
-
export
|
|
418
|
-
name: "TargetGroupAssociationLimitException";
|
|
419
|
-
$fault: "client";
|
|
450
|
+
export declare class TargetGroupAssociationLimitException extends __BaseException {
|
|
451
|
+
readonly name: "TargetGroupAssociationLimitException";
|
|
452
|
+
readonly $fault: "client";
|
|
420
453
|
Message?: string;
|
|
454
|
+
|
|
455
|
+
constructor(opts: __ExceptionOptionType<TargetGroupAssociationLimitException, __BaseException>);
|
|
421
456
|
}
|
|
422
457
|
|
|
423
|
-
export
|
|
424
|
-
name: "TooManyActionsException";
|
|
425
|
-
$fault: "client";
|
|
458
|
+
export declare class TooManyActionsException extends __BaseException {
|
|
459
|
+
readonly name: "TooManyActionsException";
|
|
460
|
+
readonly $fault: "client";
|
|
426
461
|
Message?: string;
|
|
462
|
+
|
|
463
|
+
constructor(opts: __ExceptionOptionType<TooManyActionsException, __BaseException>);
|
|
427
464
|
}
|
|
428
465
|
|
|
429
|
-
export
|
|
430
|
-
name: "TooManyListenersException";
|
|
431
|
-
$fault: "client";
|
|
466
|
+
export declare class TooManyListenersException extends __BaseException {
|
|
467
|
+
readonly name: "TooManyListenersException";
|
|
468
|
+
readonly $fault: "client";
|
|
432
469
|
Message?: string;
|
|
470
|
+
|
|
471
|
+
constructor(opts: __ExceptionOptionType<TooManyListenersException, __BaseException>);
|
|
433
472
|
}
|
|
434
473
|
|
|
435
|
-
export
|
|
436
|
-
name: "TooManyRegistrationsForTargetIdException";
|
|
437
|
-
$fault: "client";
|
|
474
|
+
export declare class TooManyRegistrationsForTargetIdException extends __BaseException {
|
|
475
|
+
readonly name: "TooManyRegistrationsForTargetIdException";
|
|
476
|
+
readonly $fault: "client";
|
|
438
477
|
Message?: string;
|
|
478
|
+
|
|
479
|
+
constructor(opts: __ExceptionOptionType<TooManyRegistrationsForTargetIdException, __BaseException>);
|
|
439
480
|
}
|
|
440
481
|
|
|
441
|
-
export
|
|
442
|
-
name: "TooManyTargetsException";
|
|
443
|
-
$fault: "client";
|
|
482
|
+
export declare class TooManyTargetsException extends __BaseException {
|
|
483
|
+
readonly name: "TooManyTargetsException";
|
|
484
|
+
readonly $fault: "client";
|
|
444
485
|
Message?: string;
|
|
486
|
+
|
|
487
|
+
constructor(opts: __ExceptionOptionType<TooManyTargetsException, __BaseException>);
|
|
445
488
|
}
|
|
446
489
|
|
|
447
|
-
export
|
|
448
|
-
name: "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
449
|
-
$fault: "client";
|
|
490
|
+
export declare class TooManyUniqueTargetGroupsPerLoadBalancerException extends __BaseException {
|
|
491
|
+
readonly name: "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
492
|
+
readonly $fault: "client";
|
|
450
493
|
Message?: string;
|
|
494
|
+
|
|
495
|
+
constructor(opts: __ExceptionOptionType<TooManyUniqueTargetGroupsPerLoadBalancerException, __BaseException>);
|
|
451
496
|
}
|
|
452
497
|
|
|
453
|
-
export
|
|
454
|
-
name: "UnsupportedProtocolException";
|
|
455
|
-
$fault: "client";
|
|
498
|
+
export declare class UnsupportedProtocolException extends __BaseException {
|
|
499
|
+
readonly name: "UnsupportedProtocolException";
|
|
500
|
+
readonly $fault: "client";
|
|
456
501
|
Message?: string;
|
|
502
|
+
|
|
503
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
457
504
|
}
|
|
458
505
|
export declare enum IpAddressType {
|
|
459
506
|
DUALSTACK = "dualstack",
|
|
@@ -566,52 +613,68 @@ export declare namespace CreateLoadBalancerOutput {
|
|
|
566
613
|
const filterSensitiveLog: (obj: CreateLoadBalancerOutput) => any;
|
|
567
614
|
}
|
|
568
615
|
|
|
569
|
-
export
|
|
570
|
-
name: "DuplicateLoadBalancerNameException";
|
|
571
|
-
$fault: "client";
|
|
616
|
+
export declare class DuplicateLoadBalancerNameException extends __BaseException {
|
|
617
|
+
readonly name: "DuplicateLoadBalancerNameException";
|
|
618
|
+
readonly $fault: "client";
|
|
572
619
|
Message?: string;
|
|
620
|
+
|
|
621
|
+
constructor(opts: __ExceptionOptionType<DuplicateLoadBalancerNameException, __BaseException>);
|
|
573
622
|
}
|
|
574
623
|
|
|
575
|
-
export
|
|
576
|
-
name: "InvalidSchemeException";
|
|
577
|
-
$fault: "client";
|
|
624
|
+
export declare class InvalidSchemeException extends __BaseException {
|
|
625
|
+
readonly name: "InvalidSchemeException";
|
|
626
|
+
readonly $fault: "client";
|
|
578
627
|
Message?: string;
|
|
628
|
+
|
|
629
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
579
630
|
}
|
|
580
631
|
|
|
581
|
-
export
|
|
582
|
-
name: "InvalidSecurityGroupException";
|
|
583
|
-
$fault: "client";
|
|
632
|
+
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
633
|
+
readonly name: "InvalidSecurityGroupException";
|
|
634
|
+
readonly $fault: "client";
|
|
584
635
|
Message?: string;
|
|
636
|
+
|
|
637
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
585
638
|
}
|
|
586
639
|
|
|
587
|
-
export
|
|
588
|
-
name: "InvalidSubnetException";
|
|
589
|
-
$fault: "client";
|
|
640
|
+
export declare class InvalidSubnetException extends __BaseException {
|
|
641
|
+
readonly name: "InvalidSubnetException";
|
|
642
|
+
readonly $fault: "client";
|
|
590
643
|
Message?: string;
|
|
644
|
+
|
|
645
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
591
646
|
}
|
|
592
647
|
|
|
593
|
-
export
|
|
594
|
-
name: "OperationNotPermittedException";
|
|
595
|
-
$fault: "client";
|
|
648
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
649
|
+
readonly name: "OperationNotPermittedException";
|
|
650
|
+
readonly $fault: "client";
|
|
596
651
|
Message?: string;
|
|
652
|
+
|
|
653
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
597
654
|
}
|
|
598
655
|
|
|
599
|
-
export
|
|
600
|
-
name: "ResourceInUseException";
|
|
601
|
-
$fault: "client";
|
|
656
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
657
|
+
readonly name: "ResourceInUseException";
|
|
658
|
+
readonly $fault: "client";
|
|
602
659
|
Message?: string;
|
|
660
|
+
|
|
661
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
603
662
|
}
|
|
604
663
|
|
|
605
|
-
export
|
|
606
|
-
name: "SubnetNotFoundException";
|
|
607
|
-
$fault: "client";
|
|
664
|
+
export declare class SubnetNotFoundException extends __BaseException {
|
|
665
|
+
readonly name: "SubnetNotFoundException";
|
|
666
|
+
readonly $fault: "client";
|
|
608
667
|
Message?: string;
|
|
668
|
+
|
|
669
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
609
670
|
}
|
|
610
671
|
|
|
611
|
-
export
|
|
612
|
-
name: "TooManyLoadBalancersException";
|
|
613
|
-
$fault: "client";
|
|
672
|
+
export declare class TooManyLoadBalancersException extends __BaseException {
|
|
673
|
+
readonly name: "TooManyLoadBalancersException";
|
|
674
|
+
readonly $fault: "client";
|
|
614
675
|
Message?: string;
|
|
676
|
+
|
|
677
|
+
constructor(opts: __ExceptionOptionType<TooManyLoadBalancersException, __BaseException>);
|
|
615
678
|
}
|
|
616
679
|
|
|
617
680
|
export interface HostHeaderConditionConfig {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
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.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
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.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
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.54.1",
|
|
52
52
|
"entities": "2.2.0",
|
|
53
53
|
"fast-xml-parser": "3.19.0",
|
|
54
54
|
"tslib": "^2.3.0"
|