@aws-sdk/client-elastic-load-balancing-v2 3.614.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 +250 -5
- package/dist-es/ElasticLoadBalancingV2.js +4 -0
- package/dist-es/ElasticLoadBalancingV2Client.js +5 -5
- 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 +6 -4
- 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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ElasticLoadBalancingV2.d.ts +40 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +14 -2
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +18 -18
|
@@ -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
|
|
@@ -58,11 +58,11 @@ export declare const getRuntimeConfig: (
|
|
|
58
58
|
}
|
|
59
59
|
) => import("@smithy/types").EndpointV2;
|
|
60
60
|
tls?: boolean | undefined;
|
|
61
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
61
62
|
retryStrategy?:
|
|
62
63
|
| import("@smithy/types").RetryStrategy
|
|
63
64
|
| import("@smithy/types").RetryStrategyV2
|
|
64
65
|
| undefined;
|
|
65
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElasticLoadBalancingV2HttpAuthSchemeProvider;
|
|
68
68
|
credentials?:
|
|
@@ -62,11 +62,11 @@ export declare const getRuntimeConfig: (
|
|
|
62
62
|
}
|
|
63
63
|
) => import("@smithy/types").EndpointV2;
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
65
66
|
retryStrategy?:
|
|
66
67
|
| import("@smithy/types").RetryStrategy
|
|
67
68
|
| import("@smithy/types").RetryStrategyV2
|
|
68
69
|
| undefined;
|
|
69
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElasticLoadBalancingV2HttpAuthSchemeProvider;
|
|
72
72
|
credentials?:
|
|
@@ -52,11 +52,11 @@ export declare const getRuntimeConfig: (
|
|
|
52
52
|
}
|
|
53
53
|
) => import("@smithy/types").EndpointV2;
|
|
54
54
|
tls?: boolean | undefined;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
55
56
|
retryStrategy?:
|
|
56
57
|
| import("@smithy/types").RetryStrategy
|
|
57
58
|
| import("@smithy/types").RetryStrategyV2
|
|
58
59
|
| undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElasticLoadBalancingV2HttpAuthSchemeProvider;
|
|
62
62
|
credentials?:
|
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",
|