Databricks SDK for JavaScript
    Preparing search index...
    interface GlobalInitScriptDetails {
        createdAt?: bigint;
        createdBy?: string;
        enabled?: boolean;
        name?: string;
        position?: number;
        scriptId?: string;
        updatedAt?: bigint;
        updatedBy?: string;
    }
    Index

    Properties

    createdAt?: bigint

    Time when the script was created, represented as a Unix timestamp in milliseconds.

    createdBy?: string

    The username of the user who created the script.

    enabled?: boolean

    Specifies whether the script is enabled. The script runs only if enabled.

    name?: string

    The name of the script

    position?: number

    The position of a script, where 0 represents the first script to run, 1 is the second script to run, in ascending order.

    scriptId?: string

    The global init script ID.

    updatedAt?: bigint

    Time when the script was updated, represented as a Unix timestamp in milliseconds.

    updatedBy?: string

    The username of the user who last updated the script