DagsterCodeLocation¶
kedro_dagster.translator.DagsterCodeLocation
dataclass
¶
A typed container for all artifacts that make up a Dagster code location.
Attributes¶
| Name | Type | Description |
|---|---|---|
named_assets |
dict[str, AssetSpec | AssetsDefinition]
|
Dictionary of named Dagster assets. |
named_resources |
dict[str, ResourceDefinition]
|
Dictionary of named Dagster resources. |
named_jobs |
dict[str, JobDefinition]
|
Dictionary of named Dagster jobs. |
named_executors |
dict[str, ExecutorDefinition]
|
Dictionary of named Dagster executors. |
named_schedules |
dict[str, ScheduleDefinition]
|
Dictionary of named Dagster schedules. |
named_sensors |
dict[str, SensorDefinition]
|
Dictionary of named Dagster sensors. |
named_loggers |
dict[str, LoggerDefinition]
|
Dictionary of named Dagster loggers. |
See Also¶
kedro_dagster.translator.KedroProjectTranslator.to_dagster :
Produces instances of this dataclass.