mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 17:36:51 +00:00
1.4 KiB
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.agents.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)