mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-27 04:16:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
43 lines
922 B
Python
43 lines
922 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Test Results API
|
|
|
|
Get test result metrics for Network and Application Synthetics tests.
|
|
|
|
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 TestDirection(str, Enum):
|
|
"""
|
|
Direction of the test, which affects how results are shown.
|
|
"""
|
|
|
|
"""
|
|
allowed enum values
|
|
"""
|
|
TO_MINUS_TARGET = 'to-target'
|
|
FROM_MINUS_TARGET = 'from-target'
|
|
BIDIRECTIONAL = 'bidirectional'
|
|
UNKNOWN = 'unknown'
|
|
|
|
@classmethod
|
|
def from_json(cls, json_str: str) -> Self:
|
|
"""Create an instance of TestDirection from a JSON string"""
|
|
return cls(json.loads(json_str))
|
|
|
|
@classmethod
|
|
def _missing_(cls, value):
|
|
"""Handle unknown values"""
|
|
return cls.UNKNOWN
|
|
|