thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/src/thousandeyes_sdk/endpoint_agents/models/platform.py
Miguel Pragosa 7e7c1c4c0a
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#164)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-07-23 12:14:38 +01:00

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