Service Catalog Appregistry
This page documents function available when using the Service_Catalog_Appregistry
module, created with @service Service_Catalog_Appregistry
.
Index
Main.Service_Catalog_Appregistry.associate_attribute_group
Main.Service_Catalog_Appregistry.associate_resource
Main.Service_Catalog_Appregistry.create_application
Main.Service_Catalog_Appregistry.create_attribute_group
Main.Service_Catalog_Appregistry.delete_application
Main.Service_Catalog_Appregistry.delete_attribute_group
Main.Service_Catalog_Appregistry.disassociate_attribute_group
Main.Service_Catalog_Appregistry.disassociate_resource
Main.Service_Catalog_Appregistry.get_application
Main.Service_Catalog_Appregistry.get_associated_resource
Main.Service_Catalog_Appregistry.get_attribute_group
Main.Service_Catalog_Appregistry.get_configuration
Main.Service_Catalog_Appregistry.list_applications
Main.Service_Catalog_Appregistry.list_associated_attribute_groups
Main.Service_Catalog_Appregistry.list_associated_resources
Main.Service_Catalog_Appregistry.list_attribute_groups
Main.Service_Catalog_Appregistry.list_attribute_groups_for_application
Main.Service_Catalog_Appregistry.list_tags_for_resource
Main.Service_Catalog_Appregistry.put_configuration
Main.Service_Catalog_Appregistry.sync_resource
Main.Service_Catalog_Appregistry.tag_resource
Main.Service_Catalog_Appregistry.untag_resource
Main.Service_Catalog_Appregistry.update_application
Main.Service_Catalog_Appregistry.update_attribute_group
Documentation
Main.Service_Catalog_Appregistry.associate_attribute_group
— Methodassociate_attribute_group(application, attribute_group)
associate_attribute_group(application, attribute_group, params::Dict{String,<:Any})
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.
Arguments
application
: The name, ID, or ARN of the application.attribute_group
: The name, ID, or ARN of the attribute group that holds the attributes to describe the application.
Main.Service_Catalog_Appregistry.associate_resource
— Methodassociate_resource(application, resource, resource_type)
associate_resource(application, resource, resource_type, params::Dict{String,<:Any})
Associates a resource with an application. The resource can be specified by its ARN or name. The application can be specified by ARN, ID, or name. Minimum permissions You must have the following permissions to associate a resource using the OPTIONS parameter set to APPLYAPPLICATIONTAG. tag:GetResources tag:TagResources You must also have these additional permissions if you don't use the AWSServiceCatalogAppRegistryFullAccess policy. For more information, see AWSServiceCatalogAppRegistryFullAccess in the AppRegistry Administrator Guide. resource-groups:AssociateResource cloudformation:UpdateStack cloudformation:DescribeStacks In addition, you must have the tagging permission defined by the Amazon Web Services service that creates the resource. For more information, see TagResources in the Resource Groups Tagging API Reference.
Arguments
application
: The name, ID, or ARN of the application.resource
: The name or ID of the resource of which the application will be associated.resource_type
: The type of resource of which the application will be associated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"options"
: Determines whether an application tag is applied or skipped.
Main.Service_Catalog_Appregistry.create_application
— Methodcreate_application(client_token, name)
create_application(client_token, name, params::Dict{String,<:Any})
Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.
Arguments
client_token
: A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.name
: The name of the application. The name must be unique in the region in which you are creating the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the application."tags"
: Key-value pairs you can use to associate with the application.
Main.Service_Catalog_Appregistry.create_attribute_group
— Methodcreate_attribute_group(attributes, client_token, name)
create_attribute_group(attributes, client_token, name, params::Dict{String,<:Any})
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.
Arguments
attributes
: A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.client_token
: A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.name
: The name of the attribute group.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The description of the attribute group that the user provides."tags"
: Key-value pairs you can use to associate with the attribute group.
Main.Service_Catalog_Appregistry.delete_application
— Methoddelete_application(application)
delete_application(application, params::Dict{String,<:Any})
Deletes an application that is specified either by its application ID, name, or ARN. All associated attribute groups and resources must be disassociated from it before deleting an application.
Arguments
application
: The name, ID, or ARN of the application.
Main.Service_Catalog_Appregistry.delete_attribute_group
— Methoddelete_attribute_group(attribute_group)
delete_attribute_group(attribute_group, params::Dict{String,<:Any})
Deletes an attribute group, specified either by its attribute group ID, name, or ARN.
Arguments
attribute_group
: The name, ID, or ARN of the attribute group that holds the attributes to describe the application.
Main.Service_Catalog_Appregistry.disassociate_attribute_group
— Methoddisassociate_attribute_group(application, attribute_group)
disassociate_attribute_group(application, attribute_group, params::Dict{String,<:Any})
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.
Arguments
application
: The name, ID, or ARN of the application.attribute_group
: The name, ID, or ARN of the attribute group that holds the attributes to describe the application.
Main.Service_Catalog_Appregistry.disassociate_resource
— Methoddisassociate_resource(application, resource, resource_type)
disassociate_resource(application, resource, resource_type, params::Dict{String,<:Any})
Disassociates a resource from application. Both the resource and the application can be specified either by ID or name. Minimum permissions You must have the following permissions to remove a resource that's been associated with an application using the APPLYAPPLICATIONTAG option for AssociateResource. tag:GetResources tag:UntagResources You must also have the following permissions if you don't use the AWSServiceCatalogAppRegistryFullAccess policy. For more information, see AWSServiceCatalogAppRegistryFullAccess in the AppRegistry Administrator Guide. resource-groups:DisassociateResource cloudformation:UpdateStack cloudformation:DescribeStacks In addition, you must have the tagging permission defined by the Amazon Web Services service that creates the resource. For more information, see UntagResources in the Resource Groups Tagging API Reference.
Arguments
application
: The name or ID of the application.resource
: The name or ID of the resource.resource_type
: The type of the resource that is being disassociated.
Main.Service_Catalog_Appregistry.get_application
— Methodget_application(application)
get_application(application, params::Dict{String,<:Any})
Retrieves metadata information about one of your applications. The application can be specified by its ARN, ID, or name (which is unique within one account in one region at a given point in time). Specify by ARN or 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.
Arguments
application
: The name, ID, or ARN of the application.
Main.Service_Catalog_Appregistry.get_associated_resource
— Methodget_associated_resource(application, resource, resource_type)
get_associated_resource(application, resource, resource_type, params::Dict{String,<:Any})
Gets the resource associated with the application.
Arguments
application
: The name, ID, or ARN of the application.resource
: The name or ID of the resource associated with the application.resource_type
: The type of resource associated with the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return. If the parameter is omitted, it defaults to 25. The value is optional."nextToken"
: A unique pagination token for each page of results. Make the call again with the returned token to retrieve the next page of results."resourceTagStatus"
: States whether an application tag is applied, not applied, in the process of being applied, or skipped.
Main.Service_Catalog_Appregistry.get_attribute_group
— Methodget_attribute_group(attribute_group)
get_attribute_group(attribute_group, params::Dict{String,<:Any})
Retrieves an attribute group by its ARN, ID, or name. The attribute group can be specified by its ARN, ID, or name.
Arguments
attribute_group
: The name, ID, or ARN of the attribute group that holds the attributes to describe the application.
Main.Service_Catalog_Appregistry.get_configuration
— Methodget_configuration()
get_configuration(params::Dict{String,<:Any})
Retrieves a TagKey configuration from an account.
Main.Service_Catalog_Appregistry.list_applications
— Methodlist_applications()
list_applications(params::Dict{String,<:Any})
Retrieves a list of all of your applications. Results are paginated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional."nextToken"
: The token to use to get the next page of results after a previous API call.
Main.Service_Catalog_Appregistry.list_associated_attribute_groups
— Methodlist_associated_attribute_groups(application)
list_associated_attribute_groups(application, params::Dict{String,<:Any})
Lists all attribute groups that are associated with specified application. Results are paginated.
Arguments
application
: The name or ID of the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional."nextToken"
: The token to use to get the next page of results after a previous API call.
Main.Service_Catalog_Appregistry.list_associated_resources
— Methodlist_associated_resources(application)
list_associated_resources(application, params::Dict{String,<:Any})
Lists all of the resources that are associated with the specified application. Results are paginated. 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.
Arguments
application
: The name, ID, or ARN of the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional."nextToken"
: The token to use to get the next page of results after a previous API call.
Main.Service_Catalog_Appregistry.list_attribute_groups
— Methodlist_attribute_groups()
list_attribute_groups(params::Dict{String,<:Any})
Lists all attribute groups which you have access to. Results are paginated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional."nextToken"
: The token to use to get the next page of results after a previous API call.
Main.Service_Catalog_Appregistry.list_attribute_groups_for_application
— Methodlist_attribute_groups_for_application(application)
list_attribute_groups_for_application(application, params::Dict{String,<:Any})
Lists the details of all attribute groups associated with a specific application. The results display in pages.
Arguments
application
: The name or ID of the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional."nextToken"
: This token retrieves the next page of results after a previous API call.
Main.Service_Catalog_Appregistry.list_tags_for_resource
— Methodlist_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})
Lists all of the tags on the resource.
Arguments
resource_arn
: The Amazon resource name (ARN) that specifies the resource.
Main.Service_Catalog_Appregistry.put_configuration
— Methodput_configuration(configuration)
put_configuration(configuration, params::Dict{String,<:Any})
Associates a TagKey configuration to an account.
Arguments
configuration
: Associates a TagKey configuration to an account.
Main.Service_Catalog_Appregistry.sync_resource
— Methodsync_resource(resource, resource_type)
sync_resource(resource, resource_type, params::Dict{String,<:Any})
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.
Arguments
resource
: An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an Amazon Web Services CloudFormation stack, or an Amazon S3 bucket.resource_type
: The type of resource of which the application will be associated.
Main.Service_Catalog_Appregistry.tag_resource
— Methodtag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})
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.
Arguments
resource_arn
: The Amazon resource name (ARN) that specifies the resource.tags
: The new or modified tags for the resource.
Main.Service_Catalog_Appregistry.untag_resource
— Methoduntag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})
Removes tags from a resource. This operation returns an empty response if the call was successful.
Arguments
resource_arn
: The Amazon resource name (ARN) that specifies the resource.tag_keys
: A list of the tag keys to remove from the specified resource.
Main.Service_Catalog_Appregistry.update_application
— Methodupdate_application(application)
update_application(application, params::Dict{String,<:Any})
Updates an existing application with new attributes.
Arguments
application
: The name, ID, or ARN of the application that will be updated.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"description"
: The new description of the application."name"
: Deprecated: The new name of the application. The name must be unique in the region in which you are updating the application. Please do not use this field as we have stopped supporting name updates.
Main.Service_Catalog_Appregistry.update_attribute_group
— Methodupdate_attribute_group(attribute_group)
update_attribute_group(attribute_group, params::Dict{String,<:Any})
Updates an existing attribute group with new details.
Arguments
attribute_group
: The name, ID, or ARN of the attribute group that holds the attributes to describe the application.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"attributes"
: A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components."description"
: The description of the attribute group that the user provides."name"
: Deprecated: The new name of the attribute group. The name must be unique in the region in which you are updating the attribute group. Please do not use this field as we have stopped supporting name updates.