mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
bab4975809
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class OCIStorageConfig(BaseSettings):
|
|
"""
|
|
Configuration settings for Oracle Cloud Infrastructure (OCI) Object Storage
|
|
"""
|
|
|
|
OCI_ENDPOINT: str | None = Field(
|
|
description="URL of the OCI Object Storage endpoint (e.g., 'https://objectstorage.us-phoenix-1.oraclecloud.com')",
|
|
default=None,
|
|
)
|
|
|
|
OCI_REGION: str | None = Field(
|
|
description="OCI region where the bucket is located (e.g., 'us-phoenix-1')",
|
|
default=None,
|
|
)
|
|
|
|
OCI_BUCKET_NAME: str | None = Field(
|
|
description="Name of the OCI Object Storage bucket to store and retrieve objects (e.g., 'my-oci-bucket')",
|
|
default=None,
|
|
)
|
|
|
|
OCI_ACCESS_KEY: str | None = Field(
|
|
description="Access key (also known as API key) for authenticating with OCI Object Storage",
|
|
default=None,
|
|
)
|
|
|
|
OCI_SECRET_KEY: str | None = Field(
|
|
description="Secret key associated with the access key for authenticating with OCI Object Storage",
|
|
default=None,
|
|
)
|