mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
|
|
||
|---|---|---|
| .. | ||
| .openapi-generator | ||
| docs | ||
| src/thousandeyes_sdk/endpoint_test_results | ||
| test | ||
| .openapi-generator-ignore | ||
| MANIFEST.in | ||
| pyproject.toml | ||
| README.md | ||
| setup.cfg | ||
thousandeyes-sdk-endpoint-test-results
Retrieve results for scheduled and dynamic tests on endpoint agents.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 7.0.14
- Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
Requirements.
Python 3.8+
Installation & Usage
pip install
Install directly via PyPi:
pip install thousandeyes-sdk-endpoint-test-results
(you may need to run pip with root permission: sudo pip install thousandeyes-sdk-endpoint-test-results)
Then import the package:
import thousandeyes_sdk.endpoint_test_results
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import thousandeyes_sdk.endpoint_test_results
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import thousandeyes_sdk.core
import thousandeyes_sdk.endpoint_test_results
from thousandeyes_sdk.core.exceptions import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.thousandeyes.com
# See configuration.py for a list of all supported configuration parameters.
configuration = thousandeyes_sdk.core.Configuration(
host = "https://api.thousandeyes.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: BearerAuth
configuration = thousandeyes_sdk.core.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with thousandeyes_sdk.core.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = thousandeyes_sdk.endpoint_test_results.LocalNetworkTestsResultsApi(api_client)
aid = '1234' # str | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. (optional)
window = '12h' # str | A dynamic time interval up to the current time of the request. Specify the interval as a number followed by an optional type: `s` for seconds (default if no type is specified), `m` for minutes, `h` for hours, `d` for days, and `w` for weeks. For a precise date range, use `startDate` and `endDate`. (optional)
start_date = '2022-07-17T22:00:54Z' # datetime | Use with the `endDate` parameter. Include the complete time (hours, minutes, and seconds) in UTC time zone, following the ISO 8601 date-time format. See the example for reference. Please note that this parameter can't be used with `window`. (optional)
end_date = '2022-07-18T22:00:54Z' # datetime | Defaults to current time the request is made. Use with the `startDate` parameter. Include the complete time (hours, minutes, and seconds) in UTC time zone, following the ISO 8601 date-time format. See the example for reference. Please note that this parameter can't be used with `window`. (optional)
cursor = 'cursor_example' # str | (Optional) Opaque cursor used for pagination. Clients should use `next` value from `_links` instead of this parameter. (optional)
endpoint_network_topology_result_request = thousandeyes_sdk.endpoint_test_results.EndpointNetworkTopologyResultRequest() # EndpointNetworkTopologyResultRequest | (optional)
try:
# List endpoint network topologies probes
api_response = api_instance.filter_local_networks_test_results_topologies(aid=aid, window=window, start_date=start_date, end_date=end_date, cursor=cursor, endpoint_network_topology_result_request=endpoint_network_topology_result_request)
print("The response of LocalNetworkTestsResultsApi->filter_local_networks_test_results_topologies:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling LocalNetworkTestsResultsApi->filter_local_networks_test_results_topologies: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.thousandeyes.com
| Class | Method | HTTP request | Description |
|---|---|---|---|
| LocalNetworkTestsResultsApi | filter_local_networks_test_results_topologies | POST /v7/endpoint/test-results/local-networks/topologies/filter | List endpoint network topologies probes |
| LocalNetworkTestsResultsApi | get_local_networks_test_results | GET /v7/endpoint/test-results/local-networks | List local networks |
| LocalNetworkTestsResultsApi | get_local_networks_test_results_topology | GET /v7/endpoint/test-results/local-networks/topologies/{networkTopologyId} | Retrieve endpoint local network topology |
| NetworkDynamicTestsResultsApi | filter_dynamic_test_network_results | POST /v7/endpoint/test-results/dynamic-tests/{testId}/network/filter | Retrieve network dynamic test results |
| NetworkDynamicTestsResultsApi | get_dynamic_test_path_vis_agent_round_results | GET /v7/endpoint/test-results/dynamic-tests/{testId}/path-vis/agent/{agentId}/round/{roundId} | Retrieve path visualization network dynamic test results details |
| NetworkDynamicTestsResultsApi | get_dynamic_test_path_vis_results | GET /v7/endpoint/test-results/dynamic-tests/{testId}/path-vis | Retrieve path visualization network dynamic test results |
| NetworkScheduledTestsResultsApi | filter_scheduled_test_network_results | POST /v7/endpoint/test-results/scheduled-tests/{testId}/network/filter | Retrieve network scheduled test results |
| NetworkScheduledTestsResultsApi | filter_scheduled_tests_network_results | POST /v7/endpoint/test-results/scheduled-tests/network/filter | Retrieve network scheduled test results from multiple tests |
| NetworkScheduledTestsResultsApi | get_scheduled_test_path_vis_agent_round_results | GET /v7/endpoint/test-results/scheduled-tests/{testId}/path-vis/agent/{agentId}/round/{roundId} | Retrieve path visualization network scheduled test results details |
| NetworkScheduledTestsResultsApi | get_scheduled_test_path_vis_results | GET /v7/endpoint/test-results/scheduled-tests/{testId}/path-vis | Retrieve path visualization network scheduled test results |
| RealUserTestsResultsApi | filter_real_user_tests_network_results | POST /v7/endpoint/test-results/real-user-tests/networks/filter | List endpoint real user tests |
| RealUserTestsResultsApi | filter_real_user_tests_results | POST /v7/endpoint/test-results/real-user-tests/filter | List endpoint real user tests |
| RealUserTestsResultsApi | filter_real_user_tests_visited_pages_results | POST /v7/endpoint/test-results/real-user-tests/pages/filter | List endpoint real user tests visited pages |
| RealUserTestsResultsApi | get_real_user_test_page_results | GET /v7/endpoint/test-results/real-user-tests/{id}/pages/{pageId} | Retrieve endpoint real user test page |
| RealUserTestsResultsApi | get_real_user_test_results | GET /v7/endpoint/test-results/real-user-tests/{id} | Retrieve endpoint real user test |
| WebHTTPServerScheduledTestResultsApi | get_http_server_scheduled_test_results | GET /v7/endpoint/test-results/scheduled-tests/{testId}/http-server | Retrieve HTTP server scheduled test results |
| WebHTTPServerScheduledTestResultsApi | get_multi_test_filtered_http_server_scheduled_test_results | POST /v7/endpoint/test-results/scheduled-tests/http-server/filter | Filter HTTP server scheduled test results |
Documentation For Models
- AlertDirection
- AlertRoundsViolationMode
- AlertRule
- AlertType
- ApplicationScoreQuality
- AsnDetails
- ConditionalOperator
- CpuUtilization
- DynamicBaseTestResult
- DynamicTest
- DynamicTestLinks
- DynamicTestSelfLink
- DynamicTestWebex
- DynamicTestsDataRoundSearch
- DynamicTestsDataSearchFilter
- EndpointAgentLabelsSelectorConfig
- EndpointAgentSelectorConfig
- EndpointAgentToServerTest
- EndpointAllAgentsSelectorConfig
- EndpointBrowser
- EndpointHttpDataPointScore
- EndpointHttpServerBaseTest
- EndpointHttpServerTest
- EndpointNetworkTopologyResultRequest
- EndpointNetworkTopologyResultRequestFilter
- EndpointPingDataPointScore
- EndpointRealUserTest
- EndpointRealUserTestBase
- EndpointRealUserTestDetail
- EndpointRealUserTestDetailResults
- EndpointRealUserTestResultRequestFilter
- EndpointRealUserTestResults
- EndpointRealUserTestResultsRequest
- EndpointResultRequestFilter
- EndpointScheduledTest
- EndpointScheduledTestType
- EndpointSpecificAgentsSelectorConfig
- EndpointTest
- EndpointTestAuthType
- EndpointTestLinks
- EndpointTestProtocol
- EndpointTestResultProtocol
- EndpointTestSelfLink
- Error
- EthernetProfile
- Expand
- GatewayNetworkPing
- Hop
- HttpErrorType
- HttpMultiTestResults
- HttpTestResult
- HttpTestResultHeaders
- HttpTestResults
- HttpTestsDataRoundsSearch
- HttpTestsDataSearchFilter
- HttpTestsDataSearchSort
- HttpTestsDataSearchSortKey
- HttpTestsDataThresholdFilter
- HttpTestsDataThresholdFilters
- HttpThresholdFilterName
- InterfaceHardwareType
- Link
- LocalNetworkResult
- LocalNetworkResults
- LocalNetworkTopologyDetailResults
- LocalNetworkTopologyResult
- LocalNetworkTopologyResultBase
- LocalNetworkTopologyResults
- MultiTestIdNetworkTestResults
- MultiTestIdTestsDataRoundsSearch
- MultiTestIdTestsDataSearchFilter
- NetworkDynamicTestResult
- NetworkDynamicTestResults
- NetworkInterface
- NetworkMetrics
- NetworkPing
- NetworkProfile
- NetworkProxy
- NetworkProxyProfile
- NetworkTestResult
- NetworkTestResults
- NetworkTopologyType
- NetworkWirelessProfile
- PaginationNextAndSelfLink
- PaginationNextLink
- PathVisBaseTestResult
- PathVisDetailDynamicTestResult
- PathVisDetailDynamicTestResults
- PathVisDetailTestResult
- PathVisDetailTestResults
- PathVisDynamicTestResult
- PathVisDynamicTestResults
- PathVisEndpoint
- PathVisHop
- PathVisRoute
- PathVisTestResult
- PathVisTestResults
- PhysicalMemoryUsedBytes
- Platform
- RealUserTestCoordinates
- RealUserTestNetwork
- RealUserTestNetworkResult
- RealUserTestNetworkResults
- RealUserTestPage
- RealUserTestPageDetailResult
- RealUserTestPageResult
- RealUserTestPageResults
- RealUserTestPageTimings
- SelfLinks
- Severity
- SortOrder
- SystemMetrics
- TargetNetworkPing
- TargetProfile
- TargetTraceroute
- TcpConnect
- TcpPathTraceModeResponse
- TestInterval
- TestLabel
- TestProbeModeResponse
- TestProtocol
- TestResult
- TestSslVersionId
- TestsDataRoundsSearch
- TestsDataSearchFilter
- TestsDataSearchSort
- TestsDataSearchSortKey
- TestsDataThresholdFilter
- TestsDataThresholdFilters
- ThresholdFilterName
- ThresholdFilterOperator
- Traceroute
- TracerouteHop
- Trigger
- UdpPathTraceModeResponse
- UdpProbeModeResponse
- UnauthorizedError
- ValidationError
- ValidationErrorItem
- VpnNetworkPing
- VpnProfile
- VpnTraceroute
- VpnType
Documentation For Authorization
Authentication schemes defined for the API:
BearerAuth
- Type: Bearer authentication