@aws-sdk/client-elastic-load-balancing-v2 3.637.0 → 3.645.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 +169 -0
- package/dist-es/ElasticLoadBalancingV2.js +4 -0
- package/dist-es/commands/DescribeListenerAttributesCommand.js +24 -0
- package/dist-es/commands/ModifyListenerAttributesCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/protocols/Aws_query.js +134 -0
- package/dist-types/ElasticLoadBalancingV2.d.ts +14 -0
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +4 -2
- package/dist-types/commands/DescribeListenerAttributesCommand.d.ts +79 -0
- package/dist-types/commands/ModifyListenerAttributesCommand.d.ts +77 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +71 -2
- 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/DescribeListenerAttributesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ModifyListenerAttributesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +6 -6
|
@@ -893,6 +893,16 @@ export interface DescribeAccountLimitsOutput {
|
|
|
893
893
|
Limits?: Limit[];
|
|
894
894
|
NextMarker?: string;
|
|
895
895
|
}
|
|
896
|
+
export interface DescribeListenerAttributesInput {
|
|
897
|
+
ListenerArn: string | undefined;
|
|
898
|
+
}
|
|
899
|
+
export interface ListenerAttribute {
|
|
900
|
+
Key?: string;
|
|
901
|
+
Value?: string;
|
|
902
|
+
}
|
|
903
|
+
export interface DescribeListenerAttributesOutput {
|
|
904
|
+
Attributes?: ListenerAttribute[];
|
|
905
|
+
}
|
|
896
906
|
export interface DescribeListenerCertificatesInput {
|
|
897
907
|
ListenerArn: string | undefined;
|
|
898
908
|
Marker?: string;
|
|
@@ -1135,6 +1145,13 @@ export interface ModifyListenerInput {
|
|
|
1135
1145
|
export interface ModifyListenerOutput {
|
|
1136
1146
|
Listeners?: Listener[];
|
|
1137
1147
|
}
|
|
1148
|
+
export interface ModifyListenerAttributesInput {
|
|
1149
|
+
ListenerArn: string | undefined;
|
|
1150
|
+
Attributes: ListenerAttribute[] | undefined;
|
|
1151
|
+
}
|
|
1152
|
+
export interface ModifyListenerAttributesOutput {
|
|
1153
|
+
Attributes?: ListenerAttribute[];
|
|
1154
|
+
}
|
|
1138
1155
|
export interface ModifyLoadBalancerAttributesInput {
|
|
1139
1156
|
LoadBalancerArn: string | undefined;
|
|
1140
1157
|
Attributes: LoadBalancerAttribute[] | undefined;
|
|
@@ -67,6 +67,10 @@ import {
|
|
|
67
67
|
DescribeAccountLimitsCommandInput,
|
|
68
68
|
DescribeAccountLimitsCommandOutput,
|
|
69
69
|
} from "../commands/DescribeAccountLimitsCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeListenerAttributesCommandInput,
|
|
72
|
+
DescribeListenerAttributesCommandOutput,
|
|
73
|
+
} from "../commands/DescribeListenerAttributesCommand";
|
|
70
74
|
import {
|
|
71
75
|
DescribeListenerCertificatesCommandInput,
|
|
72
76
|
DescribeListenerCertificatesCommandOutput,
|
|
@@ -131,6 +135,10 @@ import {
|
|
|
131
135
|
GetTrustStoreRevocationContentCommandInput,
|
|
132
136
|
GetTrustStoreRevocationContentCommandOutput,
|
|
133
137
|
} from "../commands/GetTrustStoreRevocationContentCommand";
|
|
138
|
+
import {
|
|
139
|
+
ModifyListenerAttributesCommandInput,
|
|
140
|
+
ModifyListenerAttributesCommandOutput,
|
|
141
|
+
} from "../commands/ModifyListenerAttributesCommand";
|
|
134
142
|
import {
|
|
135
143
|
ModifyListenerCommandInput,
|
|
136
144
|
ModifyListenerCommandOutput,
|
|
@@ -251,6 +259,10 @@ export declare const se_DescribeAccountLimitsCommand: (
|
|
|
251
259
|
input: DescribeAccountLimitsCommandInput,
|
|
252
260
|
context: __SerdeContext
|
|
253
261
|
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const se_DescribeListenerAttributesCommand: (
|
|
263
|
+
input: DescribeListenerAttributesCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
254
266
|
export declare const se_DescribeListenerCertificatesCommand: (
|
|
255
267
|
input: DescribeListenerCertificatesCommandInput,
|
|
256
268
|
context: __SerdeContext
|
|
@@ -319,6 +331,10 @@ export declare const se_ModifyListenerCommand: (
|
|
|
319
331
|
input: ModifyListenerCommandInput,
|
|
320
332
|
context: __SerdeContext
|
|
321
333
|
) => Promise<__HttpRequest>;
|
|
334
|
+
export declare const se_ModifyListenerAttributesCommand: (
|
|
335
|
+
input: ModifyListenerAttributesCommandInput,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<__HttpRequest>;
|
|
322
338
|
export declare const se_ModifyLoadBalancerAttributesCommand: (
|
|
323
339
|
input: ModifyLoadBalancerAttributesCommandInput,
|
|
324
340
|
context: __SerdeContext
|
|
@@ -435,6 +451,10 @@ export declare const de_DescribeAccountLimitsCommand: (
|
|
|
435
451
|
output: __HttpResponse,
|
|
436
452
|
context: __SerdeContext
|
|
437
453
|
) => Promise<DescribeAccountLimitsCommandOutput>;
|
|
454
|
+
export declare const de_DescribeListenerAttributesCommand: (
|
|
455
|
+
output: __HttpResponse,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<DescribeListenerAttributesCommandOutput>;
|
|
438
458
|
export declare const de_DescribeListenerCertificatesCommand: (
|
|
439
459
|
output: __HttpResponse,
|
|
440
460
|
context: __SerdeContext
|
|
@@ -503,6 +523,10 @@ export declare const de_ModifyListenerCommand: (
|
|
|
503
523
|
output: __HttpResponse,
|
|
504
524
|
context: __SerdeContext
|
|
505
525
|
) => Promise<ModifyListenerCommandOutput>;
|
|
526
|
+
export declare const de_ModifyListenerAttributesCommand: (
|
|
527
|
+
output: __HttpResponse,
|
|
528
|
+
context: __SerdeContext
|
|
529
|
+
) => Promise<ModifyListenerAttributesCommandOutput>;
|
|
506
530
|
export declare const de_ModifyLoadBalancerAttributesCommand: (
|
|
507
531
|
output: __HttpResponse,
|
|
508
532
|
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.645.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,17 +20,17 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.645.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.645.0",
|
|
25
25
|
"@aws-sdk/core": "3.635.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.645.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.645.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.645.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",
|