Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.42 KB

File metadata and controls

36 lines (27 loc) · 1.42 KB

ICMPConfigurationUpdate

Properties

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

Example

from instana_client.models.icmp_configuration_update import ICMPConfigurationUpdate

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

# convert the object into a dict
icmp_configuration_update_dict = icmp_configuration_update_instance.to_dict()
# create an instance of ICMPConfigurationUpdate from a dict
icmp_configuration_update_from_dict = ICMPConfigurationUpdate.from_dict(icmp_configuration_update_dict)

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