Databricks SDK for JavaScript
    Preparing search index...
    interface Schedule {
        createTime?: Instant;
        cronSchedule?: CronSchedule;
        dashboardId?: string;
        displayName?: string;
        etag?: string;
        pauseStatus?: SchedulePauseStatus;
        scheduleId?: string;
        updateTime?: Instant;
        warehouseId?: string;
    }
    Index

    Properties

    createTime?: Instant

    A timestamp indicating when the schedule was created.

    cronSchedule?: CronSchedule

    The cron expression describing the frequency of the periodic refresh for this schedule.

    dashboardId?: string

    UUID identifying the dashboard to which the schedule belongs.

    displayName?: string

    The display name for schedule.

    etag?: string

    The etag for the schedule. Must be left empty on create, must be provided on updates to ensure that the schedule has not been modified since the last read, and can be optionally provided on delete.

    pauseStatus?: SchedulePauseStatus

    The status indicates whether this schedule is paused or not.

    scheduleId?: string

    UUID identifying the schedule.

    updateTime?: Instant

    A timestamp indicating when the schedule was last updated.

    warehouseId?: string

    The warehouse id to run the dashboard with for the schedule.