# The EntityTagAssignment object

Represents a tag assignment to an entity

## Attributes

- `entity_name` (string)
  The fully qualified name of the entity to which the tag is assigned
- `tag_key` (string)
  The key of the tag
- `tag_value` (string)
  The value of the tag
- `entity_type` (string)
  The type of the entity to which the tag is assigned.
- `update_time` (string)
  The timestamp when the tag assignment was last updated
- `updated_by` (string)
  The user or principal who updated the tag assignment
- `source_type` (string)
  The source type of the tag assignment, e.g., user-assigned or system-assigned
  Possible values: `TAG_ASSIGNMENT_SOURCE_TYPE_UNSPECIFIED`, `TAG_ASSIGNMENT_SOURCE_TYPE_SYSTEM_DATA_CLASSIFICATION`

## Example

```json
{
  "entity_name": "string",
  "tag_key": "string",
  "tag_value": "string",
  "entity_type": "string",
  "update_time": "string",
  "updated_by": "string",
  "source_type": "string"
}
```


