Databricks SDK for JavaScript
    Preparing search index...

    Interface MaintenanceWindow

    A recurring weekly time window during which platform-initiated maintenance is allowed to run for a continuous job.

    interface MaintenanceWindow {
        dayOfWeek?: DayOfWeek;
        startHour?: number;
        timezoneId?: string;
    }
    Index

    Properties

    dayOfWeek?: DayOfWeek

    The day of week on which maintenance is allowed to happen. This field is required.

    startHour?: number

    An integer between 0 and 23 denoting the start hour for the maintenance window in the 24-hour day. Platform-initiated maintenance is triggered only within a one-hour window starting at this hour. This field is required.

    timezoneId?: string

    A Java timezone ID. The maintenance window is resolved with respect to this timezone. See Java TimeZone for details. This field is required.