| 12345678910111213141516171819202122232425262728293031323334 | from typing import Optionalfrom pydantic import BaseModel, Field, PositiveIntclass OpenSearchConfigs(BaseModel):    """    OpenSearch configs    """    OPENSEARCH_HOST: Optional[str] = Field(        description='OpenSearch host',        default=None,    )    OPENSEARCH_PORT: PositiveInt = Field(        description='OpenSearch port',        default=9200,    )    OPENSEARCH_USER: Optional[str] = Field(        description='OpenSearch user',        default=None,    )    OPENSEARCH_PASSWORD: Optional[str] = Field(        description='OpenSearch password',        default=None,    )    OPENSEARCH_SECURE: bool = Field(        description='whether to use SSL connection for OpenSearch',        default=False,    )
 |