Databricks SDK for JavaScript
    Preparing search index...

    Interface UpdateJobRequest

    interface UpdateJobRequest {
        fieldsToRemove?: string[];
        jobId?: bigint;
        newSettings?: JobSettings;
    }
    Index

    Properties

    fieldsToRemove?: string[]

    Remove top-level fields in the job settings. Removing nested fields is not supported, except for tasks and job clusters (tasks/task_1). This field is optional.

    jobId?: bigint

    The canonical identifier of the job to update. This field is required.

    newSettings?: JobSettings

    The new settings for the job.

    Top-level fields specified in new_settings are completely replaced, except for arrays which are merged. That is, new and existing entries are completely replaced based on the respective key fields, i.e. task_key or job_cluster_key, while previous entries are kept.

    Partially updating nested fields is not supported.

    Changes to the field JobSettings.timeout_seconds are applied to active runs. Changes to other fields are applied to future runs only.