-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-service-catalog-appregistry): This release adds a new API…
… ListAttributeGroupsForApplication that returns associated attribute groups of an application. In addition, the UpdateApplication and UpdateAttributeGroup APIs will not allow users to update the 'Name' attribute.
- Loading branch information
awstools
committed
Jun 15, 2022
1 parent
57980bd
commit 03773d1
Showing
9 changed files
with
600 additions
and
25 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
111 changes: 111 additions & 0 deletions
111
...ient-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.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,111 @@ | ||
// smithy-typescript generated code | ||
import { getSerdePlugin } from "@aws-sdk/middleware-serde"; | ||
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http"; | ||
import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
import { | ||
FinalizeHandlerArguments, | ||
Handler, | ||
HandlerExecutionContext, | ||
HttpHandlerOptions as __HttpHandlerOptions, | ||
MetadataBearer as __MetadataBearer, | ||
MiddlewareStack, | ||
SerdeContext as __SerdeContext, | ||
} from "@aws-sdk/types"; | ||
|
||
import { | ||
ListAttributeGroupsForApplicationRequest, | ||
ListAttributeGroupsForApplicationResponse, | ||
} from "../models/models_0"; | ||
import { | ||
deserializeAws_restJson1ListAttributeGroupsForApplicationCommand, | ||
serializeAws_restJson1ListAttributeGroupsForApplicationCommand, | ||
} from "../protocols/Aws_restJson1"; | ||
import { | ||
ServiceCatalogAppRegistryClientResolvedConfig, | ||
ServiceInputTypes, | ||
ServiceOutputTypes, | ||
} from "../ServiceCatalogAppRegistryClient"; | ||
|
||
export interface ListAttributeGroupsForApplicationCommandInput extends ListAttributeGroupsForApplicationRequest {} | ||
export interface ListAttributeGroupsForApplicationCommandOutput | ||
extends ListAttributeGroupsForApplicationResponse, | ||
__MetadataBearer {} | ||
|
||
/** | ||
* <p>Lists the details of all attribute groups associated with a specific application. The results display in pages.</p> | ||
* @example | ||
* Use a bare-bones client and the command you need to make an API call. | ||
* ```javascript | ||
* import { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import | ||
* // const { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import | ||
* const client = new ServiceCatalogAppRegistryClient(config); | ||
* const command = new ListAttributeGroupsForApplicationCommand(input); | ||
* const response = await client.send(command); | ||
* ``` | ||
* | ||
* @see {@link ListAttributeGroupsForApplicationCommandInput} for command's `input` shape. | ||
* @see {@link ListAttributeGroupsForApplicationCommandOutput} for command's `response` shape. | ||
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape. | ||
* | ||
*/ | ||
export class ListAttributeGroupsForApplicationCommand extends $Command< | ||
ListAttributeGroupsForApplicationCommandInput, | ||
ListAttributeGroupsForApplicationCommandOutput, | ||
ServiceCatalogAppRegistryClientResolvedConfig | ||
> { | ||
// Start section: command_properties | ||
// End section: command_properties | ||
|
||
constructor(readonly input: ListAttributeGroupsForApplicationCommandInput) { | ||
// Start section: command_constructor | ||
super(); | ||
// End section: command_constructor | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
resolveMiddleware( | ||
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, | ||
configuration: ServiceCatalogAppRegistryClientResolvedConfig, | ||
options?: __HttpHandlerOptions | ||
): Handler<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput> { | ||
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); | ||
|
||
const stack = clientStack.concat(this.middlewareStack); | ||
|
||
const { logger } = configuration; | ||
const clientName = "ServiceCatalogAppRegistryClient"; | ||
const commandName = "ListAttributeGroupsForApplicationCommand"; | ||
const handlerExecutionContext: HandlerExecutionContext = { | ||
logger, | ||
clientName, | ||
commandName, | ||
inputFilterSensitiveLog: ListAttributeGroupsForApplicationRequest.filterSensitiveLog, | ||
outputFilterSensitiveLog: ListAttributeGroupsForApplicationResponse.filterSensitiveLog, | ||
}; | ||
const { requestHandler } = configuration; | ||
return stack.resolve( | ||
(request: FinalizeHandlerArguments<any>) => | ||
requestHandler.handle(request.request as __HttpRequest, options || {}), | ||
handlerExecutionContext | ||
); | ||
} | ||
|
||
private serialize( | ||
input: ListAttributeGroupsForApplicationCommandInput, | ||
context: __SerdeContext | ||
): Promise<__HttpRequest> { | ||
return serializeAws_restJson1ListAttributeGroupsForApplicationCommand(input, context); | ||
} | ||
|
||
private deserialize( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
): Promise<ListAttributeGroupsForApplicationCommandOutput> { | ||
return deserializeAws_restJson1ListAttributeGroupsForApplicationCommand(output, context); | ||
} | ||
|
||
// Start section: command_body_extra | ||
// End section: command_body_extra | ||
} |
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.