Interface TagService.UpdateRequest

  • All Superinterfaces:
    Request<TagService.UpdateRequest,​TagService.UpdateResponse>
    Enclosing interface:
    TagService

    public static interface TagService.UpdateRequest
    extends Request<TagService.UpdateRequest,​TagService.UpdateResponse>
    Updates the tag entity. For example to update parent tag to tag with id `456` of the tag with id `123` send a request like this: .... PUT /ovirt-engine/api/tags/123 .... With request body like: [source,xml] ---- ---- You may also specify a tag name instead of id. For example to update parent tag to tag with name `mytag` of the tag with id `123` send a request like this: [source,xml] ---- mytag ----