Databricks SDK for JavaScript
    Preparing search index...

    Interface DbtPlatformJobRunStep

    Format of response retrieved from dbt platform, for inclusion in output

    interface DbtPlatformJobRunStep {
        index?: number;
        logs?: string;
        logsTruncated?: boolean;
        name?: string;
        nameTruncated?: boolean;
        status?: DbtPlatformRunStatus;
    }
    Index

    Properties

    index?: number

    Orders the steps in the job

    logs?: string

    Output of the step

    logsTruncated?: boolean

    Whether the logs of this step have been truncated. If true, the logs has been truncated to 10000 characters.

    name?: string

    Name of the step in the job

    nameTruncated?: boolean

    Whether the name of the job has been truncated. If true, the name has been truncated to 100 characters.

    State of the step