You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of the Service Level Indicator (SLI) specified during its creation
Example
frominstana_client.models.sli_configuration_with_last_updatedimportSliConfigurationWithLastUpdated# TODO update the JSON string belowjson="{}"# create an instance of SliConfigurationWithLastUpdated from a JSON stringsli_configuration_with_last_updated_instance=SliConfigurationWithLastUpdated.from_json(json)
# print the JSON string representation of the objectprint(SliConfigurationWithLastUpdated.to_json())
# convert the object into a dictsli_configuration_with_last_updated_dict=sli_configuration_with_last_updated_instance.to_dict()
# create an instance of SliConfigurationWithLastUpdated from a dictsli_configuration_with_last_updated_from_dict=SliConfigurationWithLastUpdated.from_dict(sli_configuration_with_last_updated_dict)