====== Models ====== .. code:: python from typing import Any, Dict, List, Literal, Optional, Union AppsHealth = Literal["fair", "good", "poor"] DevicesHealth = Literal["fair", "good", "poor"] SiteHealth = Literal["fair", "good", "poor"] TunnelsHealth = Literal["fair", "good", "poor"] HealthParam = Literal["FAIR", "GOOD", "POOR"] DeviceTypeParam = Literal["all", "controller", "vedge"] class SiteHealthItem: apps_health: ( AppsHealth # pytype: disable=annotation-type-mismatch ) apps_usage: int devices_health: ( DevicesHealth # pytype: disable=annotation-type-mismatch ) site_health: ( SiteHealth # pytype: disable=annotation-type-mismatch ) site_id: str tunnels_health: ( TunnelsHealth # pytype: disable=annotation-type-mismatch )