@aws-sdk/client-elastic-load-balancing-v2 3.616.0 → 3.620.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 +245 -0
- package/dist-es/ElasticLoadBalancingV2.js +4 -0
- package/dist-es/commands/DeleteSharedTrustStoreAssociationCommand.js +24 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +43 -0
- package/dist-es/protocols/Aws_query.js +142 -1
- package/dist-types/ElasticLoadBalancingV2.d.ts +14 -0
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +4 -2
- package/dist-types/commands/CreateListenerCommand.d.ts +2 -0
- package/dist-types/commands/DeleteSharedTrustStoreAssociationCommand.d.ts +68 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTrustStoreRevocationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrustStoresCommand.d.ts +1 -2
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +63 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +2 -0
- package/dist-types/commands/ModifyTrustStoreCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +101 -1
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2.d.ts +40 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteSharedTrustStoreAssociationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +18 -18
|
@@ -9,6 +9,7 @@ export * from "./CreateTrustStoreCommand";
|
|
|
9
9
|
export * from "./DeleteListenerCommand";
|
|
10
10
|
export * from "./DeleteLoadBalancerCommand";
|
|
11
11
|
export * from "./DeleteRuleCommand";
|
|
12
|
+
export * from "./DeleteSharedTrustStoreAssociationCommand";
|
|
12
13
|
export * from "./DeleteTargetGroupCommand";
|
|
13
14
|
export * from "./DeleteTrustStoreCommand";
|
|
14
15
|
export * from "./DeregisterTargetsCommand";
|
|
@@ -26,6 +27,7 @@ export * from "./DescribeTargetHealthCommand";
|
|
|
26
27
|
export * from "./DescribeTrustStoreAssociationsCommand";
|
|
27
28
|
export * from "./DescribeTrustStoreRevocationsCommand";
|
|
28
29
|
export * from "./DescribeTrustStoresCommand";
|
|
30
|
+
export * from "./GetResourcePolicyCommand";
|
|
29
31
|
export * from "./GetTrustStoreCaCertificatesBundleCommand";
|
|
30
32
|
export * from "./GetTrustStoreRevocationContentCommand";
|
|
31
33
|
export * from "./ModifyListenerCommand";
|
|
@@ -899,6 +899,18 @@ export interface Cipher {
|
|
|
899
899
|
*/
|
|
900
900
|
Priority?: number;
|
|
901
901
|
}
|
|
902
|
+
/**
|
|
903
|
+
* @public
|
|
904
|
+
* @enum
|
|
905
|
+
*/
|
|
906
|
+
export declare const TrustStoreAssociationStatusEnum: {
|
|
907
|
+
readonly ACTIVE: "active";
|
|
908
|
+
readonly REMOVED: "removed";
|
|
909
|
+
};
|
|
910
|
+
/**
|
|
911
|
+
* @public
|
|
912
|
+
*/
|
|
913
|
+
export type TrustStoreAssociationStatusEnum = (typeof TrustStoreAssociationStatusEnum)[keyof typeof TrustStoreAssociationStatusEnum];
|
|
902
914
|
/**
|
|
903
915
|
* <p>Information about the mutual authentication attributes of a listener.</p>
|
|
904
916
|
* @public
|
|
@@ -921,6 +933,11 @@ export interface MutualAuthenticationAttributes {
|
|
|
921
933
|
* @public
|
|
922
934
|
*/
|
|
923
935
|
IgnoreClientCertificateExpiry?: boolean;
|
|
936
|
+
/**
|
|
937
|
+
* <p>Indicates a shared trust stores association status.</p>
|
|
938
|
+
* @public
|
|
939
|
+
*/
|
|
940
|
+
TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum;
|
|
924
941
|
}
|
|
925
942
|
/**
|
|
926
943
|
* @public
|
|
@@ -2516,6 +2533,19 @@ export declare class TooManyTrustStoresException extends __BaseException {
|
|
|
2516
2533
|
*/
|
|
2517
2534
|
constructor(opts: __ExceptionOptionType<TooManyTrustStoresException, __BaseException>);
|
|
2518
2535
|
}
|
|
2536
|
+
/**
|
|
2537
|
+
* <p>The specified association cannot be within the same account.</p>
|
|
2538
|
+
* @public
|
|
2539
|
+
*/
|
|
2540
|
+
export declare class DeleteAssociationSameAccountException extends __BaseException {
|
|
2541
|
+
readonly name: "DeleteAssociationSameAccountException";
|
|
2542
|
+
readonly $fault: "client";
|
|
2543
|
+
Message?: string;
|
|
2544
|
+
/**
|
|
2545
|
+
* @internal
|
|
2546
|
+
*/
|
|
2547
|
+
constructor(opts: __ExceptionOptionType<DeleteAssociationSameAccountException, __BaseException>);
|
|
2548
|
+
}
|
|
2519
2549
|
/**
|
|
2520
2550
|
* @public
|
|
2521
2551
|
*/
|
|
@@ -2561,6 +2591,39 @@ export interface DeleteRuleInput {
|
|
|
2561
2591
|
*/
|
|
2562
2592
|
export interface DeleteRuleOutput {
|
|
2563
2593
|
}
|
|
2594
|
+
/**
|
|
2595
|
+
* @public
|
|
2596
|
+
*/
|
|
2597
|
+
export interface DeleteSharedTrustStoreAssociationInput {
|
|
2598
|
+
/**
|
|
2599
|
+
* <p>The Amazon Resource Name (ARN) of the trust store.</p>
|
|
2600
|
+
* @public
|
|
2601
|
+
*/
|
|
2602
|
+
TrustStoreArn: string | undefined;
|
|
2603
|
+
/**
|
|
2604
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
2605
|
+
* @public
|
|
2606
|
+
*/
|
|
2607
|
+
ResourceArn: string | undefined;
|
|
2608
|
+
}
|
|
2609
|
+
/**
|
|
2610
|
+
* @public
|
|
2611
|
+
*/
|
|
2612
|
+
export interface DeleteSharedTrustStoreAssociationOutput {
|
|
2613
|
+
}
|
|
2614
|
+
/**
|
|
2615
|
+
* <p>The specified association does not exist.</p>
|
|
2616
|
+
* @public
|
|
2617
|
+
*/
|
|
2618
|
+
export declare class TrustStoreAssociationNotFoundException extends __BaseException {
|
|
2619
|
+
readonly name: "TrustStoreAssociationNotFoundException";
|
|
2620
|
+
readonly $fault: "client";
|
|
2621
|
+
Message?: string;
|
|
2622
|
+
/**
|
|
2623
|
+
* @internal
|
|
2624
|
+
*/
|
|
2625
|
+
constructor(opts: __ExceptionOptionType<TrustStoreAssociationNotFoundException, __BaseException>);
|
|
2626
|
+
}
|
|
2564
2627
|
/**
|
|
2565
2628
|
* @public
|
|
2566
2629
|
*/
|
|
@@ -3584,7 +3647,7 @@ export interface DescribeTargetHealthInput {
|
|
|
3584
3647
|
*/
|
|
3585
3648
|
Targets?: TargetDescription[];
|
|
3586
3649
|
/**
|
|
3587
|
-
* <p>Used to
|
|
3650
|
+
* <p>Used to include anomaly detection information.</p>
|
|
3588
3651
|
* @public
|
|
3589
3652
|
*/
|
|
3590
3653
|
Include?: DescribeTargetHealthInputIncludeEnum[];
|
|
@@ -3957,6 +4020,39 @@ export interface DescribeTrustStoresOutput {
|
|
|
3957
4020
|
*/
|
|
3958
4021
|
NextMarker?: string;
|
|
3959
4022
|
}
|
|
4023
|
+
/**
|
|
4024
|
+
* @public
|
|
4025
|
+
*/
|
|
4026
|
+
export interface GetResourcePolicyInput {
|
|
4027
|
+
/**
|
|
4028
|
+
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
4029
|
+
* @public
|
|
4030
|
+
*/
|
|
4031
|
+
ResourceArn: string | undefined;
|
|
4032
|
+
}
|
|
4033
|
+
/**
|
|
4034
|
+
* @public
|
|
4035
|
+
*/
|
|
4036
|
+
export interface GetResourcePolicyOutput {
|
|
4037
|
+
/**
|
|
4038
|
+
* <p>The content of the resource policy.</p>
|
|
4039
|
+
* @public
|
|
4040
|
+
*/
|
|
4041
|
+
Policy?: string;
|
|
4042
|
+
}
|
|
4043
|
+
/**
|
|
4044
|
+
* <p>The specified resource does not exist.</p>
|
|
4045
|
+
* @public
|
|
4046
|
+
*/
|
|
4047
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
4048
|
+
readonly name: "ResourceNotFoundException";
|
|
4049
|
+
readonly $fault: "client";
|
|
4050
|
+
Message?: string;
|
|
4051
|
+
/**
|
|
4052
|
+
* @internal
|
|
4053
|
+
*/
|
|
4054
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
4055
|
+
}
|
|
3960
4056
|
/**
|
|
3961
4057
|
* @public
|
|
3962
4058
|
*/
|
|
@@ -4387,6 +4483,10 @@ export interface SetIpAddressTypeInput {
|
|
|
4387
4483
|
* <code>ipv4</code> (for only IPv4 addresses), <code>dualstack</code> (for IPv4 and
|
|
4388
4484
|
* IPv6 addresses), and <code>dualstack-without-public-ipv4</code> (for IPv6 only public
|
|
4389
4485
|
* addresses, with private IPv4 and IPv6 addresses).</p>
|
|
4486
|
+
* <p>Note: Application Load Balancer authentication only supports IPv4 addresses when
|
|
4487
|
+
* connecting to an Identity Provider (IdP) or Amazon Cognito endpoint. Without a public
|
|
4488
|
+
* IPv4 address the load balancer cannot complete the authentication process, resulting
|
|
4489
|
+
* in HTTP 500 errors.</p>
|
|
4390
4490
|
* <p>[Network Load Balancers] The IP address type. The possible values are
|
|
4391
4491
|
* <code>ipv4</code> (for only IPv4 addresses) and <code>dualstack</code>
|
|
4392
4492
|
* (for IPv4 and IPv6 addresses). You can’t specify <code>dualstack</code>
|
|
@@ -11,6 +11,7 @@ import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "../
|
|
|
11
11
|
import { DeleteListenerCommandInput, DeleteListenerCommandOutput } from "../commands/DeleteListenerCommand";
|
|
12
12
|
import { DeleteLoadBalancerCommandInput, DeleteLoadBalancerCommandOutput } from "../commands/DeleteLoadBalancerCommand";
|
|
13
13
|
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "../commands/DeleteRuleCommand";
|
|
14
|
+
import { DeleteSharedTrustStoreAssociationCommandInput, DeleteSharedTrustStoreAssociationCommandOutput } from "../commands/DeleteSharedTrustStoreAssociationCommand";
|
|
14
15
|
import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from "../commands/DeleteTargetGroupCommand";
|
|
15
16
|
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "../commands/DeleteTrustStoreCommand";
|
|
16
17
|
import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "../commands/DeregisterTargetsCommand";
|
|
@@ -28,6 +29,7 @@ import { DescribeTargetHealthCommandInput, DescribeTargetHealthCommandOutput } f
|
|
|
28
29
|
import { DescribeTrustStoreAssociationsCommandInput, DescribeTrustStoreAssociationsCommandOutput } from "../commands/DescribeTrustStoreAssociationsCommand";
|
|
29
30
|
import { DescribeTrustStoreRevocationsCommandInput, DescribeTrustStoreRevocationsCommandOutput } from "../commands/DescribeTrustStoreRevocationsCommand";
|
|
30
31
|
import { DescribeTrustStoresCommandInput, DescribeTrustStoresCommandOutput } from "../commands/DescribeTrustStoresCommand";
|
|
32
|
+
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
|
|
31
33
|
import { GetTrustStoreCaCertificatesBundleCommandInput, GetTrustStoreCaCertificatesBundleCommandOutput } from "../commands/GetTrustStoreCaCertificatesBundleCommand";
|
|
32
34
|
import { GetTrustStoreRevocationContentCommandInput, GetTrustStoreRevocationContentCommandOutput } from "../commands/GetTrustStoreRevocationContentCommand";
|
|
33
35
|
import { ModifyListenerCommandInput, ModifyListenerCommandOutput } from "../commands/ModifyListenerCommand";
|
|
@@ -88,6 +90,10 @@ export declare const se_DeleteLoadBalancerCommand: (input: DeleteLoadBalancerCom
|
|
|
88
90
|
* serializeAws_queryDeleteRuleCommand
|
|
89
91
|
*/
|
|
90
92
|
export declare const se_DeleteRuleCommand: (input: DeleteRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
/**
|
|
94
|
+
* serializeAws_queryDeleteSharedTrustStoreAssociationCommand
|
|
95
|
+
*/
|
|
96
|
+
export declare const se_DeleteSharedTrustStoreAssociationCommand: (input: DeleteSharedTrustStoreAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
97
|
/**
|
|
92
98
|
* serializeAws_queryDeleteTargetGroupCommand
|
|
93
99
|
*/
|
|
@@ -156,6 +162,10 @@ export declare const se_DescribeTrustStoreRevocationsCommand: (input: DescribeTr
|
|
|
156
162
|
* serializeAws_queryDescribeTrustStoresCommand
|
|
157
163
|
*/
|
|
158
164
|
export declare const se_DescribeTrustStoresCommand: (input: DescribeTrustStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
|
+
/**
|
|
166
|
+
* serializeAws_queryGetResourcePolicyCommand
|
|
167
|
+
*/
|
|
168
|
+
export declare const se_GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
169
|
/**
|
|
160
170
|
* serializeAws_queryGetTrustStoreCaCertificatesBundleCommand
|
|
161
171
|
*/
|
|
@@ -264,6 +274,10 @@ export declare const de_DeleteLoadBalancerCommand: (output: __HttpResponse, cont
|
|
|
264
274
|
* deserializeAws_queryDeleteRuleCommand
|
|
265
275
|
*/
|
|
266
276
|
export declare const de_DeleteRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleCommandOutput>;
|
|
277
|
+
/**
|
|
278
|
+
* deserializeAws_queryDeleteSharedTrustStoreAssociationCommand
|
|
279
|
+
*/
|
|
280
|
+
export declare const de_DeleteSharedTrustStoreAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSharedTrustStoreAssociationCommandOutput>;
|
|
267
281
|
/**
|
|
268
282
|
* deserializeAws_queryDeleteTargetGroupCommand
|
|
269
283
|
*/
|
|
@@ -332,6 +346,10 @@ export declare const de_DescribeTrustStoreRevocationsCommand: (output: __HttpRes
|
|
|
332
346
|
* deserializeAws_queryDescribeTrustStoresCommand
|
|
333
347
|
*/
|
|
334
348
|
export declare const de_DescribeTrustStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustStoresCommandOutput>;
|
|
349
|
+
/**
|
|
350
|
+
* deserializeAws_queryGetResourcePolicyCommand
|
|
351
|
+
*/
|
|
352
|
+
export declare const de_GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
|
|
335
353
|
/**
|
|
336
354
|
* deserializeAws_queryGetTrustStoreCaCertificatesBundleCommand
|
|
337
355
|
*/
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
DeleteRuleCommandInput,
|
|
44
44
|
DeleteRuleCommandOutput,
|
|
45
45
|
} from "./commands/DeleteRuleCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteSharedTrustStoreAssociationCommandInput,
|
|
48
|
+
DeleteSharedTrustStoreAssociationCommandOutput,
|
|
49
|
+
} from "./commands/DeleteSharedTrustStoreAssociationCommand";
|
|
46
50
|
import {
|
|
47
51
|
DeleteTargetGroupCommandInput,
|
|
48
52
|
DeleteTargetGroupCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
DescribeTrustStoresCommandInput,
|
|
112
116
|
DescribeTrustStoresCommandOutput,
|
|
113
117
|
} from "./commands/DescribeTrustStoresCommand";
|
|
118
|
+
import {
|
|
119
|
+
GetResourcePolicyCommandInput,
|
|
120
|
+
GetResourcePolicyCommandOutput,
|
|
121
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
114
122
|
import {
|
|
115
123
|
GetTrustStoreCaCertificatesBundleCommandInput,
|
|
116
124
|
GetTrustStoreCaCertificatesBundleCommandOutput,
|
|
@@ -320,6 +328,25 @@ export interface ElasticLoadBalancingV2 {
|
|
|
320
328
|
options: __HttpHandlerOptions,
|
|
321
329
|
cb: (err: any, data?: DeleteRuleCommandOutput) => void
|
|
322
330
|
): void;
|
|
331
|
+
deleteSharedTrustStoreAssociation(
|
|
332
|
+
args: DeleteSharedTrustStoreAssociationCommandInput,
|
|
333
|
+
options?: __HttpHandlerOptions
|
|
334
|
+
): Promise<DeleteSharedTrustStoreAssociationCommandOutput>;
|
|
335
|
+
deleteSharedTrustStoreAssociation(
|
|
336
|
+
args: DeleteSharedTrustStoreAssociationCommandInput,
|
|
337
|
+
cb: (
|
|
338
|
+
err: any,
|
|
339
|
+
data?: DeleteSharedTrustStoreAssociationCommandOutput
|
|
340
|
+
) => void
|
|
341
|
+
): void;
|
|
342
|
+
deleteSharedTrustStoreAssociation(
|
|
343
|
+
args: DeleteSharedTrustStoreAssociationCommandInput,
|
|
344
|
+
options: __HttpHandlerOptions,
|
|
345
|
+
cb: (
|
|
346
|
+
err: any,
|
|
347
|
+
data?: DeleteSharedTrustStoreAssociationCommandOutput
|
|
348
|
+
) => void
|
|
349
|
+
): void;
|
|
323
350
|
deleteTargetGroup(
|
|
324
351
|
args: DeleteTargetGroupCommandInput,
|
|
325
352
|
options?: __HttpHandlerOptions
|
|
@@ -548,6 +575,19 @@ export interface ElasticLoadBalancingV2 {
|
|
|
548
575
|
options: __HttpHandlerOptions,
|
|
549
576
|
cb: (err: any, data?: DescribeTrustStoresCommandOutput) => void
|
|
550
577
|
): void;
|
|
578
|
+
getResourcePolicy(
|
|
579
|
+
args: GetResourcePolicyCommandInput,
|
|
580
|
+
options?: __HttpHandlerOptions
|
|
581
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
582
|
+
getResourcePolicy(
|
|
583
|
+
args: GetResourcePolicyCommandInput,
|
|
584
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
585
|
+
): void;
|
|
586
|
+
getResourcePolicy(
|
|
587
|
+
args: GetResourcePolicyCommandInput,
|
|
588
|
+
options: __HttpHandlerOptions,
|
|
589
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
590
|
+
): void;
|
|
551
591
|
getTrustStoreCaCertificatesBundle(
|
|
552
592
|
args: GetTrustStoreCaCertificatesBundleCommandInput,
|
|
553
593
|
options?: __HttpHandlerOptions
|
|
@@ -89,6 +89,10 @@ import {
|
|
|
89
89
|
DeleteRuleCommandInput,
|
|
90
90
|
DeleteRuleCommandOutput,
|
|
91
91
|
} from "./commands/DeleteRuleCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteSharedTrustStoreAssociationCommandInput,
|
|
94
|
+
DeleteSharedTrustStoreAssociationCommandOutput,
|
|
95
|
+
} from "./commands/DeleteSharedTrustStoreAssociationCommand";
|
|
92
96
|
import {
|
|
93
97
|
DeleteTargetGroupCommandInput,
|
|
94
98
|
DeleteTargetGroupCommandOutput,
|
|
@@ -157,6 +161,10 @@ import {
|
|
|
157
161
|
DescribeTrustStoresCommandInput,
|
|
158
162
|
DescribeTrustStoresCommandOutput,
|
|
159
163
|
} from "./commands/DescribeTrustStoresCommand";
|
|
164
|
+
import {
|
|
165
|
+
GetResourcePolicyCommandInput,
|
|
166
|
+
GetResourcePolicyCommandOutput,
|
|
167
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
160
168
|
import {
|
|
161
169
|
GetTrustStoreCaCertificatesBundleCommandInput,
|
|
162
170
|
GetTrustStoreCaCertificatesBundleCommandOutput,
|
|
@@ -240,6 +248,7 @@ export type ServiceInputTypes =
|
|
|
240
248
|
| DeleteListenerCommandInput
|
|
241
249
|
| DeleteLoadBalancerCommandInput
|
|
242
250
|
| DeleteRuleCommandInput
|
|
251
|
+
| DeleteSharedTrustStoreAssociationCommandInput
|
|
243
252
|
| DeleteTargetGroupCommandInput
|
|
244
253
|
| DeleteTrustStoreCommandInput
|
|
245
254
|
| DeregisterTargetsCommandInput
|
|
@@ -257,6 +266,7 @@ export type ServiceInputTypes =
|
|
|
257
266
|
| DescribeTrustStoreAssociationsCommandInput
|
|
258
267
|
| DescribeTrustStoreRevocationsCommandInput
|
|
259
268
|
| DescribeTrustStoresCommandInput
|
|
269
|
+
| GetResourcePolicyCommandInput
|
|
260
270
|
| GetTrustStoreCaCertificatesBundleCommandInput
|
|
261
271
|
| GetTrustStoreRevocationContentCommandInput
|
|
262
272
|
| ModifyListenerCommandInput
|
|
@@ -285,6 +295,7 @@ export type ServiceOutputTypes =
|
|
|
285
295
|
| DeleteListenerCommandOutput
|
|
286
296
|
| DeleteLoadBalancerCommandOutput
|
|
287
297
|
| DeleteRuleCommandOutput
|
|
298
|
+
| DeleteSharedTrustStoreAssociationCommandOutput
|
|
288
299
|
| DeleteTargetGroupCommandOutput
|
|
289
300
|
| DeleteTrustStoreCommandOutput
|
|
290
301
|
| DeregisterTargetsCommandOutput
|
|
@@ -302,6 +313,7 @@ export type ServiceOutputTypes =
|
|
|
302
313
|
| DescribeTrustStoreAssociationsCommandOutput
|
|
303
314
|
| DescribeTrustStoreRevocationsCommandOutput
|
|
304
315
|
| DescribeTrustStoresCommandOutput
|
|
316
|
+
| GetResourcePolicyCommandOutput
|
|
305
317
|
| GetTrustStoreCaCertificatesBundleCommandOutput
|
|
306
318
|
| GetTrustStoreRevocationContentCommandOutput
|
|
307
319
|
| ModifyListenerCommandOutput
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
DeleteSharedTrustStoreAssociationInput,
|
|
10
|
+
DeleteSharedTrustStoreAssociationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteSharedTrustStoreAssociationCommandInput
|
|
15
|
+
extends DeleteSharedTrustStoreAssociationInput {}
|
|
16
|
+
export interface DeleteSharedTrustStoreAssociationCommandOutput
|
|
17
|
+
extends DeleteSharedTrustStoreAssociationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteSharedTrustStoreAssociationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteSharedTrustStoreAssociationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteSharedTrustStoreAssociationCommandInput,
|
|
24
|
+
DeleteSharedTrustStoreAssociationCommandOutput,
|
|
25
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteSharedTrustStoreAssociationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteSharedTrustStoreAssociationCommandInput,
|
|
33
|
+
DeleteSharedTrustStoreAssociationCommandOutput,
|
|
34
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteSharedTrustStoreAssociationCommand extends DeleteSharedTrustStoreAssociationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
GetResourcePolicyInput,
|
|
10
|
+
GetResourcePolicyOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetResourcePolicyCommandInput extends GetResourcePolicyInput {}
|
|
15
|
+
export interface GetResourcePolicyCommandOutput
|
|
16
|
+
extends GetResourcePolicyOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetResourcePolicyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetResourcePolicyCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetResourcePolicyCommandInput,
|
|
23
|
+
GetResourcePolicyCommandOutput,
|
|
24
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetResourcePolicyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetResourcePolicyCommandInput,
|
|
32
|
+
GetResourcePolicyCommandOutput,
|
|
33
|
+
ElasticLoadBalancingV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateTrustStoreCommand";
|
|
|
9
9
|
export * from "./DeleteListenerCommand";
|
|
10
10
|
export * from "./DeleteLoadBalancerCommand";
|
|
11
11
|
export * from "./DeleteRuleCommand";
|
|
12
|
+
export * from "./DeleteSharedTrustStoreAssociationCommand";
|
|
12
13
|
export * from "./DeleteTargetGroupCommand";
|
|
13
14
|
export * from "./DeleteTrustStoreCommand";
|
|
14
15
|
export * from "./DeregisterTargetsCommand";
|
|
@@ -26,6 +27,7 @@ export * from "./DescribeTargetHealthCommand";
|
|
|
26
27
|
export * from "./DescribeTrustStoreAssociationsCommand";
|
|
27
28
|
export * from "./DescribeTrustStoreRevocationsCommand";
|
|
28
29
|
export * from "./DescribeTrustStoresCommand";
|
|
30
|
+
export * from "./GetResourcePolicyCommand";
|
|
29
31
|
export * from "./GetTrustStoreCaCertificatesBundleCommand";
|
|
30
32
|
export * from "./GetTrustStoreRevocationContentCommand";
|
|
31
33
|
export * from "./ModifyListenerCommand";
|
|
@@ -310,10 +310,17 @@ export interface Cipher {
|
|
|
310
310
|
Name?: string;
|
|
311
311
|
Priority?: number;
|
|
312
312
|
}
|
|
313
|
+
export declare const TrustStoreAssociationStatusEnum: {
|
|
314
|
+
readonly ACTIVE: "active";
|
|
315
|
+
readonly REMOVED: "removed";
|
|
316
|
+
};
|
|
317
|
+
export type TrustStoreAssociationStatusEnum =
|
|
318
|
+
(typeof TrustStoreAssociationStatusEnum)[keyof typeof TrustStoreAssociationStatusEnum];
|
|
313
319
|
export interface MutualAuthenticationAttributes {
|
|
314
320
|
Mode?: string;
|
|
315
321
|
TrustStoreArn?: string;
|
|
316
322
|
IgnoreClientCertificateExpiry?: boolean;
|
|
323
|
+
TrustStoreAssociationStatus?: TrustStoreAssociationStatusEnum;
|
|
317
324
|
}
|
|
318
325
|
export declare const ProtocolEnum: {
|
|
319
326
|
readonly GENEVE: "GENEVE";
|
|
@@ -801,6 +808,17 @@ export declare class TooManyTrustStoresException extends __BaseException {
|
|
|
801
808
|
opts: __ExceptionOptionType<TooManyTrustStoresException, __BaseException>
|
|
802
809
|
);
|
|
803
810
|
}
|
|
811
|
+
export declare class DeleteAssociationSameAccountException extends __BaseException {
|
|
812
|
+
readonly name: "DeleteAssociationSameAccountException";
|
|
813
|
+
readonly $fault: "client";
|
|
814
|
+
Message?: string;
|
|
815
|
+
constructor(
|
|
816
|
+
opts: __ExceptionOptionType<
|
|
817
|
+
DeleteAssociationSameAccountException,
|
|
818
|
+
__BaseException
|
|
819
|
+
>
|
|
820
|
+
);
|
|
821
|
+
}
|
|
804
822
|
export interface DeleteListenerInput {
|
|
805
823
|
ListenerArn: string | undefined;
|
|
806
824
|
}
|
|
@@ -813,6 +831,22 @@ export interface DeleteRuleInput {
|
|
|
813
831
|
RuleArn: string | undefined;
|
|
814
832
|
}
|
|
815
833
|
export interface DeleteRuleOutput {}
|
|
834
|
+
export interface DeleteSharedTrustStoreAssociationInput {
|
|
835
|
+
TrustStoreArn: string | undefined;
|
|
836
|
+
ResourceArn: string | undefined;
|
|
837
|
+
}
|
|
838
|
+
export interface DeleteSharedTrustStoreAssociationOutput {}
|
|
839
|
+
export declare class TrustStoreAssociationNotFoundException extends __BaseException {
|
|
840
|
+
readonly name: "TrustStoreAssociationNotFoundException";
|
|
841
|
+
readonly $fault: "client";
|
|
842
|
+
Message?: string;
|
|
843
|
+
constructor(
|
|
844
|
+
opts: __ExceptionOptionType<
|
|
845
|
+
TrustStoreAssociationNotFoundException,
|
|
846
|
+
__BaseException
|
|
847
|
+
>
|
|
848
|
+
);
|
|
849
|
+
}
|
|
816
850
|
export interface DeleteTargetGroupInput {
|
|
817
851
|
TargetGroupArn: string | undefined;
|
|
818
852
|
}
|
|
@@ -1061,6 +1095,20 @@ export interface DescribeTrustStoresOutput {
|
|
|
1061
1095
|
TrustStores?: TrustStore[];
|
|
1062
1096
|
NextMarker?: string;
|
|
1063
1097
|
}
|
|
1098
|
+
export interface GetResourcePolicyInput {
|
|
1099
|
+
ResourceArn: string | undefined;
|
|
1100
|
+
}
|
|
1101
|
+
export interface GetResourcePolicyOutput {
|
|
1102
|
+
Policy?: string;
|
|
1103
|
+
}
|
|
1104
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1105
|
+
readonly name: "ResourceNotFoundException";
|
|
1106
|
+
readonly $fault: "client";
|
|
1107
|
+
Message?: string;
|
|
1108
|
+
constructor(
|
|
1109
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
1110
|
+
);
|
|
1111
|
+
}
|
|
1064
1112
|
export interface GetTrustStoreCaCertificatesBundleInput {
|
|
1065
1113
|
TrustStoreArn: string | undefined;
|
|
1066
1114
|
}
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
DeleteRuleCommandInput,
|
|
48
48
|
DeleteRuleCommandOutput,
|
|
49
49
|
} from "../commands/DeleteRuleCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteSharedTrustStoreAssociationCommandInput,
|
|
52
|
+
DeleteSharedTrustStoreAssociationCommandOutput,
|
|
53
|
+
} from "../commands/DeleteSharedTrustStoreAssociationCommand";
|
|
50
54
|
import {
|
|
51
55
|
DeleteTargetGroupCommandInput,
|
|
52
56
|
DeleteTargetGroupCommandOutput,
|
|
@@ -115,6 +119,10 @@ import {
|
|
|
115
119
|
DescribeTrustStoresCommandInput,
|
|
116
120
|
DescribeTrustStoresCommandOutput,
|
|
117
121
|
} from "../commands/DescribeTrustStoresCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetResourcePolicyCommandInput,
|
|
124
|
+
GetResourcePolicyCommandOutput,
|
|
125
|
+
} from "../commands/GetResourcePolicyCommand";
|
|
118
126
|
import {
|
|
119
127
|
GetTrustStoreCaCertificatesBundleCommandInput,
|
|
120
128
|
GetTrustStoreCaCertificatesBundleCommandOutput,
|
|
@@ -223,6 +231,10 @@ export declare const se_DeleteRuleCommand: (
|
|
|
223
231
|
input: DeleteRuleCommandInput,
|
|
224
232
|
context: __SerdeContext
|
|
225
233
|
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const se_DeleteSharedTrustStoreAssociationCommand: (
|
|
235
|
+
input: DeleteSharedTrustStoreAssociationCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
226
238
|
export declare const se_DeleteTargetGroupCommand: (
|
|
227
239
|
input: DeleteTargetGroupCommandInput,
|
|
228
240
|
context: __SerdeContext
|
|
@@ -291,6 +303,10 @@ export declare const se_DescribeTrustStoresCommand: (
|
|
|
291
303
|
input: DescribeTrustStoresCommandInput,
|
|
292
304
|
context: __SerdeContext
|
|
293
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_GetResourcePolicyCommand: (
|
|
307
|
+
input: GetResourcePolicyCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
294
310
|
export declare const se_GetTrustStoreCaCertificatesBundleCommand: (
|
|
295
311
|
input: GetTrustStoreCaCertificatesBundleCommandInput,
|
|
296
312
|
context: __SerdeContext
|
|
@@ -399,6 +415,10 @@ export declare const de_DeleteRuleCommand: (
|
|
|
399
415
|
output: __HttpResponse,
|
|
400
416
|
context: __SerdeContext
|
|
401
417
|
) => Promise<DeleteRuleCommandOutput>;
|
|
418
|
+
export declare const de_DeleteSharedTrustStoreAssociationCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<DeleteSharedTrustStoreAssociationCommandOutput>;
|
|
402
422
|
export declare const de_DeleteTargetGroupCommand: (
|
|
403
423
|
output: __HttpResponse,
|
|
404
424
|
context: __SerdeContext
|
|
@@ -467,6 +487,10 @@ export declare const de_DescribeTrustStoresCommand: (
|
|
|
467
487
|
output: __HttpResponse,
|
|
468
488
|
context: __SerdeContext
|
|
469
489
|
) => Promise<DescribeTrustStoresCommandOutput>;
|
|
490
|
+
export declare const de_GetResourcePolicyCommand: (
|
|
491
|
+
output: __HttpResponse,
|
|
492
|
+
context: __SerdeContext
|
|
493
|
+
) => Promise<GetResourcePolicyCommandOutput>;
|
|
470
494
|
export declare const de_GetTrustStoreCaCertificatesBundleCommand: (
|
|
471
495
|
output: __HttpResponse,
|
|
472
496
|
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.620.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",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.620.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.620.0",
|
|
25
|
+
"@aws-sdk/core": "3.620.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.620.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.3.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.3",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.5",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.0",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.12",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
|
-
"@smithy/node-http-handler": "^3.1.
|
|
48
|
-
"@smithy/protocol-http": "^4.0
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
47
|
+
"@smithy/node-http-handler": "^3.1.4",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.0",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.10",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.12",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.12",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|