Databricks SDK for JavaScript
    Preparing search index...

    The source of the job specification in the remote repository when the job is source controlled.

    interface JobSource {
        dirtyState?: JobSource_DirtyState;
        importFromGitReference?: {
            $case: "importFromGitBranch";
            importFromGitBranch: string;
        };
        jobConfigPath?: string;
    }
    Index

    Properties

    Dirty state indicates the job is not fully synced with the job specification in the remote repository.

    Possible values are:

    • NOT_SYNCED: The job is not yet synced with the remote job specification. Import the remote job specification from UI to make the job fully synced.
    • DISCONNECTED: The job is temporary disconnected from the remote job specification and is allowed for live edit. Import the remote job specification again from UI to make the job fully synced.
    importFromGitReference?: {
        $case: "importFromGitBranch";
        importFromGitBranch: string;
    }

    Type Declaration

    • $case: "importFromGitBranch"
    • importFromGitBranch: string

      Name of the branch which the job is imported from.

    jobConfigPath?: string

    Path of the job YAML file that contains the job specification.