Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.56 KB

File metadata and controls

34 lines (25 loc) · 1.56 KB

SliConfigurationWithLastUpdated

Properties

Name Type Description Notes
id str Unique ID for each SLI
initial_evaluation_timestamp int Initial evaluation timestamp in milliseconds (13-digit) [optional]
last_updated int Last Updated timestamp in milliseconds (13-digit) [optional]
metric_configuration MetricConfiguration [optional]
sli_entity SliEntity
sli_name str The name of the Service Level Indicator (SLI) specified during its creation

Example

from instana_client.models.sli_configuration_with_last_updated import SliConfigurationWithLastUpdated

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

# convert the object into a dict
sli_configuration_with_last_updated_dict = sli_configuration_with_last_updated_instance.to_dict()
# create an instance of SliConfigurationWithLastUpdated from a dict
sli_configuration_with_last_updated_from_dict = SliConfigurationWithLastUpdated.from_dict(sli_configuration_with_last_updated_dict)

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