Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.36 KB

File metadata and controls

34 lines (25 loc) · 1.36 KB

SyntheticTypeConfiguration

Synthetic test configuration that is unique to a synthetic type. Valid types are BrowserScript, DNS, HTTPAction, HTTPScript, SSLCertificate, WebpageAction, and WebpageScript.

Properties

Name Type Description Notes
mark_synthetic_call bool
retries int [optional]
retry_interval int [optional]
synthetic_type str
timeout str [optional]

Example

from instana_client.models.synthetic_type_configuration import SyntheticTypeConfiguration

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

# convert the object into a dict
synthetic_type_configuration_dict = synthetic_type_configuration_instance.to_dict()
# create an instance of SyntheticTypeConfiguration from a dict
synthetic_type_configuration_from_dict = SyntheticTypeConfiguration.from_dict(synthetic_type_configuration_dict)

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