-
Notifications
You must be signed in to change notification settings - Fork 577
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-elastic-load-balancing-v2): This release adds support for…
… sharing trust stores across accounts and organizations through integration with AWS Resource Access Manager.
- Loading branch information
awstools
committed
Jul 25, 2024
1 parent
daacfd6
commit 4a753d9
Showing
15 changed files
with
861 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 99 additions & 0 deletions
99
...client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// smithy-typescript generated code | ||
import { getEndpointPlugin } from "@smithy/middleware-endpoint"; | ||
import { getSerdePlugin } from "@smithy/middleware-serde"; | ||
import { Command as $Command } from "@smithy/smithy-client"; | ||
import { MetadataBearer as __MetadataBearer } from "@smithy/types"; | ||
|
||
import { | ||
ElasticLoadBalancingV2ClientResolvedConfig, | ||
ServiceInputTypes, | ||
ServiceOutputTypes, | ||
} from "../ElasticLoadBalancingV2Client"; | ||
import { commonParams } from "../endpoint/EndpointParameters"; | ||
import { DeleteSharedTrustStoreAssociationInput, DeleteSharedTrustStoreAssociationOutput } from "../models/models_0"; | ||
import { | ||
de_DeleteSharedTrustStoreAssociationCommand, | ||
se_DeleteSharedTrustStoreAssociationCommand, | ||
} from "../protocols/Aws_query"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export type { __MetadataBearer }; | ||
export { $Command }; | ||
/** | ||
* @public | ||
* | ||
* The input for {@link DeleteSharedTrustStoreAssociationCommand}. | ||
*/ | ||
export interface DeleteSharedTrustStoreAssociationCommandInput extends DeleteSharedTrustStoreAssociationInput {} | ||
/** | ||
* @public | ||
* | ||
* The output of {@link DeleteSharedTrustStoreAssociationCommand}. | ||
*/ | ||
export interface DeleteSharedTrustStoreAssociationCommandOutput | ||
extends DeleteSharedTrustStoreAssociationOutput, | ||
__MetadataBearer {} | ||
|
||
/** | ||
* <p>Deletes a shared trust store association.</p> | ||
* @example | ||
* Use a bare-bones client and the command you need to make an API call. | ||
* ```javascript | ||
* import { ElasticLoadBalancingV2Client, DeleteSharedTrustStoreAssociationCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import | ||
* // const { ElasticLoadBalancingV2Client, DeleteSharedTrustStoreAssociationCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import | ||
* const client = new ElasticLoadBalancingV2Client(config); | ||
* const input = { // DeleteSharedTrustStoreAssociationInput | ||
* TrustStoreArn: "STRING_VALUE", // required | ||
* ResourceArn: "STRING_VALUE", // required | ||
* }; | ||
* const command = new DeleteSharedTrustStoreAssociationCommand(input); | ||
* const response = await client.send(command); | ||
* // {}; | ||
* | ||
* ``` | ||
* | ||
* @param DeleteSharedTrustStoreAssociationCommandInput - {@link DeleteSharedTrustStoreAssociationCommandInput} | ||
* @returns {@link DeleteSharedTrustStoreAssociationCommandOutput} | ||
* @see {@link DeleteSharedTrustStoreAssociationCommandInput} for command's `input` shape. | ||
* @see {@link DeleteSharedTrustStoreAssociationCommandOutput} for command's `response` shape. | ||
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape. | ||
* | ||
* @throws {@link DeleteAssociationSameAccountException} (client fault) | ||
* <p>The specified association cannot be within the same account.</p> | ||
* | ||
* @throws {@link TrustStoreAssociationNotFoundException} (client fault) | ||
* <p>The specified association does not exist.</p> | ||
* | ||
* @throws {@link TrustStoreNotFoundException} (client fault) | ||
* <p>The specified trust store does not exist.</p> | ||
* | ||
* @throws {@link ElasticLoadBalancingV2ServiceException} | ||
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p> | ||
* | ||
* @public | ||
*/ | ||
export class DeleteSharedTrustStoreAssociationCommand extends $Command | ||
.classBuilder< | ||
DeleteSharedTrustStoreAssociationCommandInput, | ||
DeleteSharedTrustStoreAssociationCommandOutput, | ||
ElasticLoadBalancingV2ClientResolvedConfig, | ||
ServiceInputTypes, | ||
ServiceOutputTypes | ||
>() | ||
.ep({ | ||
...commonParams, | ||
}) | ||
.m(function (this: any, Command: any, cs: any, config: ElasticLoadBalancingV2ClientResolvedConfig, o: any) { | ||
return [ | ||
getSerdePlugin(config, this.serialize, this.deserialize), | ||
getEndpointPlugin(config, Command.getEndpointParameterInstructions()), | ||
]; | ||
}) | ||
.s("ElasticLoadBalancing_v10", "DeleteSharedTrustStoreAssociation", {}) | ||
.n("ElasticLoadBalancingV2Client", "DeleteSharedTrustStoreAssociationCommand") | ||
.f(void 0, void 0) | ||
.ser(se_DeleteSharedTrustStoreAssociationCommand) | ||
.de(de_DeleteSharedTrustStoreAssociationCommand) | ||
.build() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.