@aws-sdk/client-elastic-load-balancing-v2 3.637.0 → 3.644.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 +68 -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 +1 -1
|
@@ -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.644.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",
|