# 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