mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-05 17:16:53 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Endpoint Agents API
|
|
|
|
**Note:** The Endpoint Agents Transfer APIs are not available for ThousandEyes for Government instance. Manage ThousandEyes Endpoint Agents using this API. For more information about Endpoint Agents, see [Endpoint Agents](https://docs.thousandeyes.com/product-documentation/global-vantage-points/endpoint-agents).
|
|
|
|
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 Platform(str, Enum):
|
|
"""
|
|
OS platform types. Platform \"linux\" was recently renamed to \"roomos\".
|
|
"""
|
|
|
|
"""
|
|
allowed enum values
|
|
"""
|
|
WINDOWS = 'windows'
|
|
ROOMOS = 'roomos'
|
|
PHONEOS = 'phoneos'
|
|
ELUX = 'elux'
|
|
CISCO_MINUS_WIRELESS = 'cisco-wireless'
|
|
CISCO_MINUS_WIRELESS_MINUS_CLOUD = 'cisco-wireless-cloud'
|
|
LINUX = 'linux'
|
|
MAC = 'mac'
|
|
ANDROID = 'android'
|
|
UNKNOWN = 'unknown'
|
|
|
|
@classmethod
|
|
def from_json(cls, json_str: str) -> Self:
|
|
"""Create an instance of Platform from a JSON string"""
|
|
return cls(json.loads(json_str))
|
|
|
|
@classmethod
|
|
def _missing_(cls, value):
|
|
"""Handle unknown values"""
|
|
return cls.UNKNOWN
|
|
|