FileDepot

data class FileDepot(val path: String? = null, val format: String? = null, val metastoreUrl: String? = null, val icebergCatalogType: FileDepot.IcebergCatalogType? = null)

Represents a File Depot.

Constructors

Link copied to clipboard
constructor(path: String? = null, format: String? = null, metastoreUrl: String? = null, icebergCatalogType: FileDepot.IcebergCatalogType? = null)

Types

Link copied to clipboard

Enum class representing the Iceberg catalog type.

Properties

Link copied to clipboard
val format: String? = null

The format of the file.

Link copied to clipboard

The type of Iceberg catalog used by the file. Can be either "HIVE" or "HADOOP".

Link copied to clipboard
val metastoreUrl: String? = null

The metastore URL associated with the file.

Link copied to clipboard
val path: String? = null

The path of the file.