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
catalog
as 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 insave
operations for all datasets in the catalog.load_versions (
dict
[str
,str
]) – The load_versions used inload
operations for each dataset in the catalog.
- Return type: