thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/EndpointResultRequestFilter.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.7 KiB

EndpointResultRequestFilter

Properties

Name Type Description Notes
location List[str] Location of the endpoint agent. [optional]
connection **List[InterfaceHardwareType]** [optional]
platform **List[Platform]** [optional]
gateway List[str] Endpoint agent default gateway IP address. [optional]
proxy_target List[str] Endpoint agent proxy IP address. [optional]
vpn_target List[str] Endpoint agent VPN endpoint IP address. [optional]
agent_id List[str] Endpoint agent ID. [optional]
network_id List[str] Network ID. [optional]
ssid List[str] WiFi SSID. [optional]
bssid List[str] WiFi BSSID. [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.endpoint_result_request_filter import EndpointResultRequestFilter

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

# convert the object into a dict
endpoint_result_request_filter_dict = endpoint_result_request_filter_instance.to_dict()
# create an instance of EndpointResultRequestFilter from a dict
endpoint_result_request_filter_from_dict = EndpointResultRequestFilter.from_dict(endpoint_result_request_filter_dict)

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