sdk/python/shroomdk/models/query.py
2022-07-25 15:36:37 -04:00

17 lines
819 B
Python

from typing import Optional, Union
from pydantic import BaseModel, Field
class Query(BaseModel):
sql: str = Field(None, description="SQL query to execute")
ttl_minutes: Optional[int] = Field(None, description="The number of minutes to cache the query results")
timeout_minutes: Optional[int] = Field(None, description="The number of minutes to timeout the query")
retry_interval_seconds: Optional[Union[int, float]] = Field(1, description="The number of seconds to use between retries")
cached: Optional[bool] = Field(
None,
description="An override on the cache. A value of true will Re-Execute the query.",
)
page_size: int = Field(None, description="The number of results to return per page")
page_number: int = Field(None, description="The page number to return")