The list of custom rules for synthetic endpoints defined by the user.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | A description of the custom rule. For example, one can mention the reason behind having the custom rule. | [optional] |
| enabled | bool | A flag to enable/disable the custom synthetic endpoint configurations defined by the user. | [optional] |
| match_specification | MatchExpressionDTO | ||
| name | str | The name of the custom rule for Synthetic endpoints. |
from instana_client.models.synthetic_call_rule import SyntheticCallRule
# TODO update the JSON string below
json = "{}"
# create an instance of SyntheticCallRule from a JSON string
synthetic_call_rule_instance = SyntheticCallRule.from_json(json)
# print the JSON string representation of the object
print(SyntheticCallRule.to_json())
# convert the object into a dict
synthetic_call_rule_dict = synthetic_call_rule_instance.to_dict()
# create an instance of SyntheticCallRule from a dict
synthetic_call_rule_from_dict = SyntheticCallRule.from_dict(synthetic_call_rule_dict)