Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

ICMPConfiguration

Properties

Name Type Description Notes
packet_count int [optional]
packet_interval str [optional]
packet_size int [optional]
packet_timeout str [optional]
target_host str
use_dns bool [optional]
use_ipv6 bool [optional]
validation_rules List[ICMPValidation] [optional]

Example

from instana_client.models.icmp_configuration import ICMPConfiguration

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

# convert the object into a dict
icmp_configuration_dict = icmp_configuration_instance.to_dict()
# create an instance of ICMPConfiguration from a dict
icmp_configuration_from_dict = ICMPConfiguration.from_dict(icmp_configuration_dict)

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