thousandeyes-sdk-python/instant_tests_api/docs/InstantTestRequest.md
2023-12-11 09:29:15 +00:00

1.4 KiB

InstantTestRequest

Properties

Name Type Description Notes
labels List[str] A list of test label identifiers (get `labelId` from `/labels` endpoint). [optional]
shared_with_accounts List[str] A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint). [optional]
agents **List[InstantTestRequestAgentsInner]** A list of objects with `agentId` (required) and `sourceIpAddress` (optional). [optional]

Example

from instant_tests_api.models.instant_test_request import InstantTestRequest

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

# convert the object into a dict
instant_test_request_dict = instant_test_request_instance.to_dict()
# create an instance of InstantTestRequest from a dict
instant_test_request_form_dict = instant_test_request.from_dict(instant_test_request_dict)

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