Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 854 Bytes

File metadata and controls

30 lines (21 loc) · 854 Bytes

SliEntity

Entity Type of the SLI Configuration

Properties

Name Type Description Notes
sli_type str

Example

from instana_client.models.sli_entity import SliEntity

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

# convert the object into a dict
sli_entity_dict = sli_entity_instance.to_dict()
# create an instance of SliEntity from a dict
sli_entity_from_dict = SliEntity.from_dict(sli_entity_dict)

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