Skip to content

Column

laktory.models.resources.databricks.Column ¤

Bases: BaseModel

Definition of a table column, including instructions on how to build the column using spark and an input dataframe.

ATTRIBUTE DESCRIPTION
catalog_name

Name of the catalog string the column table

TYPE: Union[str, None]

comment

Text description of the column

TYPE: Union[str, None]

name

Name of the column

TYPE: str

pii

If True, the column is flagged as Personally Identifiable Information

TYPE: Union[bool, None]

schema_name

Name of the schema storing the column table

TYPE: Union[str, None]

table_name

Name of the table storing the column.

TYPE: Union[str, None]

type

Column data type

TYPE: str

unit

Column units

TYPE: Union[str, None]

Attributes¤

parent_full_name property ¤

parent_full_name

Table full name {catalog_name}.{schema_name}.{table_name}

full_name property ¤

full_name

Column full name {catalog_name}.{schema_name}.{table_name}.{column_name}