mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 17:35:30 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Instant Tests API
|
|
|
|
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
|
|
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
from __future__ import annotations
|
|
import json
|
|
from enum import Enum
|
|
from typing_extensions import Self
|
|
|
|
|
|
class TestProtocol(str, Enum):
|
|
"""
|
|
Protocol used by dependent network tests (end-to-end, path trace, PMTUD).
|
|
"""
|
|
|
|
"""
|
|
allowed enum values
|
|
"""
|
|
TCP = 'tcp'
|
|
ICMP = 'icmp'
|
|
UDP = 'udp'
|
|
UNKNOWN = 'unknown'
|
|
|
|
@classmethod
|
|
def from_json(cls, json_str: str) -> Self:
|
|
"""Create an instance of TestProtocol from a JSON string"""
|
|
return cls(json.loads(json_str))
|
|
|
|
@classmethod
|
|
def _missing_(cls, value):
|
|
"""Handle unknown values"""
|
|
return cls.UNKNOWN
|
|
|