Schema
laktory.models.resources.databricks.Schema
¤
Bases: BaseModel
, PulumiResource
, TerraformResource
A schema (also called a database) is the second layer of Unity Catalog’s three-level namespace. A schema organizes tables and views.
ATTRIBUTE | DESCRIPTION |
---|---|
catalog_name |
Name of the catalog storing the schema |
comment |
Text description of the catalog |
force_destroy |
If
TYPE:
|
grant |
Grant(s) operating on the Schema and authoritative for a specific principal.
Other principals within the grants are preserved. Mutually exclusive with
TYPE:
|
grants |
Grants operating on the Schema and authoritative for all principals.
Replaces any existing grants defined inside or outside of Laktory. Mutually
exclusive with
TYPE:
|
isolation_mode |
Whether the catalog is accessible from all workspaces or a specific set of workspaces. Can be ISOLATED or OPEN. Setting the catalog to ISOLATED will automatically allow access from the current workspace.
|
name |
Name of the catalog
TYPE:
|
storage_root |
Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location.
TYPE:
|
tables |
List of tables stored in the schema |
volumes |
List of volumes stored in the schema |
Examples:
from laktory import models
schema = models.resources.databricks.Schema(
catalog_name="dev",
name="engineering",
grants=[{"principal": "domain-engineering", "privileges": ["SELECT"]}],
)