Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

File metadata and controls

34 lines (25 loc) · 1.27 KB

CustomEntityModel

Properties

Name Type Description Notes
dashboards List[CustomDashboard] [optional]
dependencies List[CustomDependency] [optional]
identifiers List[str]
label str
metrics List[CustomMetric] [optional]
tag_filter_expression TagFilterExpressionElement

Example

from instana_client.models.custom_entity_model import CustomEntityModel

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

# convert the object into a dict
custom_entity_model_dict = custom_entity_model_instance.to_dict()
# create an instance of CustomEntityModel from a dict
custom_entity_model_from_dict = CustomEntityModel.from_dict(custom_entity_model_dict)

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