Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

SyntheticCallConfig

Properties

Name Type Description Notes
custom_rules List[SyntheticCallRule] The list of custom rules for synthetic endpoints defined by the user.
default_rules_enabled bool A flag to enable/disable the default synthetic endpoint configurations defined by Instana. [optional]

Example

from instana_client.models.synthetic_call_config import SyntheticCallConfig

# TODO update the JSON string below
json = "{}"
# create an instance of SyntheticCallConfig from a JSON string
synthetic_call_config_instance = SyntheticCallConfig.from_json(json)
# print the JSON string representation of the object
print(SyntheticCallConfig.to_json())

# convert the object into a dict
synthetic_call_config_dict = synthetic_call_config_instance.to_dict()
# create an instance of SyntheticCallConfig from a dict
synthetic_call_config_from_dict = SyntheticCallConfig.from_dict(synthetic_call_config_dict)

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