Databricks SDK for JavaScript
    Preparing search index...

    Interface IngestionPipelineDefinition_WorkdayReportParameters

    interface IngestionPipelineDefinition_WorkdayReportParameters {
        incremental?: boolean;
        parameters?: Record<string, string>;
        reportParameters?: IngestionPipelineDefinition_WorkdayReportParameters_QueryKeyValue[];
    }
    Index

    Properties

    incremental?: boolean

    (Optional) Marks the report as incremental. This field is deprecated and should not be used. Use parameters instead. The incremental behavior is now controlled by the parameters field.

    parameters?: Record<string, string>

    Parameters for the Workday report. Each key represents the parameter name (e.g., "start_date", "end_date"), and the corresponding value is a SQL-like expression used to compute the parameter value at runtime. Example: { "start_date": "{ coalesce(current_offset(), date("2025-02-01")) }", "end_date": "{ current_date() - INTERVAL 1 DAY }" }

    (Optional) Additional custom parameters for Workday Report This field is deprecated and should not be used. Use parameters instead.