thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/NetworkInterface.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.5 KiB

NetworkInterface

Properties

Name Type Description Notes
ip_address str Network IP address. [optional] [readonly]
subnet_mask str Network subnet mask - only for IPv4. [optional] [readonly]
public_ip_address str Network public IP address. [optional] [readonly]
local_prefix str Network local prefix. [optional] [readonly]
public_ip_range str Network public IP range. [optional] [readonly]
dns_servers List[str] Network DNS servers. [optional] [readonly]
hardware_type InterfaceHardwareType [optional]
interface_name str Network interface name. [optional] [readonly]

Example

from thousandeyes_sdk.endpoint_test_results.models.network_interface import NetworkInterface

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

# convert the object into a dict
network_interface_dict = network_interface_instance.to_dict()
# create an instance of NetworkInterface from a dict
network_interface_from_dict = NetworkInterface.from_dict(network_interface_dict)

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