tag_resource_delete function

Untag a resource

Untag a resource

tag_resource_delete( name, resource_id = NULL, resource_type = "droplet", resources = NULL, ... )

Arguments

  • name: (character) Name of the tag
  • resource_id: (integer) a droplet id
  • resource_type: (character) only "droplet" for now. Default: "droplet"
  • resources: (list) instead of resource_id and resource_type you can pass in a list to this parameter. see examples
  • ...: Additional options passed down to DELETE

Returns

logical, TRUE if successful

Examples

## Not run: d <- droplet_create() tag_resource(name = "stuffthings", resource_id = d$id, resource_type = "droplet") ## same as this because only allowed resource type right now is "droplet" # tag_resource(name = "stuffthings", resource_id = d$id) tag_resource_delete(name = "stuffthings", resource_id = d$id, resource_type = "droplet") ## End(Not run)
  • Maintainer: Mauricio Vargas
  • License: Apache License (>= 2)
  • Last published: 2023-04-19