thousandeyes-sdk-python/thousandeyes-sdk-endpoint-tests/docs/EndpointInstantTest.md
Miguel Pragosa e4068d6142
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#119)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-12-02 11:32:03 +00:00

35 lines
1.7 KiB
Markdown

# EndpointInstantTest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**agent_selector_type** | [**EndpointTestAgentSelectorType**](EndpointTestAgentSelectorType.md) | | [optional]
**agents** | **List[str]** | List of endpoint agent IDs (obtained from &#x60;/endpoint/agents&#x60; endpoint). Required when &#x60;agentSelectorType&#x60; is set to &#x60;specific-agent&#x60;. | [optional]
**endpoint_agent_labels** | **List[str]** | List of endpoint agent label IDs (obtained from &#x60;/endpoint/labels&#x60; endpoint), required when &#x60;agentSelectorType&#x60; is set to &#x60;agent-labels&#x60;. | [optional]
**max_machines** | **int** | Maximum number of agents which can execute the test. | [optional] [default to 25]
**test_name** | **str** | Name of the test. |
**ip_version** | [**EndpointIpVersionIn**](EndpointIpVersionIn.md) | | [optional]
## Example
```python
from thousandeyes_sdk.endpoint_tests.models.endpoint_instant_test import EndpointInstantTest
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointInstantTest from a JSON string
endpoint_instant_test_instance = EndpointInstantTest.from_json(json)
# print the JSON string representation of the object
print(EndpointInstantTest.to_json())
# convert the object into a dict
endpoint_instant_test_dict = endpoint_instant_test_instance.to_dict()
# create an instance of EndpointInstantTest from a dict
endpoint_instant_test_from_dict = EndpointInstantTest.from_dict(endpoint_instant_test_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)