thousandeyes-sdk-python/thousandeyes-sdk-administrative/docs/SimpleAgentAllOfNetworkProviderInfo.md
2026-05-28 16:31:37 +00:00

1.4 KiB

SimpleAgentAllOfNetworkProviderInfo

Properties

Name Type Description Notes
asn int Autonomous System Number (ASN) announcing the agent's public IP prefix. [optional] [readonly]
name str Name of the network provider organization. [optional] [readonly]
type NetworkProviderType [optional]

Example

from thousandeyes_sdk.administrative.models.simple_agent_all_of_network_provider_info import SimpleAgentAllOfNetworkProviderInfo

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

# convert the object into a dict
simple_agent_all_of_network_provider_info_dict = simple_agent_all_of_network_provider_info_instance.to_dict()
# create an instance of SimpleAgentAllOfNetworkProviderInfo from a dict
simple_agent_all_of_network_provider_info_from_dict = SimpleAgentAllOfNetworkProviderInfo.from_dict(simple_agent_all_of_network_provider_info_dict)

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