Volume
laktory.models.resources.databricks.Volume
¤
Bases: UnityCatalogMixin, VolumeBase
Volumes are Unity Catalog objects representing a logical volume of storage in a cloud object storage location. Volumes provide capabilities for accessing, storing, governing, and organizing files. While tables provide governance over tabular datasets, volumes add governance over non-tabular datasets. You can use volumes to store and access files in any format, including structured, semi-structured, and unstructured data.
Examples:
import io
from laktory import models
volume_yaml = '''
name: landing
catalog_name: dev
schema_name: sources
comment: Landing zone for raw data
volume_type: EXTERNAL
storage_location: abfss://landing@lakehouse-storage.dfs.core.windows.net/
grants:
- principal: account users
privileges:
- READ_VOLUME
- principal: role-metastore-admins
privileges:
- WRITE_VOLUME
'''
volume = models.resources.databricks.Volume.model_validate_yaml(
io.StringIO(volume_yaml)
)
print(volume.full_name)
# > dev.sources.landing
print(volume.parent_full_name)
# > dev.sources
References
| BASE | DESCRIPTION |
|---|---|
catalog_name
|
Name of the catalog storing the volume
TYPE:
|
comment
|
The comment attached to the volume
TYPE:
|
name
|
The name of the volume
TYPE:
|
owner
|
The identifier of the user who owns the volume
TYPE:
|
schema_name
|
Name of the schema storing the volume
TYPE:
|
storage_location
|
The storage location on the cloud
TYPE:
|
volume_type
|
Type of volume. A managed volume is a Unity Catalog-governed storage volume created within the default storage location of the containing schema. An external volume is a Unity Catalog-governed storage volume registered against a directory within an external location.
TYPE:
|
| LAKTORY | DESCRIPTION |
|---|---|
grant
|
Non-destructive grant for specific principal(s). Adds or updates privileges for the listed principal(s) and leaves
grants for all other principals untouched. Use when access is managed from multiple sources (Laktory, Databricks
UI, etc.). Mutually exclusive with
TYPE:
|
grants
|
Authoritative grant list for all principals. Replaces every existing grant on this Volume — including those set
outside Laktory — with only the entries listed here. Use only when Laktory owns all access management for this
resource. Mutually exclusive with
TYPE:
|
| ATTRIBUTE | DESCRIPTION |
|---|---|
additional_core_resources |
TYPE:
|
full_name |
Full volume name
TYPE:
|
parent_full_name |
Parent namespace in the UC three-level hierarchy
TYPE:
|