Interface TagsService.AddRequest

  • All Superinterfaces:
    Request<TagsService.AddRequest,​TagsService.AddResponse>
    Enclosing interface:
    TagsService

    public static interface TagsService.AddRequest
    extends Request<TagsService.AddRequest,​TagsService.AddResponse>
    Add a new tag to the system. For example, to add new tag with name `mytag` to the system send a request like this: .... POST /ovirt-engine/api/tags .... With a request body like this: [source,xml] ---- mytag ---- NOTE: The root tag is a special pseudo-tag assumed as the default parent tag if no parent tag is specified. The root tag cannot be deleted nor assigned a parent tag. To create new tag with specific parent tag send a request body like this: [source,xml] ---- mytag myparenttag ----