@aws-sdk/client-elastic-load-balancing 3.50.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 +27 -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/ElasticLoadBalancing.d.ts +150 -0
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +29 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1100 -0
- package/dist-types/ts3.4/pagination/DescribeLoadBalancersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +7 -0
- package/package.json +34 -34
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ElasticLoadBalancing service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ElasticLoadBalancingServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -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
|
* <p>Information about the <code>AccessLog</code> attribute.</p>
|
|
4
5
|
*/
|
|
@@ -31,10 +32,14 @@ export declare namespace AccessLog {
|
|
|
31
32
|
/**
|
|
32
33
|
* <p>The specified load balancer does not exist.</p>
|
|
33
34
|
*/
|
|
34
|
-
export
|
|
35
|
-
name: "AccessPointNotFoundException";
|
|
36
|
-
$fault: "client";
|
|
35
|
+
export declare class AccessPointNotFoundException extends __BaseException {
|
|
36
|
+
readonly name: "AccessPointNotFoundException";
|
|
37
|
+
readonly $fault: "client";
|
|
37
38
|
Message?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
constructor(opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>);
|
|
38
43
|
}
|
|
39
44
|
/**
|
|
40
45
|
* <p>Contains the parameters for EnableAvailabilityZonesForLoadBalancer.</p>
|
|
@@ -150,18 +155,26 @@ export declare namespace AddTagsOutput {
|
|
|
150
155
|
/**
|
|
151
156
|
* <p>A tag key was specified more than once.</p>
|
|
152
157
|
*/
|
|
153
|
-
export
|
|
154
|
-
name: "DuplicateTagKeysException";
|
|
155
|
-
$fault: "client";
|
|
158
|
+
export declare class DuplicateTagKeysException extends __BaseException {
|
|
159
|
+
readonly name: "DuplicateTagKeysException";
|
|
160
|
+
readonly $fault: "client";
|
|
156
161
|
Message?: string;
|
|
162
|
+
/**
|
|
163
|
+
* @internal
|
|
164
|
+
*/
|
|
165
|
+
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
157
166
|
}
|
|
158
167
|
/**
|
|
159
168
|
* <p>The quota for the number of tags that can be assigned to a load balancer has been reached.</p>
|
|
160
169
|
*/
|
|
161
|
-
export
|
|
162
|
-
name: "TooManyTagsException";
|
|
163
|
-
$fault: "client";
|
|
170
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
171
|
+
readonly name: "TooManyTagsException";
|
|
172
|
+
readonly $fault: "client";
|
|
164
173
|
Message?: string;
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
165
178
|
}
|
|
166
179
|
/**
|
|
167
180
|
* <p>Information about a policy for application-controlled session stickiness.</p>
|
|
@@ -219,18 +232,26 @@ export declare namespace ApplySecurityGroupsToLoadBalancerOutput {
|
|
|
219
232
|
/**
|
|
220
233
|
* <p>The requested configuration change is not valid.</p>
|
|
221
234
|
*/
|
|
222
|
-
export
|
|
223
|
-
name: "InvalidConfigurationRequestException";
|
|
224
|
-
$fault: "client";
|
|
235
|
+
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
236
|
+
readonly name: "InvalidConfigurationRequestException";
|
|
237
|
+
readonly $fault: "client";
|
|
225
238
|
Message?: string;
|
|
239
|
+
/**
|
|
240
|
+
* @internal
|
|
241
|
+
*/
|
|
242
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
226
243
|
}
|
|
227
244
|
/**
|
|
228
245
|
* <p>One or more of the specified security groups do not exist.</p>
|
|
229
246
|
*/
|
|
230
|
-
export
|
|
231
|
-
name: "InvalidSecurityGroupException";
|
|
232
|
-
$fault: "client";
|
|
247
|
+
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
248
|
+
readonly name: "InvalidSecurityGroupException";
|
|
249
|
+
readonly $fault: "client";
|
|
233
250
|
Message?: string;
|
|
251
|
+
/**
|
|
252
|
+
* @internal
|
|
253
|
+
*/
|
|
254
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
234
255
|
}
|
|
235
256
|
/**
|
|
236
257
|
* <p>Contains the parameters for AttachLoaBalancerToSubnets.</p>
|
|
@@ -269,18 +290,26 @@ export declare namespace AttachLoadBalancerToSubnetsOutput {
|
|
|
269
290
|
/**
|
|
270
291
|
* <p>The specified VPC has no associated Internet gateway.</p>
|
|
271
292
|
*/
|
|
272
|
-
export
|
|
273
|
-
name: "InvalidSubnetException";
|
|
274
|
-
$fault: "client";
|
|
293
|
+
export declare class InvalidSubnetException extends __BaseException {
|
|
294
|
+
readonly name: "InvalidSubnetException";
|
|
295
|
+
readonly $fault: "client";
|
|
275
296
|
Message?: string;
|
|
297
|
+
/**
|
|
298
|
+
* @internal
|
|
299
|
+
*/
|
|
300
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
276
301
|
}
|
|
277
302
|
/**
|
|
278
303
|
* <p>One or more of the specified subnets do not exist.</p>
|
|
279
304
|
*/
|
|
280
|
-
export
|
|
281
|
-
name: "SubnetNotFoundException";
|
|
282
|
-
$fault: "client";
|
|
305
|
+
export declare class SubnetNotFoundException extends __BaseException {
|
|
306
|
+
readonly name: "SubnetNotFoundException";
|
|
307
|
+
readonly $fault: "client";
|
|
283
308
|
Message?: string;
|
|
309
|
+
/**
|
|
310
|
+
* @internal
|
|
311
|
+
*/
|
|
312
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
284
313
|
}
|
|
285
314
|
/**
|
|
286
315
|
* <p>Information about the configuration of an EC2 instance.</p>
|
|
@@ -306,10 +335,14 @@ export declare namespace BackendServerDescription {
|
|
|
306
335
|
* or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might
|
|
307
336
|
* indicate that the certificate is not fully available yet.</p>
|
|
308
337
|
*/
|
|
309
|
-
export
|
|
310
|
-
name: "CertificateNotFoundException";
|
|
311
|
-
$fault: "client";
|
|
338
|
+
export declare class CertificateNotFoundException extends __BaseException {
|
|
339
|
+
readonly name: "CertificateNotFoundException";
|
|
340
|
+
readonly $fault: "client";
|
|
312
341
|
Message?: string;
|
|
342
|
+
/**
|
|
343
|
+
* @internal
|
|
344
|
+
*/
|
|
345
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
313
346
|
}
|
|
314
347
|
/**
|
|
315
348
|
* <p>Information about a health check.</p>
|
|
@@ -558,18 +591,26 @@ export declare namespace CreateAppCookieStickinessPolicyOutput {
|
|
|
558
591
|
/**
|
|
559
592
|
* <p>A policy with the specified name already exists for this load balancer.</p>
|
|
560
593
|
*/
|
|
561
|
-
export
|
|
562
|
-
name: "DuplicatePolicyNameException";
|
|
563
|
-
$fault: "client";
|
|
594
|
+
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
595
|
+
readonly name: "DuplicatePolicyNameException";
|
|
596
|
+
readonly $fault: "client";
|
|
564
597
|
Message?: string;
|
|
598
|
+
/**
|
|
599
|
+
* @internal
|
|
600
|
+
*/
|
|
601
|
+
constructor(opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>);
|
|
565
602
|
}
|
|
566
603
|
/**
|
|
567
604
|
* <p>The quota for the number of policies for this load balancer has been reached.</p>
|
|
568
605
|
*/
|
|
569
|
-
export
|
|
570
|
-
name: "TooManyPoliciesException";
|
|
571
|
-
$fault: "client";
|
|
606
|
+
export declare class TooManyPoliciesException extends __BaseException {
|
|
607
|
+
readonly name: "TooManyPoliciesException";
|
|
608
|
+
readonly $fault: "client";
|
|
572
609
|
Message?: string;
|
|
610
|
+
/**
|
|
611
|
+
* @internal
|
|
612
|
+
*/
|
|
613
|
+
constructor(opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>);
|
|
573
614
|
}
|
|
574
615
|
/**
|
|
575
616
|
* <p>Contains the parameters for CreateLBCookieStickinessPolicy.</p>
|
|
@@ -608,42 +649,62 @@ export declare namespace CreateLBCookieStickinessPolicyOutput {
|
|
|
608
649
|
/**
|
|
609
650
|
* <p>The specified load balancer name already exists for this account.</p>
|
|
610
651
|
*/
|
|
611
|
-
export
|
|
612
|
-
name: "DuplicateAccessPointNameException";
|
|
613
|
-
$fault: "client";
|
|
652
|
+
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
653
|
+
readonly name: "DuplicateAccessPointNameException";
|
|
654
|
+
readonly $fault: "client";
|
|
614
655
|
Message?: string;
|
|
656
|
+
/**
|
|
657
|
+
* @internal
|
|
658
|
+
*/
|
|
659
|
+
constructor(opts: __ExceptionOptionType<DuplicateAccessPointNameException, __BaseException>);
|
|
615
660
|
}
|
|
616
661
|
/**
|
|
617
662
|
* <p>The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.</p>
|
|
618
663
|
*/
|
|
619
|
-
export
|
|
620
|
-
name: "InvalidSchemeException";
|
|
621
|
-
$fault: "client";
|
|
664
|
+
export declare class InvalidSchemeException extends __BaseException {
|
|
665
|
+
readonly name: "InvalidSchemeException";
|
|
666
|
+
readonly $fault: "client";
|
|
622
667
|
Message?: string;
|
|
668
|
+
/**
|
|
669
|
+
* @internal
|
|
670
|
+
*/
|
|
671
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
623
672
|
}
|
|
624
673
|
/**
|
|
625
674
|
* <p>This operation is not allowed.</p>
|
|
626
675
|
*/
|
|
627
|
-
export
|
|
628
|
-
name: "OperationNotPermittedException";
|
|
629
|
-
$fault: "client";
|
|
676
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
677
|
+
readonly name: "OperationNotPermittedException";
|
|
678
|
+
readonly $fault: "client";
|
|
630
679
|
Message?: string;
|
|
680
|
+
/**
|
|
681
|
+
* @internal
|
|
682
|
+
*/
|
|
683
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
631
684
|
}
|
|
632
685
|
/**
|
|
633
686
|
* <p>The quota for the number of load balancers has been reached.</p>
|
|
634
687
|
*/
|
|
635
|
-
export
|
|
636
|
-
name: "TooManyAccessPointsException";
|
|
637
|
-
$fault: "client";
|
|
688
|
+
export declare class TooManyAccessPointsException extends __BaseException {
|
|
689
|
+
readonly name: "TooManyAccessPointsException";
|
|
690
|
+
readonly $fault: "client";
|
|
638
691
|
Message?: string;
|
|
692
|
+
/**
|
|
693
|
+
* @internal
|
|
694
|
+
*/
|
|
695
|
+
constructor(opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>);
|
|
639
696
|
}
|
|
640
697
|
/**
|
|
641
698
|
* <p>The specified protocol or signature version is not supported.</p>
|
|
642
699
|
*/
|
|
643
|
-
export
|
|
644
|
-
name: "UnsupportedProtocolException";
|
|
645
|
-
$fault: "client";
|
|
700
|
+
export declare class UnsupportedProtocolException extends __BaseException {
|
|
701
|
+
readonly name: "UnsupportedProtocolException";
|
|
702
|
+
readonly $fault: "client";
|
|
646
703
|
Message?: string;
|
|
704
|
+
/**
|
|
705
|
+
* @internal
|
|
706
|
+
*/
|
|
707
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
647
708
|
}
|
|
648
709
|
/**
|
|
649
710
|
* <p>Contains the parameters for CreateLoadBalancerListeners.</p>
|
|
@@ -678,10 +739,14 @@ export declare namespace CreateLoadBalancerListenerOutput {
|
|
|
678
739
|
/**
|
|
679
740
|
* <p>A listener already exists for the specified load balancer name and port, but with a different instance port, protocol, or SSL certificate.</p>
|
|
680
741
|
*/
|
|
681
|
-
export
|
|
682
|
-
name: "DuplicateListenerException";
|
|
683
|
-
$fault: "client";
|
|
742
|
+
export declare class DuplicateListenerException extends __BaseException {
|
|
743
|
+
readonly name: "DuplicateListenerException";
|
|
744
|
+
readonly $fault: "client";
|
|
684
745
|
Message?: string;
|
|
746
|
+
/**
|
|
747
|
+
* @internal
|
|
748
|
+
*/
|
|
749
|
+
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
685
750
|
}
|
|
686
751
|
/**
|
|
687
752
|
* <p>Information about a policy attribute.</p>
|
|
@@ -744,10 +809,14 @@ export declare namespace CreateLoadBalancerPolicyOutput {
|
|
|
744
809
|
/**
|
|
745
810
|
* <p>One or more of the specified policy types do not exist.</p>
|
|
746
811
|
*/
|
|
747
|
-
export
|
|
748
|
-
name: "PolicyTypeNotFoundException";
|
|
749
|
-
$fault: "client";
|
|
812
|
+
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
813
|
+
readonly name: "PolicyTypeNotFoundException";
|
|
814
|
+
readonly $fault: "client";
|
|
750
815
|
Message?: string;
|
|
816
|
+
/**
|
|
817
|
+
* @internal
|
|
818
|
+
*/
|
|
819
|
+
constructor(opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>);
|
|
751
820
|
}
|
|
752
821
|
/**
|
|
753
822
|
* <p>Information about the <code>CrossZoneLoadBalancing</code> attribute.</p>
|
|
@@ -853,10 +922,14 @@ export declare namespace DeleteLoadBalancerPolicyOutput {
|
|
|
853
922
|
/**
|
|
854
923
|
* <p>A request made by Elastic Load Balancing to another service exceeds the maximum request rate permitted for your account.</p>
|
|
855
924
|
*/
|
|
856
|
-
export
|
|
857
|
-
name: "DependencyThrottleException";
|
|
858
|
-
$fault: "client";
|
|
925
|
+
export declare class DependencyThrottleException extends __BaseException {
|
|
926
|
+
readonly name: "DependencyThrottleException";
|
|
927
|
+
readonly $fault: "client";
|
|
859
928
|
Message?: string;
|
|
929
|
+
/**
|
|
930
|
+
* @internal
|
|
931
|
+
*/
|
|
932
|
+
constructor(opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>);
|
|
860
933
|
}
|
|
861
934
|
/**
|
|
862
935
|
* <p>The ID of an EC2 instance.</p>
|
|
@@ -910,10 +983,14 @@ export declare namespace DeregisterEndPointsOutput {
|
|
|
910
983
|
/**
|
|
911
984
|
* <p>The specified endpoint is not valid.</p>
|
|
912
985
|
*/
|
|
913
|
-
export
|
|
914
|
-
name: "InvalidEndPointException";
|
|
915
|
-
$fault: "client";
|
|
986
|
+
export declare class InvalidEndPointException extends __BaseException {
|
|
987
|
+
readonly name: "InvalidEndPointException";
|
|
988
|
+
readonly $fault: "client";
|
|
916
989
|
Message?: string;
|
|
990
|
+
/**
|
|
991
|
+
* @internal
|
|
992
|
+
*/
|
|
993
|
+
constructor(opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>);
|
|
917
994
|
}
|
|
918
995
|
/**
|
|
919
996
|
* <p>Contains the parameters for DescribeLoadBalancers.</p>
|
|
@@ -1382,10 +1459,14 @@ export declare namespace DescribeLoadBalancerAttributesOutput {
|
|
|
1382
1459
|
/**
|
|
1383
1460
|
* <p>The specified load balancer attribute does not exist.</p>
|
|
1384
1461
|
*/
|
|
1385
|
-
export
|
|
1386
|
-
name: "LoadBalancerAttributeNotFoundException";
|
|
1387
|
-
$fault: "client";
|
|
1462
|
+
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
1463
|
+
readonly name: "LoadBalancerAttributeNotFoundException";
|
|
1464
|
+
readonly $fault: "client";
|
|
1388
1465
|
Message?: string;
|
|
1466
|
+
/**
|
|
1467
|
+
* @internal
|
|
1468
|
+
*/
|
|
1469
|
+
constructor(opts: __ExceptionOptionType<LoadBalancerAttributeNotFoundException, __BaseException>);
|
|
1389
1470
|
}
|
|
1390
1471
|
/**
|
|
1391
1472
|
* <p>Contains the parameters for DescribeLoadBalancerPolicies.</p>
|
|
@@ -1466,10 +1547,14 @@ export declare namespace DescribeLoadBalancerPoliciesOutput {
|
|
|
1466
1547
|
/**
|
|
1467
1548
|
* <p>One or more of the specified policies do not exist.</p>
|
|
1468
1549
|
*/
|
|
1469
|
-
export
|
|
1470
|
-
name: "PolicyNotFoundException";
|
|
1471
|
-
$fault: "client";
|
|
1550
|
+
export declare class PolicyNotFoundException extends __BaseException {
|
|
1551
|
+
readonly name: "PolicyNotFoundException";
|
|
1552
|
+
readonly $fault: "client";
|
|
1472
1553
|
Message?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* @internal
|
|
1556
|
+
*/
|
|
1557
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
1473
1558
|
}
|
|
1474
1559
|
/**
|
|
1475
1560
|
* <p>Contains the parameters for DescribeLoadBalancerPolicyTypes.</p>
|
|
@@ -1807,10 +1892,14 @@ export declare namespace RemoveTagsOutput {
|
|
|
1807
1892
|
/**
|
|
1808
1893
|
* <p>The load balancer does not have a listener configured at the specified port.</p>
|
|
1809
1894
|
*/
|
|
1810
|
-
export
|
|
1811
|
-
name: "ListenerNotFoundException";
|
|
1812
|
-
$fault: "client";
|
|
1895
|
+
export declare class ListenerNotFoundException extends __BaseException {
|
|
1896
|
+
readonly name: "ListenerNotFoundException";
|
|
1897
|
+
readonly $fault: "client";
|
|
1813
1898
|
Message?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* @internal
|
|
1901
|
+
*/
|
|
1902
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
1814
1903
|
}
|
|
1815
1904
|
/**
|
|
1816
1905
|
* <p>Contains the parameters for SetLoadBalancerListenerSSLCertificate.</p>
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
3
|
+
import { ApplySecurityGroupsToLoadBalancerCommandInput, ApplySecurityGroupsToLoadBalancerCommandOutput } from "./commands/ApplySecurityGroupsToLoadBalancerCommand";
|
|
4
|
+
import { AttachLoadBalancerToSubnetsCommandInput, AttachLoadBalancerToSubnetsCommandOutput } from "./commands/AttachLoadBalancerToSubnetsCommand";
|
|
5
|
+
import { ConfigureHealthCheckCommandInput, ConfigureHealthCheckCommandOutput } from "./commands/ConfigureHealthCheckCommand";
|
|
6
|
+
import { CreateAppCookieStickinessPolicyCommandInput, CreateAppCookieStickinessPolicyCommandOutput } from "./commands/CreateAppCookieStickinessPolicyCommand";
|
|
7
|
+
import { CreateLBCookieStickinessPolicyCommandInput, CreateLBCookieStickinessPolicyCommandOutput } from "./commands/CreateLBCookieStickinessPolicyCommand";
|
|
8
|
+
import { CreateLoadBalancerCommandInput, CreateLoadBalancerCommandOutput } from "./commands/CreateLoadBalancerCommand";
|
|
9
|
+
import { CreateLoadBalancerListenersCommandInput, CreateLoadBalancerListenersCommandOutput } from "./commands/CreateLoadBalancerListenersCommand";
|
|
10
|
+
import { CreateLoadBalancerPolicyCommandInput, CreateLoadBalancerPolicyCommandOutput } from "./commands/CreateLoadBalancerPolicyCommand";
|
|
11
|
+
import { DeleteLoadBalancerCommandInput, DeleteLoadBalancerCommandOutput } from "./commands/DeleteLoadBalancerCommand";
|
|
12
|
+
import { DeleteLoadBalancerListenersCommandInput, DeleteLoadBalancerListenersCommandOutput } from "./commands/DeleteLoadBalancerListenersCommand";
|
|
13
|
+
import { DeleteLoadBalancerPolicyCommandInput, DeleteLoadBalancerPolicyCommandOutput } from "./commands/DeleteLoadBalancerPolicyCommand";
|
|
14
|
+
import { DeregisterInstancesFromLoadBalancerCommandInput, DeregisterInstancesFromLoadBalancerCommandOutput } from "./commands/DeregisterInstancesFromLoadBalancerCommand";
|
|
15
|
+
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "./commands/DescribeAccountLimitsCommand";
|
|
16
|
+
import { DescribeInstanceHealthCommandInput, DescribeInstanceHealthCommandOutput } from "./commands/DescribeInstanceHealthCommand";
|
|
17
|
+
import { DescribeLoadBalancerAttributesCommandInput, DescribeLoadBalancerAttributesCommandOutput } from "./commands/DescribeLoadBalancerAttributesCommand";
|
|
18
|
+
import { DescribeLoadBalancerPoliciesCommandInput, DescribeLoadBalancerPoliciesCommandOutput } from "./commands/DescribeLoadBalancerPoliciesCommand";
|
|
19
|
+
import { DescribeLoadBalancerPolicyTypesCommandInput, DescribeLoadBalancerPolicyTypesCommandOutput } from "./commands/DescribeLoadBalancerPolicyTypesCommand";
|
|
20
|
+
import { DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput } from "./commands/DescribeLoadBalancersCommand";
|
|
21
|
+
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
|
|
22
|
+
import { DetachLoadBalancerFromSubnetsCommandInput, DetachLoadBalancerFromSubnetsCommandOutput } from "./commands/DetachLoadBalancerFromSubnetsCommand";
|
|
23
|
+
import { DisableAvailabilityZonesForLoadBalancerCommandInput, DisableAvailabilityZonesForLoadBalancerCommandOutput } from "./commands/DisableAvailabilityZonesForLoadBalancerCommand";
|
|
24
|
+
import { EnableAvailabilityZonesForLoadBalancerCommandInput, EnableAvailabilityZonesForLoadBalancerCommandOutput } from "./commands/EnableAvailabilityZonesForLoadBalancerCommand";
|
|
25
|
+
import { ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput } from "./commands/ModifyLoadBalancerAttributesCommand";
|
|
26
|
+
import { RegisterInstancesWithLoadBalancerCommandInput, RegisterInstancesWithLoadBalancerCommandOutput } from "./commands/RegisterInstancesWithLoadBalancerCommand";
|
|
27
|
+
import { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
28
|
+
import { SetLoadBalancerListenerSSLCertificateCommandInput, SetLoadBalancerListenerSSLCertificateCommandOutput } from "./commands/SetLoadBalancerListenerSSLCertificateCommand";
|
|
29
|
+
import { SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPoliciesForBackendServerCommandOutput } from "./commands/SetLoadBalancerPoliciesForBackendServerCommand";
|
|
30
|
+
import { SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput } from "./commands/SetLoadBalancerPoliciesOfListenerCommand";
|
|
31
|
+
import { ElasticLoadBalancingClient } from "./ElasticLoadBalancingClient";
|
|
32
|
+
|
|
33
|
+
export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
34
|
+
|
|
35
|
+
addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
|
|
36
|
+
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
37
|
+
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
38
|
+
|
|
39
|
+
applySecurityGroupsToLoadBalancer(args: ApplySecurityGroupsToLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<ApplySecurityGroupsToLoadBalancerCommandOutput>;
|
|
40
|
+
applySecurityGroupsToLoadBalancer(args: ApplySecurityGroupsToLoadBalancerCommandInput, cb: (err: any, data?: ApplySecurityGroupsToLoadBalancerCommandOutput) => void): void;
|
|
41
|
+
applySecurityGroupsToLoadBalancer(args: ApplySecurityGroupsToLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplySecurityGroupsToLoadBalancerCommandOutput) => void): void;
|
|
42
|
+
|
|
43
|
+
attachLoadBalancerToSubnets(args: AttachLoadBalancerToSubnetsCommandInput, options?: __HttpHandlerOptions): Promise<AttachLoadBalancerToSubnetsCommandOutput>;
|
|
44
|
+
attachLoadBalancerToSubnets(args: AttachLoadBalancerToSubnetsCommandInput, cb: (err: any, data?: AttachLoadBalancerToSubnetsCommandOutput) => void): void;
|
|
45
|
+
attachLoadBalancerToSubnets(args: AttachLoadBalancerToSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachLoadBalancerToSubnetsCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
configureHealthCheck(args: ConfigureHealthCheckCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureHealthCheckCommandOutput>;
|
|
48
|
+
configureHealthCheck(args: ConfigureHealthCheckCommandInput, cb: (err: any, data?: ConfigureHealthCheckCommandOutput) => void): void;
|
|
49
|
+
configureHealthCheck(args: ConfigureHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureHealthCheckCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
createAppCookieStickinessPolicy(args: CreateAppCookieStickinessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppCookieStickinessPolicyCommandOutput>;
|
|
52
|
+
createAppCookieStickinessPolicy(args: CreateAppCookieStickinessPolicyCommandInput, cb: (err: any, data?: CreateAppCookieStickinessPolicyCommandOutput) => void): void;
|
|
53
|
+
createAppCookieStickinessPolicy(args: CreateAppCookieStickinessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppCookieStickinessPolicyCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
createLBCookieStickinessPolicy(args: CreateLBCookieStickinessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateLBCookieStickinessPolicyCommandOutput>;
|
|
56
|
+
createLBCookieStickinessPolicy(args: CreateLBCookieStickinessPolicyCommandInput, cb: (err: any, data?: CreateLBCookieStickinessPolicyCommandOutput) => void): void;
|
|
57
|
+
createLBCookieStickinessPolicy(args: CreateLBCookieStickinessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLBCookieStickinessPolicyCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
createLoadBalancer(args: CreateLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoadBalancerCommandOutput>;
|
|
60
|
+
createLoadBalancer(args: CreateLoadBalancerCommandInput, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
61
|
+
createLoadBalancer(args: CreateLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
createLoadBalancerListeners(args: CreateLoadBalancerListenersCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoadBalancerListenersCommandOutput>;
|
|
64
|
+
createLoadBalancerListeners(args: CreateLoadBalancerListenersCommandInput, cb: (err: any, data?: CreateLoadBalancerListenersCommandOutput) => void): void;
|
|
65
|
+
createLoadBalancerListeners(args: CreateLoadBalancerListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerListenersCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
createLoadBalancerPolicy(args: CreateLoadBalancerPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoadBalancerPolicyCommandOutput>;
|
|
68
|
+
createLoadBalancerPolicy(args: CreateLoadBalancerPolicyCommandInput, cb: (err: any, data?: CreateLoadBalancerPolicyCommandOutput) => void): void;
|
|
69
|
+
createLoadBalancerPolicy(args: CreateLoadBalancerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerPolicyCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerCommandOutput>;
|
|
72
|
+
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
73
|
+
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
74
|
+
|
|
75
|
+
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerListenersCommandOutput>;
|
|
76
|
+
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, cb: (err: any, data?: DeleteLoadBalancerListenersCommandOutput) => void): void;
|
|
77
|
+
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerListenersCommandOutput) => void): void;
|
|
78
|
+
|
|
79
|
+
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerPolicyCommandOutput>;
|
|
80
|
+
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, cb: (err: any, data?: DeleteLoadBalancerPolicyCommandOutput) => void): void;
|
|
81
|
+
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerPolicyCommandOutput) => void): void;
|
|
82
|
+
|
|
83
|
+
deregisterInstancesFromLoadBalancer(args: DeregisterInstancesFromLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterInstancesFromLoadBalancerCommandOutput>;
|
|
84
|
+
deregisterInstancesFromLoadBalancer(args: DeregisterInstancesFromLoadBalancerCommandInput, cb: (err: any, data?: DeregisterInstancesFromLoadBalancerCommandOutput) => void): void;
|
|
85
|
+
deregisterInstancesFromLoadBalancer(args: DeregisterInstancesFromLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterInstancesFromLoadBalancerCommandOutput) => void): void;
|
|
86
|
+
|
|
87
|
+
describeAccountLimits(args: DescribeAccountLimitsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountLimitsCommandOutput>;
|
|
88
|
+
describeAccountLimits(args: DescribeAccountLimitsCommandInput, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
89
|
+
describeAccountLimits(args: DescribeAccountLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
90
|
+
|
|
91
|
+
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceHealthCommandOutput>;
|
|
92
|
+
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, cb: (err: any, data?: DescribeInstanceHealthCommandOutput) => void): void;
|
|
93
|
+
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceHealthCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancerAttributesCommandOutput>;
|
|
96
|
+
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
97
|
+
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
98
|
+
|
|
99
|
+
describeLoadBalancerPolicies(args: DescribeLoadBalancerPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancerPoliciesCommandOutput>;
|
|
100
|
+
describeLoadBalancerPolicies(args: DescribeLoadBalancerPoliciesCommandInput, cb: (err: any, data?: DescribeLoadBalancerPoliciesCommandOutput) => void): void;
|
|
101
|
+
describeLoadBalancerPolicies(args: DescribeLoadBalancerPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerPoliciesCommandOutput) => void): void;
|
|
102
|
+
|
|
103
|
+
describeLoadBalancerPolicyTypes(args: DescribeLoadBalancerPolicyTypesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancerPolicyTypesCommandOutput>;
|
|
104
|
+
describeLoadBalancerPolicyTypes(args: DescribeLoadBalancerPolicyTypesCommandInput, cb: (err: any, data?: DescribeLoadBalancerPolicyTypesCommandOutput) => void): void;
|
|
105
|
+
describeLoadBalancerPolicyTypes(args: DescribeLoadBalancerPolicyTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerPolicyTypesCommandOutput) => void): void;
|
|
106
|
+
|
|
107
|
+
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancersCommandOutput>;
|
|
108
|
+
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
109
|
+
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
110
|
+
|
|
111
|
+
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
112
|
+
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
113
|
+
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
114
|
+
|
|
115
|
+
detachLoadBalancerFromSubnets(args: DetachLoadBalancerFromSubnetsCommandInput, options?: __HttpHandlerOptions): Promise<DetachLoadBalancerFromSubnetsCommandOutput>;
|
|
116
|
+
detachLoadBalancerFromSubnets(args: DetachLoadBalancerFromSubnetsCommandInput, cb: (err: any, data?: DetachLoadBalancerFromSubnetsCommandOutput) => void): void;
|
|
117
|
+
detachLoadBalancerFromSubnets(args: DetachLoadBalancerFromSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachLoadBalancerFromSubnetsCommandOutput) => void): void;
|
|
118
|
+
|
|
119
|
+
disableAvailabilityZonesForLoadBalancer(args: DisableAvailabilityZonesForLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<DisableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
120
|
+
disableAvailabilityZonesForLoadBalancer(args: DisableAvailabilityZonesForLoadBalancerCommandInput, cb: (err: any, data?: DisableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
121
|
+
disableAvailabilityZonesForLoadBalancer(args: DisableAvailabilityZonesForLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
122
|
+
|
|
123
|
+
enableAvailabilityZonesForLoadBalancer(args: EnableAvailabilityZonesForLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<EnableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
124
|
+
enableAvailabilityZonesForLoadBalancer(args: EnableAvailabilityZonesForLoadBalancerCommandInput, cb: (err: any, data?: EnableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
125
|
+
enableAvailabilityZonesForLoadBalancer(args: EnableAvailabilityZonesForLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
126
|
+
|
|
127
|
+
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyLoadBalancerAttributesCommandOutput>;
|
|
128
|
+
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
129
|
+
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
130
|
+
|
|
131
|
+
registerInstancesWithLoadBalancer(args: RegisterInstancesWithLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<RegisterInstancesWithLoadBalancerCommandOutput>;
|
|
132
|
+
registerInstancesWithLoadBalancer(args: RegisterInstancesWithLoadBalancerCommandInput, cb: (err: any, data?: RegisterInstancesWithLoadBalancerCommandOutput) => void): void;
|
|
133
|
+
registerInstancesWithLoadBalancer(args: RegisterInstancesWithLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterInstancesWithLoadBalancerCommandOutput) => void): void;
|
|
134
|
+
|
|
135
|
+
removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
|
|
136
|
+
removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
137
|
+
removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
138
|
+
|
|
139
|
+
setLoadBalancerListenerSSLCertificate(args: SetLoadBalancerListenerSSLCertificateCommandInput, options?: __HttpHandlerOptions): Promise<SetLoadBalancerListenerSSLCertificateCommandOutput>;
|
|
140
|
+
setLoadBalancerListenerSSLCertificate(args: SetLoadBalancerListenerSSLCertificateCommandInput, cb: (err: any, data?: SetLoadBalancerListenerSSLCertificateCommandOutput) => void): void;
|
|
141
|
+
setLoadBalancerListenerSSLCertificate(args: SetLoadBalancerListenerSSLCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetLoadBalancerListenerSSLCertificateCommandOutput) => void): void;
|
|
142
|
+
|
|
143
|
+
setLoadBalancerPoliciesForBackendServer(args: SetLoadBalancerPoliciesForBackendServerCommandInput, options?: __HttpHandlerOptions): Promise<SetLoadBalancerPoliciesForBackendServerCommandOutput>;
|
|
144
|
+
setLoadBalancerPoliciesForBackendServer(args: SetLoadBalancerPoliciesForBackendServerCommandInput, cb: (err: any, data?: SetLoadBalancerPoliciesForBackendServerCommandOutput) => void): void;
|
|
145
|
+
setLoadBalancerPoliciesForBackendServer(args: SetLoadBalancerPoliciesForBackendServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetLoadBalancerPoliciesForBackendServerCommandOutput) => void): void;
|
|
146
|
+
|
|
147
|
+
setLoadBalancerPoliciesOfListener(args: SetLoadBalancerPoliciesOfListenerCommandInput, options?: __HttpHandlerOptions): Promise<SetLoadBalancerPoliciesOfListenerCommandOutput>;
|
|
148
|
+
setLoadBalancerPoliciesOfListener(args: SetLoadBalancerPoliciesOfListenerCommandInput, cb: (err: any, data?: SetLoadBalancerPoliciesOfListenerCommandOutput) => void): void;
|
|
149
|
+
setLoadBalancerPoliciesOfListener(args: SetLoadBalancerPoliciesOfListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetLoadBalancerPoliciesOfListenerCommandOutput) => void): void;
|
|
150
|
+
}
|