Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 998 Bytes

File metadata and controls

29 lines (20 loc) · 998 Bytes

GenericInfraAlertRule

Properties

Name Type Description Notes
metric_group_by List[str]

Example

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]