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
This is the service levels metric type. Service levels objective alerts using <b>status</b> metric.
[optional]
Example
frominstana_client.models.service_level_objective_alert_ruleimportServiceLevelObjectiveAlertRule# TODO update the JSON string belowjson="{}"# create an instance of ServiceLevelObjectiveAlertRule from a JSON stringservice_level_objective_alert_rule_instance=ServiceLevelObjectiveAlertRule.from_json(json)
# print the JSON string representation of the objectprint(ServiceLevelObjectiveAlertRule.to_json())
# convert the object into a dictservice_level_objective_alert_rule_dict=service_level_objective_alert_rule_instance.to_dict()
# create an instance of ServiceLevelObjectiveAlertRule from a dictservice_level_objective_alert_rule_from_dict=ServiceLevelObjectiveAlertRule.from_dict(service_level_objective_alert_rule_dict)