List of queryable tags available in a tagTree. Eg: call.erroneous. Consider these tags as attributes of a tagTree. Eg: Call tagTree has have Erroneous, Call name, Latency etc as attributes.
| Name | Type | Description | Notes |
|---|---|---|---|
| aliases | List[str] | List of other names that can refer to this tag | [optional] |
| availability | List[str] | List of product areas this tag is available in | [optional] |
| can_apply_to_destination | bool | Whether the tag is available for destination or not. If source and destination is false, it means the tag is independent of source and destination. Eg: of such tag is `call.http.path`. | [optional] |
| can_apply_to_source | bool | Whether the tag is available for source or not. If source and destination is false, it means the tag is independent of source and destination. Eg: of such tag is `call.http.path`. | [optional] |
| description | str | The description of the tag if it is provided. | [optional] |
| id_tag | bool | Whether the Tag is a unique ID or not. Eg: `idTag` for `endpoint.id` is true but for `call.rpc.method` it is false. | [optional] |
| label | str | The name of the tag which is seen in the UI. Eg: `Call name` | [optional] |
| name | str | The name of the tag. Eg: `call.name` | |
| type | str | The data type of the tag. Eg: `call.name` accepts `STRING` value. |
from instana_client.models.tag import Tag
# TODO update the JSON string below
json = "{}"
# create an instance of Tag from a JSON string
tag_instance = Tag.from_json(json)
# print the JSON string representation of the object
print(Tag.to_json())
# convert the object into a dict
tag_dict = tag_instance.to_dict()
# create an instance of Tag from a dict
tag_from_dict = Tag.from_dict(tag_dict)