Tag Management
You can manage your resource Tags via the following endpoints:
- List all tags:
GET /v3/flexMetal/tags
- This will display all your tags with corresponding server count per tag.
- Remove a tag:
DELETE /v3/flexMetal/tags/{tag}
- The tag will be removed from the system and will be removed from all servers that have the associated tag.
- Rename a tag:
PATCH /v3/flexMetal/tags/{tag}
- This will rename the tag. Note that this renames the tag for all associated servers as well.
- The request body must be:
{ "tag": "my_renamed_tag" }
- Add a tag to a server:
POST /v3/flexMetal/servers/{uuid}/tag/{tag}
- Remove a tag from a server:
DELETE /v3/flexMetal/servers/{uuid}/tag/{tag}
Note
- Tags are case-sensitive.
- Tags can be up to 64 characters long and can contain only the following characters:
[A-Za-z0-9_:-]{1,64}
- A FlexMetal server can have up to 60 tags.