12345678910111213141516171819 |
- from typing import Optional
- from pydantic import BaseModel, Field
- class GoogleCloudStorageConfig(BaseModel):
- """
- Google Cloud storage configs
- """
- GOOGLE_STORAGE_BUCKET_NAME: Optional[str] = Field(
- description='Google Cloud storage bucket name',
- default=None,
- )
- GOOGLE_STORAGE_SERVICE_ACCOUNT_JSON_BASE64: Optional[str] = Field(
- description='Google Cloud storage service account json base64',
- default=None,
- )
|