Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.37 KB

File metadata and controls

33 lines (24 loc) · 1.37 KB

SyntheticCallRule

The list of custom rules for synthetic endpoints defined by the user.

Properties

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.

Example

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)

[Back to Model list] [Back to API list] [Back to README]