Source code for depot_service.models.gcs

from typing import Optional
from pydantic import BaseModel
from enum import Enum


[docs]class Gcs(BaseModel): gcsUrl: Optional[str] bucket: Optional[str] path: Optional[str] metastoreUrl: Optional[str] relativePath: Optional[str] icebergCatalogType: Optional[str]
[docs] class IcebergCatalogType(str, Enum): HIVE = "HIVE" HADOOP = "HADOOP"