Nurama Developers

tag_asset

Apply a tag to an asset.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Apply a tag to an asset. The tag must already exist on the asset's owning resource (typically the project) — see list_tags / create_tag to look up or mint one.

Input

PropertyTypeRequiredDescription
assetIdstringyesUUID of the asset.
tagIdstringyesUUID of the tag to apply.

JSON Schema

{
  "type": "object",
  "properties": {
    "assetId": {
      "type": "string",
      "description": "UUID of the asset."
    },
    "tagId": {
      "type": "string",
      "description": "UUID of the tag to apply."
    }
  },
  "required": [
    "assetId",
    "tagId"
  ],
  "additionalProperties": false
}

On this page