Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ServiceCatalogAppRegistry

import { ServiceCatalogAppRegistry } from "https://aws-api.deno.dev/v0.4/services/servicecatalogappregistry.ts?docs=full";
class ServiceCatalogAppRegistry {
constructor(apiFactory: client.ApiFactory);
async associateAttributeGroup(params: AssociateAttributeGroupRequest, opts?: client.RequestOptions): Promise<AssociateAttributeGroupResponse>;
async associateResource(params: AssociateResourceRequest, opts?: client.RequestOptions): Promise<AssociateResourceResponse>;
async createApplication(params: CreateApplicationRequest, opts?: client.RequestOptions): Promise<CreateApplicationResponse>;
async createAttributeGroup(params: CreateAttributeGroupRequest, opts?: client.RequestOptions): Promise<CreateAttributeGroupResponse>;
async deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<DeleteApplicationResponse>;
async deleteAttributeGroup(params: DeleteAttributeGroupRequest, opts?: client.RequestOptions): Promise<DeleteAttributeGroupResponse>;
async disassociateAttributeGroup(params: DisassociateAttributeGroupRequest, opts?: client.RequestOptions): Promise<DisassociateAttributeGroupResponse>;
async disassociateResource(params: DisassociateResourceRequest, opts?: client.RequestOptions): Promise<DisassociateResourceResponse>;
async getApplication(params: GetApplicationRequest, opts?: client.RequestOptions): Promise<GetApplicationResponse>;
async getAssociatedResource(params: GetAssociatedResourceRequest, opts?: client.RequestOptions): Promise<GetAssociatedResourceResponse>;
async getAttributeGroup(params: GetAttributeGroupRequest, opts?: client.RequestOptions): Promise<GetAttributeGroupResponse>;
async getConfiguration(opts?: client.RequestOptions): Promise<GetConfigurationResponse>;
async listApplications(params?: ListApplicationsRequest, opts?: client.RequestOptions): Promise<ListApplicationsResponse>;
async listAssociatedAttributeGroups(params: ListAssociatedAttributeGroupsRequest, opts?: client.RequestOptions): Promise<ListAssociatedAttributeGroupsResponse>;
async listAssociatedResources(params: ListAssociatedResourcesRequest, opts?: client.RequestOptions): Promise<ListAssociatedResourcesResponse>;
async listAttributeGroups(params?: ListAttributeGroupsRequest, opts?: client.RequestOptions): Promise<ListAttributeGroupsResponse>;
async listAttributeGroupsForApplication(params: ListAttributeGroupsForApplicationRequest, opts?: client.RequestOptions): Promise<ListAttributeGroupsForApplicationResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async putConfiguration(params: PutConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async syncResource(params: SyncResourceRequest, opts?: client.RequestOptions): Promise<SyncResourceResponse>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateApplication(params: UpdateApplicationRequest, opts?: client.RequestOptions): Promise<UpdateApplicationResponse>;
async updateAttributeGroup(params: UpdateAttributeGroupRequest, opts?: client.RequestOptions): Promise<UpdateAttributeGroupResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new ServiceCatalogAppRegistry(apiFactory: client.ApiFactory)
[src]

§Methods

§

Associates an attribute group with an application to augment the application's metadata with the group's attributes. This feature enables applications to be described with user-defined details that are machine-readable, such as third-party integrations.

§

Associates a resource with an application. Both the resource and the application can be specified either by ID or name.

§

Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.

§

Creates a new attribute group as a container for user-defined attributes. This feature enables users to have full control over their cloud application's metadata in a rich machine-readable format to facilitate integration with automated workflows and third-party tools.

§

Deletes an application that is specified either by its application ID or name. All associated attribute groups and resources must be disassociated from it before deleting an application.

§

Deletes an attribute group, specified either by its attribute group ID or name.

§

Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts AssociateAttributeGroup.

§

Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.

§

Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.

§

Gets the resource associated with the application.

§

Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.

§
getConfiguration(opts?: client.RequestOptions): Promise<GetConfigurationResponse>
[src]

Retrieves a TagKey configuration from an account.

§

Retrieves a list of all of your applications. Results are paginated.

§

Lists all attribute groups that are associated with specified application. Results are paginated.

§

Lists all of the resources that are associated with the specified application. Results are paginated.

Note: If you share an application, and a consumer account associates a tag query to the application, all of the users who can access the application can also view the tag values in all accounts that are associated with it using this API.

§

Lists all attribute groups which you have access to. Results are paginated.

§

Lists the details of all attribute groups associated with a specific application. The results display in pages.

§

Lists all of the tags on the resource.

§
putConfiguration(params: PutConfigurationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Associates a TagKey configuration to an account.

§

Syncs the resource with current AppRegistry records.

Specifically, the resource’s AppRegistry system tags sync with its associated application. We remove the resource's AppRegistry system tags if it does not associate with the application. The caller must have permissions to read and update the resource.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Assigns one or more tags (key-value pairs) to the specified resource.

Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.

This operation returns an empty response if the call was successful.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes tags from a resource.

This operation returns an empty response if the call was successful.

§

Updates an existing application with new attributes.

§

Updates an existing attribute group with new details.

§Static Properties