Databricks SDK for JavaScript
    Preparing search index...
    interface AppDeployment {
        command?: string[];
        createTime?: Instant;
        creator?: string;
        deploymentArtifacts?: AppDeploymentArtifacts;
        deploymentId?: string;
        envVars?: EnvVar[];
        gitSource?: GitSource;
        mode?: AppDeployment_Mode;
        sourceCodePath?: string;
        status?: AppDeploymentStatus;
        updateTime?: Instant;
    }
    Index

    Properties

    command?: string[]

    The command with which to run the app. This will override the command specified in the app.yaml file.

    createTime?: Instant

    The creation time of the deployment. Formatted timestamp in ISO 6801.

    creator?: string

    The email of the user creates the deployment.

    deploymentArtifacts?: AppDeploymentArtifacts

    The deployment artifacts for an app.

    deploymentId?: string

    The unique id of the deployment.

    envVars?: EnvVar[]

    The environment variables to set in the app runtime environment. This will override the environment variables specified in the app.yaml file.

    gitSource?: GitSource

    Git repository to use as the source for the app deployment.

    The mode of which the deployment will manage the source code.

    sourceCodePath?: string

    The workspace file system path of the source code used to create the app deployment. This is different from deployment_artifacts.source_code_path, which is the path used by the deployed app. The former refers to the original source code location of the app in the workspace during deployment creation, whereas the latter provides a system generated stable snapshotted source code path used by the deployment.

    Status and status message of the deployment

    updateTime?: Instant

    The update time of the deployment. Formatted timestamp in ISO 6801.