Databricks SDK for JavaScript
    Preparing search index...

    Data Classification configuration for a Unity Catalog catalog. This message follows the "At Most One Resource" pattern: at most one CatalogConfig exists per catalog.

    • Full CRUD operations are supported: Create enables Data Classification, Delete disables it
    • It has no unique identifier of its own and uses its parent catalog's identifier (catalog_name)
    interface CatalogConfig {
        autoTagConfigs?: AutoTaggingConfig[];
        name?: string;
        selectedSchemas?: {
            $case: "includedSchemas";
            includedSchemas: CatalogConfig_SchemaNames;
        };
    }
    Index

    Properties

    autoTagConfigs?: AutoTaggingConfig[]

    List of auto-tagging configurations for this catalog. Empty list means no auto-tagging is enabled.

    name?: string

    Resource name in the format: catalogs/{catalog_name}/config.

    selectedSchemas?: {
        $case: "includedSchemas";
        includedSchemas: CatalogConfig_SchemaNames;
    }

    Type Declaration

    • $case: "includedSchemas"
    • includedSchemas: CatalogConfig_SchemaNames

      Schemas to include in the scan. Empty list is not supported as it results in a no-op scan. If included_schemas is not set, all schemas are scanned.