zhu.boxiang 4d9b577007 refactor: Refactor schemas
1. adjust setting schemas
2. adjust prometheus schemas
3. adjust policy schemas
4. adjust policy_manager schemas
5. adjust login schemas
6. remove some invalid model
7. update the swagger.json file

Change-Id: I6b513498999f1c56481107ca78df656e4c8b38cb
2022-07-13 15:21:51 +08:00

50 lines
1.5 KiB
Python

from __future__ import annotations
from typing import Any, Dict, List, Optional
from pydantic import BaseModel, Field
class PrometheusQueryResultBase(BaseModel):
metric: Dict[str, str] = Field(..., description="Prometheus metric")
value: List[Any] = Field(..., description="Prometheus metric value")
class PrometheusQueryDataBase(BaseModel):
resultType: str = Field(..., description="Prometheus result type")
class PrometheusResponseBase(BaseModel):
status: str = Field(..., description="Prometheus status")
errorType: Optional[str] = Field(None, description="Prometheus error type")
error: Optional[str] = Field(None, description="Prometheus error")
warnings: Optional[str] = Field(None, description="Prometheus warnings")
class PrometheusQueryResult(PrometheusQueryResultBase):
""""""
class PrometheusQueryData(PrometheusQueryDataBase):
result: List[PrometheusQueryResult] = Field(..., description="Prometheus query result")
class PrometheusQueryResponse(PrometheusResponseBase):
data: Optional[PrometheusQueryData] = Field(None, description="Prometheus query data")
class PrometheusQueryRangeResult(PrometheusQueryResultBase):
""""""
class PrometheusQueryRangeData(PrometheusQueryDataBase):
result: List[PrometheusQueryRangeResult] = Field(
..., description="Prometheus query range result"
)
class PrometheusQueryRangeResponse(PrometheusResponseBase):
data: Optional[PrometheusQueryRangeData] = Field(
None, description="Prometheus query range data"
)