Databricks SDK for JavaScript
    Preparing search index...

    Interface IngestionPipelineDefinition_SchemaSpec

    interface IngestionPipelineDefinition_SchemaSpec {
        connectorOptions?: ConnectorOptions;
        destinationCatalog?: string;
        destinationSchema?: string;
        sourceCatalog?: string;
        sourceSchema?: string;
        tableConfiguration?: IngestionPipelineDefinition_TableSpecificConfig;
    }
    Index

    Properties

    connectorOptions?: ConnectorOptions

    (Optional) Source Specific Connector Options

    destinationCatalog?: string

    Required. Destination catalog to store tables.

    destinationSchema?: string

    Required. Destination schema to store tables in. Tables with the same name as the source tables are created in this destination schema. The pipeline fails If a table with the same name already exists.

    sourceCatalog?: string

    The source catalog name. Might be optional depending on the type of source.

    sourceSchema?: string

    Required. Schema name in the source database.

    Configuration settings to control the ingestion of tables. These settings are applied to all tables in this schema and override the table_configuration defined in the IngestionPipelineDefinition object.