Materialized View Info

class databricks.ml_features.entities.materialized_view_info.MaterializedViewInfo(*, pipeline_id: str, pipeline_name: str)

Bases: _FeatureStoreObject

Information about a materialized view.

Parameters
  • pipeline_id – The ID for the pipeline.

  • pipeline_name – The name of the pipeline.

__init__(*, pipeline_id: str, pipeline_name: str)

Initialize a MaterializedViewInfo object. See class documentation.

property pipeline_id: str

The ID for the pipeline.

property pipeline_name: str

The name of the pipeline.

Cron Schedule

class databricks.ml_features.entities.cron_schedule.CronSchedule(*, quartz_cron_expression: str, timezone_id: Optional[str])

Bases: _FeatureStoreObject

Defines a cron schedule.

Parameters
__init__(*, quartz_cron_expression: str, timezone_id: Optional[str])

Initialize a CronSchedule object. See class documentation.

property quartz_cron_expression: str

The cron expression to use.

property timezone_id: str

A Java timezone ID. The schedule for a job is resolved with respect to this timezone. See Java TimeZone for details.