Databricks SDK for JavaScript
    Preparing search index...

    Interface UpdateQueryRequestQuery

    interface UpdateQueryRequestQuery {
        applyAutoLimit?: boolean;
        catalog?: string;
        createTime?: Instant;
        description?: string;
        displayName?: string;
        id?: string;
        lastModifierUserName?: string;
        lifecycleState?: LifecycleState;
        ownerUserName?: string;
        parameters?: QueryParameter[];
        parentPath?: string;
        queryText?: string;
        runAsMode?: RunAsMode;
        schema?: string;
        tags?: string[];
        updateTime?: Instant;
        warehouseId?: string;
    }
    Index

    Properties

    applyAutoLimit?: boolean

    Whether to apply a 1000 row limit to the query result.

    catalog?: string

    Name of the catalog where this query will be executed.

    createTime?: Instant

    Timestamp when this query was created.

    description?: string

    General description that conveys additional information about this query such as usage notes.

    displayName?: string

    Display name of the query that appears in list views, widget headings, and on the query page.

    id?: string

    UUID identifying the query.

    lastModifierUserName?: string

    Username of the user who last saved changes to this query.

    lifecycleState?: LifecycleState

    Indicates whether the query is trashed.

    ownerUserName?: string

    Username of the user that owns the query.

    parameters?: QueryParameter[]

    List of query parameter definitions.

    parentPath?: string

    Workspace path of the workspace folder containing the object.

    queryText?: string

    Text of the query to be run.

    runAsMode?: RunAsMode

    Sets the "Run as" role for the object.

    schema?: string

    Name of the schema where this query will be executed.

    tags?: string[]
    updateTime?: Instant

    Timestamp when this query was last updated.

    warehouseId?: string

    ID of the SQL warehouse attached to the query.