kedro.framework.hooks.specs.DataCatalogSpecs¶
-
class
kedro.framework.hooks.specs.DataCatalogSpecs[source]¶ Namespace that defines all specifications for a data catalog’s lifecycle hooks.
Methods
after_catalog_created(catalog, conf_catalog, …)Hooks to be invoked after a data catalog is created.
-
after_catalog_created(catalog, conf_catalog, conf_creds, feed_dict, save_version, load_versions)[source]¶ Hooks to be invoked after a data catalog is created. It receives the
catalogas well as all the arguments forKedroContext._create_catalog.- Parameters
catalog (
DataCatalog) – The 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 (
str) – The save_version used insaveoperations for all datasets in the catalog.load_versions (
Dict[str,str]) – The load_versions used inloadoperations for each dataset in the catalog.
- Return type
None
-