class documentation

class DataCatalogSpecs: (source)

View In Hierarchy

Namespace that defines all specifications for a data catalog's lifecycle hooks.

Method after_catalog_created Hooks to be invoked after a data catalog is created. It receives the catalog as well as all the arguments for KedroContext._create_catalog.
@hook_spec
def after_catalog_created(self, catalog: DataCatalog, conf_catalog: Dict[str, Any], conf_creds: Dict[str, Any], feed_dict: Dict[str, Any], save_version: str, load_versions: Dict[str, str]): (source)

Hooks to be invoked after a data catalog is created. It receives the catalog as well as all the arguments for KedroContext._create_catalog.

Parameters
catalog:DataCatalogThe catalog that was created.
conf_catalog:Dict[str, Any]The config from which the catalog was created.
conf_creds:Dict[str, Any]The credentials conf from which the catalog was created.
feed_dict:Dict[str, Any]The feed_dict that was added to the catalog after creation.
save_version:strThe save_version used in save operations for all datasets in the catalog.
load_versions:Dict[str, str]The load_versions used in load operations for each dataset in the catalog.