@aws-sdk/client-elastic-load-balancing-v2 3.620.0 → 3.620.1
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.
|
@@ -63,6 +63,18 @@ declare const DeleteSharedTrustStoreAssociationCommand_base: {
|
|
|
63
63
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
64
64
|
*
|
|
65
65
|
* @public
|
|
66
|
+
* @example Delete a shared trust store association
|
|
67
|
+
* ```javascript
|
|
68
|
+
* // This example deletes the association between the specified trust store and the specified load balancer.
|
|
69
|
+
* const input = {
|
|
70
|
+
* "ResourceArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c",
|
|
71
|
+
* "TrustStoreArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063"
|
|
72
|
+
* };
|
|
73
|
+
* const command = new DeleteSharedTrustStoreAssociationCommand(input);
|
|
74
|
+
* await client.send(command);
|
|
75
|
+
* // example id: delete-a-shared-trust-store-association-1721684063527
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
66
78
|
*/
|
|
67
79
|
export declare class DeleteSharedTrustStoreAssociationCommand extends DeleteSharedTrustStoreAssociationCommand_base {
|
|
68
80
|
}
|
|
@@ -58,6 +58,17 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
58
58
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
59
59
|
*
|
|
60
60
|
* @public
|
|
61
|
+
* @example Retrieve a resource policy
|
|
62
|
+
* ```javascript
|
|
63
|
+
* // This example retrieves the resource policy for the specified trust store.
|
|
64
|
+
* const input = {
|
|
65
|
+
* "ResourceArn": "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a067"
|
|
66
|
+
* };
|
|
67
|
+
* const command = new GetResourcePolicyCommand(input);
|
|
68
|
+
* await client.send(command);
|
|
69
|
+
* // example id: retrieve-a-resource-policy-1721684356628
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
61
72
|
*/
|
|
62
73
|
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
|
|
63
74
|
}
|
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.620.
|
|
4
|
+
"version": "3.620.1",
|
|
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,10 +20,10 @@
|
|
|
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.620.
|
|
24
|
-
"@aws-sdk/client-sts": "3.620.
|
|
25
|
-
"@aws-sdk/core": "3.620.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.620.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.620.1",
|
|
24
|
+
"@aws-sdk/client-sts": "3.620.1",
|
|
25
|
+
"@aws-sdk/core": "3.620.1",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.620.1",
|
|
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",
|