Source code for depot_service.models.abfss
from enum import Enum
from typing import Optional
from pydantic import BaseModel
[docs]class Abfss(BaseModel):
wasbsUrl: Optional[str]
container: Optional[str]
account: Optional[str]
metastoreUrl: Optional[str]
relativePath: Optional[str]
icebergCatalogType: Optional[IcebergCatalogType]
abfssUrl: Optional[str]