kedro.framework.hooks.specs.DataCatalogSpecs¶
-
class
kedro.framework.hooks.specs.
DataCatalogSpecs
[source]¶ Bases:
object
Namespace that defines all specifications for a data catalog’s lifecycle hooks.
Methods
DataCatalogSpecs.after_catalog_created
(…)Hooks to be invoked after a data catalog is created. -
__init__
¶ Initialize self. See help(type(self)) for accurate signature.
-
after_catalog_created
(catalog, conf_catalog, conf_creds, feed_dict, save_version, load_versions, run_id)[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. - run_id (
str
) – The id of the run for which the catalog is loaded.
Return type: None
- catalog (
-