Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1019 Bytes

File metadata and controls

31 lines (22 loc) · 1019 Bytes

SloEntity

Entity of the Service Levels Objective Configuration, it could be either Application nor Website

Properties

Name Type Description Notes
tag_filter_expression TagFilterExpressionElement [optional]
type str

Example

from instana_client.models.slo_entity import SloEntity

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

# convert the object into a dict
slo_entity_dict = slo_entity_instance.to_dict()
# create an instance of SloEntity from a dict
slo_entity_from_dict = SloEntity.from_dict(slo_entity_dict)

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