| Name |
Type |
Description |
Notes |
| metric_group_by |
List[str] |
|
|
from instana_client.models.generic_infra_alert_rule import GenericInfraAlertRule
# TODO update the JSON string below
json = "{}"
# create an instance of GenericInfraAlertRule from a JSON string
generic_infra_alert_rule_instance = GenericInfraAlertRule.from_json(json)
# print the JSON string representation of the object
print(GenericInfraAlertRule.to_json())
# convert the object into a dict
generic_infra_alert_rule_dict = generic_infra_alert_rule_instance.to_dict()
# create an instance of GenericInfraAlertRule from a dict
generic_infra_alert_rule_from_dict = GenericInfraAlertRule.from_dict(generic_infra_alert_rule_dict)
[Back to Model list] [Back to API list] [Back to README]