PHP Class Scalr\Service\Aws\Ec2\Handler\TagHandler

Since: 23.01.2013
Author: Vitaliy Demidov ([email protected])
Inheritance: extends Scalr\Service\Aws\Ec2\AbstractEc2Handler
Mostra file Open project: scalr/scalr

Public Methods

Method Description
create ( ListDataType | array | string $resourceIdList, Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array $tagList ) : boolean CreateTags action
delete ( ListDataType | array | string $resourceIdList, Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array $tagList ) : boolean DeleteTags action

Method Details

create() public method

Adds or overwrites one or more tags for the specified EC2 resource or resources. Each resource can have a maximum of 10 tags. Each tag consists of a key and optional value. Tag keys must be unique per resource.
public create ( ListDataType | array | string $resourceIdList, Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array $tagList ) : boolean
$resourceIdList Scalr\Service\Aws\DataType\ListDataType | array | string The ID of a resource to tag. For example, ami-1a2b3c4d. You can specify multiple resources to assign the tags to.
$tagList Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array The key/value pair list of the Tags.
return boolean Returns true on success or throws an exception otherwise

delete() public method

Deletes a specific set of tags from a specific set of resources. This call is designed to follow a DescribeTags call. You first determine what tags a resource has, and then you call DeleteTags with the resource ID and the specific tags you want to delete.
public delete ( ListDataType | array | string $resourceIdList, Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array $tagList ) : boolean
$resourceIdList Scalr\Service\Aws\DataType\ListDataType | array | string The ID of a resource to tag. For example, ami-1a2b3c4d. You can specify multiple resources to assign the tags to.
$tagList Scalr\Service\Aws\Ec2\DataType\ResourceTagSetList | ResourceTagSetData | array The key/value pair list of the Tags.
return boolean Returns true on success or throws an exception otherwise