Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

File metadata and controls

30 lines (21 loc) · 1.33 KB

TagCatalog

Properties

Name Type Description Notes
tag_tree List[TagTreeLevel] The name of the tag dataset (tagTree) which can contain one or more tags as its attributes or children. Eg: `Call`. Consider this as the root of the tree where it has tags as attributes or children.
tags List[Tag] 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.

Example

from instana_client.models.tag_catalog import TagCatalog

# TODO update the JSON string below
json = "{}"
# create an instance of TagCatalog from a JSON string
tag_catalog_instance = TagCatalog.from_json(json)
# print the JSON string representation of the object
print(TagCatalog.to_json())

# convert the object into a dict
tag_catalog_dict = tag_catalog_instance.to_dict()
# create an instance of TagCatalog from a dict
tag_catalog_from_dict = TagCatalog.from_dict(tag_catalog_dict)

[Back to Model list] [Back to API list] [Back to README]