@aws-sdk/client-elastic-load-balancing-v2 3.696.0 → 3.698.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/README.md +16 -0
- package/dist-cjs/index.js +394 -0
- package/dist-es/ElasticLoadBalancingV2.js +4 -0
- package/dist-es/commands/DescribeCapacityReservationCommand.js +22 -0
- package/dist-es/commands/ModifyCapacityReservationCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +71 -0
- package/dist-es/protocols/Aws_query.js +258 -2
- package/dist-types/ElasticLoadBalancingV2.d.ts +14 -0
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +4 -2
- package/dist-types/commands/DescribeCapacityReservationCommand.d.ts +88 -0
- package/dist-types/commands/ModifyCapacityReservationCommand.d.ts +115 -0
- package/dist-types/commands/SetSubnetsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +327 -6
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2.d.ts +34 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeCapacityReservationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
|
|
|
16
16
|
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "../commands/DeleteTrustStoreCommand";
|
|
17
17
|
import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "../commands/DeregisterTargetsCommand";
|
|
18
18
|
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "../commands/DescribeAccountLimitsCommand";
|
|
19
|
+
import { DescribeCapacityReservationCommandInput, DescribeCapacityReservationCommandOutput } from "../commands/DescribeCapacityReservationCommand";
|
|
19
20
|
import { DescribeListenerAttributesCommandInput, DescribeListenerAttributesCommandOutput } from "../commands/DescribeListenerAttributesCommand";
|
|
20
21
|
import { DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput } from "../commands/DescribeListenerCertificatesCommand";
|
|
21
22
|
import { DescribeListenersCommandInput, DescribeListenersCommandOutput } from "../commands/DescribeListenersCommand";
|
|
@@ -33,6 +34,7 @@ import { DescribeTrustStoresCommandInput, DescribeTrustStoresCommandOutput } fro
|
|
|
33
34
|
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
|
|
34
35
|
import { GetTrustStoreCaCertificatesBundleCommandInput, GetTrustStoreCaCertificatesBundleCommandOutput } from "../commands/GetTrustStoreCaCertificatesBundleCommand";
|
|
35
36
|
import { GetTrustStoreRevocationContentCommandInput, GetTrustStoreRevocationContentCommandOutput } from "../commands/GetTrustStoreRevocationContentCommand";
|
|
37
|
+
import { ModifyCapacityReservationCommandInput, ModifyCapacityReservationCommandOutput } from "../commands/ModifyCapacityReservationCommand";
|
|
36
38
|
import { ModifyListenerAttributesCommandInput, ModifyListenerAttributesCommandOutput } from "../commands/ModifyListenerAttributesCommand";
|
|
37
39
|
import { ModifyListenerCommandInput, ModifyListenerCommandOutput } from "../commands/ModifyListenerCommand";
|
|
38
40
|
import { ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput } from "../commands/ModifyLoadBalancerAttributesCommand";
|
|
@@ -112,6 +114,10 @@ export declare const se_DeregisterTargetsCommand: (input: DeregisterTargetsComma
|
|
|
112
114
|
* serializeAws_queryDescribeAccountLimitsCommand
|
|
113
115
|
*/
|
|
114
116
|
export declare const se_DescribeAccountLimitsCommand: (input: DescribeAccountLimitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
/**
|
|
118
|
+
* serializeAws_queryDescribeCapacityReservationCommand
|
|
119
|
+
*/
|
|
120
|
+
export declare const se_DescribeCapacityReservationCommand: (input: DescribeCapacityReservationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
121
|
/**
|
|
116
122
|
* serializeAws_queryDescribeListenerAttributesCommand
|
|
117
123
|
*/
|
|
@@ -180,6 +186,10 @@ export declare const se_GetTrustStoreCaCertificatesBundleCommand: (input: GetTru
|
|
|
180
186
|
* serializeAws_queryGetTrustStoreRevocationContentCommand
|
|
181
187
|
*/
|
|
182
188
|
export declare const se_GetTrustStoreRevocationContentCommand: (input: GetTrustStoreRevocationContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
189
|
+
/**
|
|
190
|
+
* serializeAws_queryModifyCapacityReservationCommand
|
|
191
|
+
*/
|
|
192
|
+
export declare const se_ModifyCapacityReservationCommand: (input: ModifyCapacityReservationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
183
193
|
/**
|
|
184
194
|
* serializeAws_queryModifyListenerCommand
|
|
185
195
|
*/
|
|
@@ -304,6 +314,10 @@ export declare const de_DeregisterTargetsCommand: (output: __HttpResponse, conte
|
|
|
304
314
|
* deserializeAws_queryDescribeAccountLimitsCommand
|
|
305
315
|
*/
|
|
306
316
|
export declare const de_DescribeAccountLimitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountLimitsCommandOutput>;
|
|
317
|
+
/**
|
|
318
|
+
* deserializeAws_queryDescribeCapacityReservationCommand
|
|
319
|
+
*/
|
|
320
|
+
export declare const de_DescribeCapacityReservationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCapacityReservationCommandOutput>;
|
|
307
321
|
/**
|
|
308
322
|
* deserializeAws_queryDescribeListenerAttributesCommand
|
|
309
323
|
*/
|
|
@@ -372,6 +386,10 @@ export declare const de_GetTrustStoreCaCertificatesBundleCommand: (output: __Htt
|
|
|
372
386
|
* deserializeAws_queryGetTrustStoreRevocationContentCommand
|
|
373
387
|
*/
|
|
374
388
|
export declare const de_GetTrustStoreRevocationContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustStoreRevocationContentCommandOutput>;
|
|
389
|
+
/**
|
|
390
|
+
* deserializeAws_queryModifyCapacityReservationCommand
|
|
391
|
+
*/
|
|
392
|
+
export declare const de_ModifyCapacityReservationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCapacityReservationCommandOutput>;
|
|
375
393
|
/**
|
|
376
394
|
* deserializeAws_queryModifyListenerCommand
|
|
377
395
|
*/
|
|
@@ -63,6 +63,10 @@ import {
|
|
|
63
63
|
DescribeAccountLimitsCommandInput,
|
|
64
64
|
DescribeAccountLimitsCommandOutput,
|
|
65
65
|
} from "./commands/DescribeAccountLimitsCommand";
|
|
66
|
+
import {
|
|
67
|
+
DescribeCapacityReservationCommandInput,
|
|
68
|
+
DescribeCapacityReservationCommandOutput,
|
|
69
|
+
} from "./commands/DescribeCapacityReservationCommand";
|
|
66
70
|
import {
|
|
67
71
|
DescribeListenerAttributesCommandInput,
|
|
68
72
|
DescribeListenerAttributesCommandOutput,
|
|
@@ -131,6 +135,10 @@ import {
|
|
|
131
135
|
GetTrustStoreRevocationContentCommandInput,
|
|
132
136
|
GetTrustStoreRevocationContentCommandOutput,
|
|
133
137
|
} from "./commands/GetTrustStoreRevocationContentCommand";
|
|
138
|
+
import {
|
|
139
|
+
ModifyCapacityReservationCommandInput,
|
|
140
|
+
ModifyCapacityReservationCommandOutput,
|
|
141
|
+
} from "./commands/ModifyCapacityReservationCommand";
|
|
134
142
|
import {
|
|
135
143
|
ModifyListenerAttributesCommandInput,
|
|
136
144
|
ModifyListenerAttributesCommandOutput,
|
|
@@ -408,6 +416,19 @@ export interface ElasticLoadBalancingV2 {
|
|
|
408
416
|
options: __HttpHandlerOptions,
|
|
409
417
|
cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void
|
|
410
418
|
): void;
|
|
419
|
+
describeCapacityReservation(
|
|
420
|
+
args: DescribeCapacityReservationCommandInput,
|
|
421
|
+
options?: __HttpHandlerOptions
|
|
422
|
+
): Promise<DescribeCapacityReservationCommandOutput>;
|
|
423
|
+
describeCapacityReservation(
|
|
424
|
+
args: DescribeCapacityReservationCommandInput,
|
|
425
|
+
cb: (err: any, data?: DescribeCapacityReservationCommandOutput) => void
|
|
426
|
+
): void;
|
|
427
|
+
describeCapacityReservation(
|
|
428
|
+
args: DescribeCapacityReservationCommandInput,
|
|
429
|
+
options: __HttpHandlerOptions,
|
|
430
|
+
cb: (err: any, data?: DescribeCapacityReservationCommandOutput) => void
|
|
431
|
+
): void;
|
|
411
432
|
describeListenerAttributes(
|
|
412
433
|
args: DescribeListenerAttributesCommandInput,
|
|
413
434
|
options?: __HttpHandlerOptions
|
|
@@ -641,6 +662,19 @@ export interface ElasticLoadBalancingV2 {
|
|
|
641
662
|
options: __HttpHandlerOptions,
|
|
642
663
|
cb: (err: any, data?: GetTrustStoreRevocationContentCommandOutput) => void
|
|
643
664
|
): void;
|
|
665
|
+
modifyCapacityReservation(
|
|
666
|
+
args: ModifyCapacityReservationCommandInput,
|
|
667
|
+
options?: __HttpHandlerOptions
|
|
668
|
+
): Promise<ModifyCapacityReservationCommandOutput>;
|
|
669
|
+
modifyCapacityReservation(
|
|
670
|
+
args: ModifyCapacityReservationCommandInput,
|
|
671
|
+
cb: (err: any, data?: ModifyCapacityReservationCommandOutput) => void
|
|
672
|
+
): void;
|
|
673
|
+
modifyCapacityReservation(
|
|
674
|
+
args: ModifyCapacityReservationCommandInput,
|
|
675
|
+
options: __HttpHandlerOptions,
|
|
676
|
+
cb: (err: any, data?: ModifyCapacityReservationCommandOutput) => void
|
|
677
|
+
): void;
|
|
644
678
|
modifyListener(
|
|
645
679
|
args: ModifyListenerCommandInput,
|
|
646
680
|
options?: __HttpHandlerOptions
|
|
@@ -109,6 +109,10 @@ import {
|
|
|
109
109
|
DescribeAccountLimitsCommandInput,
|
|
110
110
|
DescribeAccountLimitsCommandOutput,
|
|
111
111
|
} from "./commands/DescribeAccountLimitsCommand";
|
|
112
|
+
import {
|
|
113
|
+
DescribeCapacityReservationCommandInput,
|
|
114
|
+
DescribeCapacityReservationCommandOutput,
|
|
115
|
+
} from "./commands/DescribeCapacityReservationCommand";
|
|
112
116
|
import {
|
|
113
117
|
DescribeListenerAttributesCommandInput,
|
|
114
118
|
DescribeListenerAttributesCommandOutput,
|
|
@@ -177,6 +181,10 @@ import {
|
|
|
177
181
|
GetTrustStoreRevocationContentCommandInput,
|
|
178
182
|
GetTrustStoreRevocationContentCommandOutput,
|
|
179
183
|
} from "./commands/GetTrustStoreRevocationContentCommand";
|
|
184
|
+
import {
|
|
185
|
+
ModifyCapacityReservationCommandInput,
|
|
186
|
+
ModifyCapacityReservationCommandOutput,
|
|
187
|
+
} from "./commands/ModifyCapacityReservationCommand";
|
|
180
188
|
import {
|
|
181
189
|
ModifyListenerAttributesCommandInput,
|
|
182
190
|
ModifyListenerAttributesCommandOutput,
|
|
@@ -261,6 +269,7 @@ export type ServiceInputTypes =
|
|
|
261
269
|
| DeleteTrustStoreCommandInput
|
|
262
270
|
| DeregisterTargetsCommandInput
|
|
263
271
|
| DescribeAccountLimitsCommandInput
|
|
272
|
+
| DescribeCapacityReservationCommandInput
|
|
264
273
|
| DescribeListenerAttributesCommandInput
|
|
265
274
|
| DescribeListenerCertificatesCommandInput
|
|
266
275
|
| DescribeListenersCommandInput
|
|
@@ -278,6 +287,7 @@ export type ServiceInputTypes =
|
|
|
278
287
|
| GetResourcePolicyCommandInput
|
|
279
288
|
| GetTrustStoreCaCertificatesBundleCommandInput
|
|
280
289
|
| GetTrustStoreRevocationContentCommandInput
|
|
290
|
+
| ModifyCapacityReservationCommandInput
|
|
281
291
|
| ModifyListenerAttributesCommandInput
|
|
282
292
|
| ModifyListenerCommandInput
|
|
283
293
|
| ModifyLoadBalancerAttributesCommandInput
|
|
@@ -310,6 +320,7 @@ export type ServiceOutputTypes =
|
|
|
310
320
|
| DeleteTrustStoreCommandOutput
|
|
311
321
|
| DeregisterTargetsCommandOutput
|
|
312
322
|
| DescribeAccountLimitsCommandOutput
|
|
323
|
+
| DescribeCapacityReservationCommandOutput
|
|
313
324
|
| DescribeListenerAttributesCommandOutput
|
|
314
325
|
| DescribeListenerCertificatesCommandOutput
|
|
315
326
|
| DescribeListenersCommandOutput
|
|
@@ -327,6 +338,7 @@ export type ServiceOutputTypes =
|
|
|
327
338
|
| GetResourcePolicyCommandOutput
|
|
328
339
|
| GetTrustStoreCaCertificatesBundleCommandOutput
|
|
329
340
|
| GetTrustStoreRevocationContentCommandOutput
|
|
341
|
+
| ModifyCapacityReservationCommandOutput
|
|
330
342
|
| ModifyListenerAttributesCommandOutput
|
|
331
343
|
| ModifyListenerCommandOutput
|
|
332
344
|
| ModifyLoadBalancerAttributesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ElasticLoadBalancingV2Client";
|
|
8
|
+
import {
|
|
9
|
+
DescribeCapacityReservationInput,
|
|
10
|
+
DescribeCapacityReservationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeCapacityReservationCommandInput
|
|
15
|
+
extends DescribeCapacityReservationInput {}
|
|
16
|
+
export interface DescribeCapacityReservationCommandOutput
|
|
17
|
+
extends DescribeCapacityReservationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeCapacityReservationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeCapacityReservationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeCapacityReservationCommandInput,
|
|
24
|
+
DescribeCapacityReservationCommandOutput,
|
|
25
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeCapacityReservationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeCapacityReservationCommandInput,
|
|
33
|
+
DescribeCapacityReservationCommandOutput,
|
|
34
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeCapacityReservationCommand extends DescribeCapacityReservationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeCapacityReservationInput;
|
|
44
|
+
output: DescribeCapacityReservationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeCapacityReservationCommandInput;
|
|
48
|
+
output: DescribeCapacityReservationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ElasticLoadBalancingV2Client";
|
|
8
|
+
import {
|
|
9
|
+
ModifyCapacityReservationInput,
|
|
10
|
+
ModifyCapacityReservationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ModifyCapacityReservationCommandInput
|
|
15
|
+
extends ModifyCapacityReservationInput {}
|
|
16
|
+
export interface ModifyCapacityReservationCommandOutput
|
|
17
|
+
extends ModifyCapacityReservationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ModifyCapacityReservationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyCapacityReservationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ModifyCapacityReservationCommandInput,
|
|
24
|
+
ModifyCapacityReservationCommandOutput,
|
|
25
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ModifyCapacityReservationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ModifyCapacityReservationCommandInput,
|
|
33
|
+
ModifyCapacityReservationCommandOutput,
|
|
34
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ModifyCapacityReservationCommand extends ModifyCapacityReservationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ModifyCapacityReservationInput;
|
|
44
|
+
output: ModifyCapacityReservationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ModifyCapacityReservationCommandInput;
|
|
48
|
+
output: ModifyCapacityReservationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -14,6 +14,7 @@ export * from "./DeleteTargetGroupCommand";
|
|
|
14
14
|
export * from "./DeleteTrustStoreCommand";
|
|
15
15
|
export * from "./DeregisterTargetsCommand";
|
|
16
16
|
export * from "./DescribeAccountLimitsCommand";
|
|
17
|
+
export * from "./DescribeCapacityReservationCommand";
|
|
17
18
|
export * from "./DescribeListenerAttributesCommand";
|
|
18
19
|
export * from "./DescribeListenerCertificatesCommand";
|
|
19
20
|
export * from "./DescribeListenersCommand";
|
|
@@ -31,6 +32,7 @@ export * from "./DescribeTrustStoresCommand";
|
|
|
31
32
|
export * from "./GetResourcePolicyCommand";
|
|
32
33
|
export * from "./GetTrustStoreCaCertificatesBundleCommand";
|
|
33
34
|
export * from "./GetTrustStoreRevocationContentCommand";
|
|
35
|
+
export * from "./ModifyCapacityReservationCommand";
|
|
34
36
|
export * from "./ModifyListenerAttributesCommand";
|
|
35
37
|
export * from "./ModifyListenerCommand";
|
|
36
38
|
export * from "./ModifyLoadBalancerAttributesCommand";
|
|
@@ -332,6 +332,51 @@ export declare class CaCertificatesBundleNotFoundException extends __BaseExcepti
|
|
|
332
332
|
>
|
|
333
333
|
);
|
|
334
334
|
}
|
|
335
|
+
export declare class CapacityDecreaseRequestsLimitExceededException extends __BaseException {
|
|
336
|
+
readonly name: "CapacityDecreaseRequestsLimitExceededException";
|
|
337
|
+
readonly $fault: "client";
|
|
338
|
+
Message?: string | undefined;
|
|
339
|
+
constructor(
|
|
340
|
+
opts: __ExceptionOptionType<
|
|
341
|
+
CapacityDecreaseRequestsLimitExceededException,
|
|
342
|
+
__BaseException
|
|
343
|
+
>
|
|
344
|
+
);
|
|
345
|
+
}
|
|
346
|
+
export declare class CapacityReservationPendingException extends __BaseException {
|
|
347
|
+
readonly name: "CapacityReservationPendingException";
|
|
348
|
+
readonly $fault: "client";
|
|
349
|
+
Message?: string | undefined;
|
|
350
|
+
constructor(
|
|
351
|
+
opts: __ExceptionOptionType<
|
|
352
|
+
CapacityReservationPendingException,
|
|
353
|
+
__BaseException
|
|
354
|
+
>
|
|
355
|
+
);
|
|
356
|
+
}
|
|
357
|
+
export declare const CapacityReservationStateEnum: {
|
|
358
|
+
readonly FAILED: "failed";
|
|
359
|
+
readonly PENDING: "pending";
|
|
360
|
+
readonly PROVISIONED: "provisioned";
|
|
361
|
+
readonly REBALANCING: "rebalancing";
|
|
362
|
+
};
|
|
363
|
+
export type CapacityReservationStateEnum =
|
|
364
|
+
(typeof CapacityReservationStateEnum)[keyof typeof CapacityReservationStateEnum];
|
|
365
|
+
export interface CapacityReservationStatus {
|
|
366
|
+
Code?: CapacityReservationStateEnum | undefined;
|
|
367
|
+
Reason?: string | undefined;
|
|
368
|
+
}
|
|
369
|
+
export declare class CapacityUnitsLimitExceededException extends __BaseException {
|
|
370
|
+
readonly name: "CapacityUnitsLimitExceededException";
|
|
371
|
+
readonly $fault: "client";
|
|
372
|
+
Message?: string | undefined;
|
|
373
|
+
constructor(
|
|
374
|
+
opts: __ExceptionOptionType<
|
|
375
|
+
CapacityUnitsLimitExceededException,
|
|
376
|
+
__BaseException
|
|
377
|
+
>
|
|
378
|
+
);
|
|
379
|
+
}
|
|
335
380
|
export interface Cipher {
|
|
336
381
|
Name?: string | undefined;
|
|
337
382
|
Priority?: number | undefined;
|
|
@@ -928,6 +973,23 @@ export interface DescribeAccountLimitsOutput {
|
|
|
928
973
|
Limits?: Limit[] | undefined;
|
|
929
974
|
NextMarker?: string | undefined;
|
|
930
975
|
}
|
|
976
|
+
export interface DescribeCapacityReservationInput {
|
|
977
|
+
LoadBalancerArn: string | undefined;
|
|
978
|
+
}
|
|
979
|
+
export interface ZonalCapacityReservationState {
|
|
980
|
+
State?: CapacityReservationStatus | undefined;
|
|
981
|
+
AvailabilityZone?: string | undefined;
|
|
982
|
+
EffectiveCapacityUnits?: number | undefined;
|
|
983
|
+
}
|
|
984
|
+
export interface MinimumLoadBalancerCapacity {
|
|
985
|
+
CapacityUnits?: number | undefined;
|
|
986
|
+
}
|
|
987
|
+
export interface DescribeCapacityReservationOutput {
|
|
988
|
+
LastModifiedTime?: Date | undefined;
|
|
989
|
+
DecreaseRequestsRemaining?: number | undefined;
|
|
990
|
+
MinimumLoadBalancerCapacity?: MinimumLoadBalancerCapacity | undefined;
|
|
991
|
+
CapacityReservationState?: ZonalCapacityReservationState[] | undefined;
|
|
992
|
+
}
|
|
931
993
|
export interface DescribeListenerAttributesInput {
|
|
932
994
|
ListenerArn: string | undefined;
|
|
933
995
|
}
|
|
@@ -1168,6 +1230,36 @@ export interface GetTrustStoreRevocationContentInput {
|
|
|
1168
1230
|
export interface GetTrustStoreRevocationContentOutput {
|
|
1169
1231
|
Location?: string | undefined;
|
|
1170
1232
|
}
|
|
1233
|
+
export declare class InsufficientCapacityException extends __BaseException {
|
|
1234
|
+
readonly name: "InsufficientCapacityException";
|
|
1235
|
+
readonly $fault: "server";
|
|
1236
|
+
Message?: string | undefined;
|
|
1237
|
+
constructor(
|
|
1238
|
+
opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
|
|
1239
|
+
);
|
|
1240
|
+
}
|
|
1241
|
+
export interface ModifyCapacityReservationInput {
|
|
1242
|
+
LoadBalancerArn: string | undefined;
|
|
1243
|
+
MinimumLoadBalancerCapacity?: MinimumLoadBalancerCapacity | undefined;
|
|
1244
|
+
ResetCapacityReservation?: boolean | undefined;
|
|
1245
|
+
}
|
|
1246
|
+
export interface ModifyCapacityReservationOutput {
|
|
1247
|
+
LastModifiedTime?: Date | undefined;
|
|
1248
|
+
DecreaseRequestsRemaining?: number | undefined;
|
|
1249
|
+
MinimumLoadBalancerCapacity?: MinimumLoadBalancerCapacity | undefined;
|
|
1250
|
+
CapacityReservationState?: ZonalCapacityReservationState[] | undefined;
|
|
1251
|
+
}
|
|
1252
|
+
export declare class PriorRequestNotCompleteException extends __BaseException {
|
|
1253
|
+
readonly name: "PriorRequestNotCompleteException";
|
|
1254
|
+
readonly $fault: "client";
|
|
1255
|
+
Message?: string | undefined;
|
|
1256
|
+
constructor(
|
|
1257
|
+
opts: __ExceptionOptionType<
|
|
1258
|
+
PriorRequestNotCompleteException,
|
|
1259
|
+
__BaseException
|
|
1260
|
+
>
|
|
1261
|
+
);
|
|
1262
|
+
}
|
|
1171
1263
|
export interface ModifyListenerInput {
|
|
1172
1264
|
ListenerArn: string | undefined;
|
|
1173
1265
|
Port?: number | undefined;
|
|
@@ -67,6 +67,10 @@ import {
|
|
|
67
67
|
DescribeAccountLimitsCommandInput,
|
|
68
68
|
DescribeAccountLimitsCommandOutput,
|
|
69
69
|
} from "../commands/DescribeAccountLimitsCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeCapacityReservationCommandInput,
|
|
72
|
+
DescribeCapacityReservationCommandOutput,
|
|
73
|
+
} from "../commands/DescribeCapacityReservationCommand";
|
|
70
74
|
import {
|
|
71
75
|
DescribeListenerAttributesCommandInput,
|
|
72
76
|
DescribeListenerAttributesCommandOutput,
|
|
@@ -135,6 +139,10 @@ import {
|
|
|
135
139
|
GetTrustStoreRevocationContentCommandInput,
|
|
136
140
|
GetTrustStoreRevocationContentCommandOutput,
|
|
137
141
|
} from "../commands/GetTrustStoreRevocationContentCommand";
|
|
142
|
+
import {
|
|
143
|
+
ModifyCapacityReservationCommandInput,
|
|
144
|
+
ModifyCapacityReservationCommandOutput,
|
|
145
|
+
} from "../commands/ModifyCapacityReservationCommand";
|
|
138
146
|
import {
|
|
139
147
|
ModifyListenerAttributesCommandInput,
|
|
140
148
|
ModifyListenerAttributesCommandOutput,
|
|
@@ -259,6 +267,10 @@ export declare const se_DescribeAccountLimitsCommand: (
|
|
|
259
267
|
input: DescribeAccountLimitsCommandInput,
|
|
260
268
|
context: __SerdeContext
|
|
261
269
|
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const se_DescribeCapacityReservationCommand: (
|
|
271
|
+
input: DescribeCapacityReservationCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
262
274
|
export declare const se_DescribeListenerAttributesCommand: (
|
|
263
275
|
input: DescribeListenerAttributesCommandInput,
|
|
264
276
|
context: __SerdeContext
|
|
@@ -327,6 +339,10 @@ export declare const se_GetTrustStoreRevocationContentCommand: (
|
|
|
327
339
|
input: GetTrustStoreRevocationContentCommandInput,
|
|
328
340
|
context: __SerdeContext
|
|
329
341
|
) => Promise<__HttpRequest>;
|
|
342
|
+
export declare const se_ModifyCapacityReservationCommand: (
|
|
343
|
+
input: ModifyCapacityReservationCommandInput,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<__HttpRequest>;
|
|
330
346
|
export declare const se_ModifyListenerCommand: (
|
|
331
347
|
input: ModifyListenerCommandInput,
|
|
332
348
|
context: __SerdeContext
|
|
@@ -451,6 +467,10 @@ export declare const de_DescribeAccountLimitsCommand: (
|
|
|
451
467
|
output: __HttpResponse,
|
|
452
468
|
context: __SerdeContext
|
|
453
469
|
) => Promise<DescribeAccountLimitsCommandOutput>;
|
|
470
|
+
export declare const de_DescribeCapacityReservationCommand: (
|
|
471
|
+
output: __HttpResponse,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<DescribeCapacityReservationCommandOutput>;
|
|
454
474
|
export declare const de_DescribeListenerAttributesCommand: (
|
|
455
475
|
output: __HttpResponse,
|
|
456
476
|
context: __SerdeContext
|
|
@@ -519,6 +539,10 @@ export declare const de_GetTrustStoreRevocationContentCommand: (
|
|
|
519
539
|
output: __HttpResponse,
|
|
520
540
|
context: __SerdeContext
|
|
521
541
|
) => Promise<GetTrustStoreRevocationContentCommandOutput>;
|
|
542
|
+
export declare const de_ModifyCapacityReservationCommand: (
|
|
543
|
+
output: __HttpResponse,
|
|
544
|
+
context: __SerdeContext
|
|
545
|
+
) => Promise<ModifyCapacityReservationCommandOutput>;
|
|
522
546
|
export declare const de_ModifyListenerCommand: (
|
|
523
547
|
output: __HttpResponse,
|
|
524
548
|
context: __SerdeContext
|
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.698.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing-v2",
|