1. Packages
  2. Databricks Provider
  3. API Docs
  4. ExternalMetadata
Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi

databricks.ExternalMetadata

Explore with Pulumi AI

databricks logo
Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi

    To enrich lineage with workloads that are run outside of Databricks (for example, first mile ETL or last mile BI), Unity Catalog is introducing the external metadata object. UC lets you add external metadata objects to augment the data lineage it captures automatically, giving you an end-to-end lineage view in UC. This is useful when you want to capture where data came from (for example, Salesforce or MySQL) before it was ingested into UC or where data is being consumed outside UC (for example, Tableau or PowerBI).

    Note This resource can only be used with an workspace-level provider!

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.ExternalMetadata("this", {
        name: "security_events_stream",
        systemType: "KAFKA",
        entityType: "Topic",
        url: "https://kafka.com/12345",
        description: "A stream of security related events in the critical services.",
        columns: [
            "type",
            "message",
            "details",
            "date",
            "time",
        ],
        properties: {
            topic: "prod.security.events.raw",
            enabled: "true",
            format: "zstd",
        },
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.ExternalMetadata("this",
        name="security_events_stream",
        system_type="KAFKA",
        entity_type="Topic",
        url="https://kafka.com/12345",
        description="A stream of security related events in the critical services.",
        columns=[
            "type",
            "message",
            "details",
            "date",
            "time",
        ],
        properties={
            "topic": "prod.security.events.raw",
            "enabled": "true",
            "format": "zstd",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databricks.NewExternalMetadata(ctx, "this", &databricks.ExternalMetadataArgs{
    			Name:        pulumi.String("security_events_stream"),
    			SystemType:  pulumi.String("KAFKA"),
    			EntityType:  pulumi.String("Topic"),
    			Url:         pulumi.String("https://kafka.com/12345"),
    			Description: pulumi.String("A stream of security related events in the critical services."),
    			Columns: pulumi.StringArray{
    				pulumi.String("type"),
    				pulumi.String("message"),
    				pulumi.String("details"),
    				pulumi.String("date"),
    				pulumi.String("time"),
    			},
    			Properties: pulumi.StringMap{
    				"topic":   pulumi.String("prod.security.events.raw"),
    				"enabled": pulumi.String("true"),
    				"format":  pulumi.String("zstd"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Databricks.ExternalMetadata("this", new()
        {
            Name = "security_events_stream",
            SystemType = "KAFKA",
            EntityType = "Topic",
            Url = "https://kafka.com/12345",
            Description = "A stream of security related events in the critical services.",
            Columns = new[]
            {
                "type",
                "message",
                "details",
                "date",
                "time",
            },
            Properties = 
            {
                { "topic", "prod.security.events.raw" },
                { "enabled", "true" },
                { "format", "zstd" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.ExternalMetadata;
    import com.pulumi.databricks.ExternalMetadataArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var this_ = new ExternalMetadata("this", ExternalMetadataArgs.builder()
                .name("security_events_stream")
                .systemType("KAFKA")
                .entityType("Topic")
                .url("https://kafka.com/12345")
                .description("A stream of security related events in the critical services.")
                .columns(            
                    "type",
                    "message",
                    "details",
                    "date",
                    "time")
                .properties(Map.ofEntries(
                    Map.entry("topic", "prod.security.events.raw"),
                    Map.entry("enabled", "true"),
                    Map.entry("format", "zstd")
                ))
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:ExternalMetadata
        properties:
          name: security_events_stream
          systemType: KAFKA
          entityType: Topic
          url: https://kafka.com/12345
          description: A stream of security related events in the critical services.
          columns:
            - type
            - message
            - details
            - date
            - time
          properties:
            topic: prod.security.events.raw
            enabled: 'true'
            format: zstd
    

    Create ExternalMetadata Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ExternalMetadata(name: string, args: ExternalMetadataArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalMetadata(resource_name: str,
                         args: ExternalMetadataArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ExternalMetadata(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         entity_type: Optional[str] = None,
                         system_type: Optional[str] = None,
                         columns: Optional[Sequence[str]] = None,
                         description: Optional[str] = None,
                         name: Optional[str] = None,
                         owner: Optional[str] = None,
                         properties: Optional[Mapping[str, str]] = None,
                         url: Optional[str] = None)
    func NewExternalMetadata(ctx *Context, name string, args ExternalMetadataArgs, opts ...ResourceOption) (*ExternalMetadata, error)
    public ExternalMetadata(string name, ExternalMetadataArgs args, CustomResourceOptions? opts = null)
    public ExternalMetadata(String name, ExternalMetadataArgs args)
    public ExternalMetadata(String name, ExternalMetadataArgs args, CustomResourceOptions options)
    
    type: databricks:ExternalMetadata
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ExternalMetadataArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ExternalMetadataArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ExternalMetadataArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExternalMetadataArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExternalMetadataArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var externalMetadataResource = new Databricks.ExternalMetadata("externalMetadataResource", new()
    {
        EntityType = "string",
        SystemType = "string",
        Columns = new[]
        {
            "string",
        },
        Description = "string",
        Name = "string",
        Owner = "string",
        Properties = 
        {
            { "string", "string" },
        },
        Url = "string",
    });
    
    example, err := databricks.NewExternalMetadata(ctx, "externalMetadataResource", &databricks.ExternalMetadataArgs{
    	EntityType: pulumi.String("string"),
    	SystemType: pulumi.String("string"),
    	Columns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Owner:       pulumi.String("string"),
    	Properties: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Url: pulumi.String("string"),
    })
    
    var externalMetadataResource = new ExternalMetadata("externalMetadataResource", ExternalMetadataArgs.builder()
        .entityType("string")
        .systemType("string")
        .columns("string")
        .description("string")
        .name("string")
        .owner("string")
        .properties(Map.of("string", "string"))
        .url("string")
        .build());
    
    external_metadata_resource = databricks.ExternalMetadata("externalMetadataResource",
        entity_type="string",
        system_type="string",
        columns=["string"],
        description="string",
        name="string",
        owner="string",
        properties={
            "string": "string",
        },
        url="string")
    
    const externalMetadataResource = new databricks.ExternalMetadata("externalMetadataResource", {
        entityType: "string",
        systemType: "string",
        columns: ["string"],
        description: "string",
        name: "string",
        owner: "string",
        properties: {
            string: "string",
        },
        url: "string",
    });
    
    type: databricks:ExternalMetadata
    properties:
        columns:
            - string
        description: string
        entityType: string
        name: string
        owner: string
        properties:
            string: string
        systemType: string
        url: string
    

    ExternalMetadata Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ExternalMetadata resource accepts the following input properties:

    EntityType string
    Type of entity within the external system
    SystemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    Columns List<string>
    List of columns associated with the external metadata object
    Description string
    User-provided free-form text description
    Name string
    Name of the external metadata object
    Owner string
    Owner of the external metadata object
    Properties Dictionary<string, string>
    A map of key-value properties attached to the external metadata object
    Url string
    URL associated with the external metadata object
    EntityType string
    Type of entity within the external system
    SystemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    Columns []string
    List of columns associated with the external metadata object
    Description string
    User-provided free-form text description
    Name string
    Name of the external metadata object
    Owner string
    Owner of the external metadata object
    Properties map[string]string
    A map of key-value properties attached to the external metadata object
    Url string
    URL associated with the external metadata object
    entityType String
    Type of entity within the external system
    systemType String
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    columns List<String>
    List of columns associated with the external metadata object
    description String
    User-provided free-form text description
    name String
    Name of the external metadata object
    owner String
    Owner of the external metadata object
    properties Map<String,String>
    A map of key-value properties attached to the external metadata object
    url String
    URL associated with the external metadata object
    entityType string
    Type of entity within the external system
    systemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    columns string[]
    List of columns associated with the external metadata object
    description string
    User-provided free-form text description
    name string
    Name of the external metadata object
    owner string
    Owner of the external metadata object
    properties {[key: string]: string}
    A map of key-value properties attached to the external metadata object
    url string
    URL associated with the external metadata object
    entity_type str
    Type of entity within the external system
    system_type str
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    columns Sequence[str]
    List of columns associated with the external metadata object
    description str
    User-provided free-form text description
    name str
    Name of the external metadata object
    owner str
    Owner of the external metadata object
    properties Mapping[str, str]
    A map of key-value properties attached to the external metadata object
    url str
    URL associated with the external metadata object
    entityType String
    Type of entity within the external system
    systemType String
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    columns List<String>
    List of columns associated with the external metadata object
    description String
    User-provided free-form text description
    name String
    Name of the external metadata object
    owner String
    Owner of the external metadata object
    properties Map<String>
    A map of key-value properties attached to the external metadata object
    url String
    URL associated with the external metadata object

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ExternalMetadata resource produces the following output properties:

    CreateTime string
    (string) - Time at which this external metadata object was created
    CreatedBy string
    (string) - Username of external metadata object creator
    Id string
    The provider-assigned unique ID for this managed resource.
    MetastoreId string
    (string) - Unique identifier of parent metastore
    UpdateTime string
    (string) - Time at which this external metadata object was last modified
    UpdatedBy string
    (string) - Username of user who last modified external metadata object
    CreateTime string
    (string) - Time at which this external metadata object was created
    CreatedBy string
    (string) - Username of external metadata object creator
    Id string
    The provider-assigned unique ID for this managed resource.
    MetastoreId string
    (string) - Unique identifier of parent metastore
    UpdateTime string
    (string) - Time at which this external metadata object was last modified
    UpdatedBy string
    (string) - Username of user who last modified external metadata object
    createTime String
    (string) - Time at which this external metadata object was created
    createdBy String
    (string) - Username of external metadata object creator
    id String
    The provider-assigned unique ID for this managed resource.
    metastoreId String
    (string) - Unique identifier of parent metastore
    updateTime String
    (string) - Time at which this external metadata object was last modified
    updatedBy String
    (string) - Username of user who last modified external metadata object
    createTime string
    (string) - Time at which this external metadata object was created
    createdBy string
    (string) - Username of external metadata object creator
    id string
    The provider-assigned unique ID for this managed resource.
    metastoreId string
    (string) - Unique identifier of parent metastore
    updateTime string
    (string) - Time at which this external metadata object was last modified
    updatedBy string
    (string) - Username of user who last modified external metadata object
    create_time str
    (string) - Time at which this external metadata object was created
    created_by str
    (string) - Username of external metadata object creator
    id str
    The provider-assigned unique ID for this managed resource.
    metastore_id str
    (string) - Unique identifier of parent metastore
    update_time str
    (string) - Time at which this external metadata object was last modified
    updated_by str
    (string) - Username of user who last modified external metadata object
    createTime String
    (string) - Time at which this external metadata object was created
    createdBy String
    (string) - Username of external metadata object creator
    id String
    The provider-assigned unique ID for this managed resource.
    metastoreId String
    (string) - Unique identifier of parent metastore
    updateTime String
    (string) - Time at which this external metadata object was last modified
    updatedBy String
    (string) - Username of user who last modified external metadata object

    Look up Existing ExternalMetadata Resource

    Get an existing ExternalMetadata resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ExternalMetadataState, opts?: CustomResourceOptions): ExternalMetadata
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            columns: Optional[Sequence[str]] = None,
            create_time: Optional[str] = None,
            created_by: Optional[str] = None,
            description: Optional[str] = None,
            entity_type: Optional[str] = None,
            metastore_id: Optional[str] = None,
            name: Optional[str] = None,
            owner: Optional[str] = None,
            properties: Optional[Mapping[str, str]] = None,
            system_type: Optional[str] = None,
            update_time: Optional[str] = None,
            updated_by: Optional[str] = None,
            url: Optional[str] = None) -> ExternalMetadata
    func GetExternalMetadata(ctx *Context, name string, id IDInput, state *ExternalMetadataState, opts ...ResourceOption) (*ExternalMetadata, error)
    public static ExternalMetadata Get(string name, Input<string> id, ExternalMetadataState? state, CustomResourceOptions? opts = null)
    public static ExternalMetadata get(String name, Output<String> id, ExternalMetadataState state, CustomResourceOptions options)
    resources:  _:    type: databricks:ExternalMetadata    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Columns List<string>
    List of columns associated with the external metadata object
    CreateTime string
    (string) - Time at which this external metadata object was created
    CreatedBy string
    (string) - Username of external metadata object creator
    Description string
    User-provided free-form text description
    EntityType string
    Type of entity within the external system
    MetastoreId string
    (string) - Unique identifier of parent metastore
    Name string
    Name of the external metadata object
    Owner string
    Owner of the external metadata object
    Properties Dictionary<string, string>
    A map of key-value properties attached to the external metadata object
    SystemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    UpdateTime string
    (string) - Time at which this external metadata object was last modified
    UpdatedBy string
    (string) - Username of user who last modified external metadata object
    Url string
    URL associated with the external metadata object
    Columns []string
    List of columns associated with the external metadata object
    CreateTime string
    (string) - Time at which this external metadata object was created
    CreatedBy string
    (string) - Username of external metadata object creator
    Description string
    User-provided free-form text description
    EntityType string
    Type of entity within the external system
    MetastoreId string
    (string) - Unique identifier of parent metastore
    Name string
    Name of the external metadata object
    Owner string
    Owner of the external metadata object
    Properties map[string]string
    A map of key-value properties attached to the external metadata object
    SystemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    UpdateTime string
    (string) - Time at which this external metadata object was last modified
    UpdatedBy string
    (string) - Username of user who last modified external metadata object
    Url string
    URL associated with the external metadata object
    columns List<String>
    List of columns associated with the external metadata object
    createTime String
    (string) - Time at which this external metadata object was created
    createdBy String
    (string) - Username of external metadata object creator
    description String
    User-provided free-form text description
    entityType String
    Type of entity within the external system
    metastoreId String
    (string) - Unique identifier of parent metastore
    name String
    Name of the external metadata object
    owner String
    Owner of the external metadata object
    properties Map<String,String>
    A map of key-value properties attached to the external metadata object
    systemType String
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    updateTime String
    (string) - Time at which this external metadata object was last modified
    updatedBy String
    (string) - Username of user who last modified external metadata object
    url String
    URL associated with the external metadata object
    columns string[]
    List of columns associated with the external metadata object
    createTime string
    (string) - Time at which this external metadata object was created
    createdBy string
    (string) - Username of external metadata object creator
    description string
    User-provided free-form text description
    entityType string
    Type of entity within the external system
    metastoreId string
    (string) - Unique identifier of parent metastore
    name string
    Name of the external metadata object
    owner string
    Owner of the external metadata object
    properties {[key: string]: string}
    A map of key-value properties attached to the external metadata object
    systemType string
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    updateTime string
    (string) - Time at which this external metadata object was last modified
    updatedBy string
    (string) - Username of user who last modified external metadata object
    url string
    URL associated with the external metadata object
    columns Sequence[str]
    List of columns associated with the external metadata object
    create_time str
    (string) - Time at which this external metadata object was created
    created_by str
    (string) - Username of external metadata object creator
    description str
    User-provided free-form text description
    entity_type str
    Type of entity within the external system
    metastore_id str
    (string) - Unique identifier of parent metastore
    name str
    Name of the external metadata object
    owner str
    Owner of the external metadata object
    properties Mapping[str, str]
    A map of key-value properties attached to the external metadata object
    system_type str
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    update_time str
    (string) - Time at which this external metadata object was last modified
    updated_by str
    (string) - Username of user who last modified external metadata object
    url str
    URL associated with the external metadata object
    columns List<String>
    List of columns associated with the external metadata object
    createTime String
    (string) - Time at which this external metadata object was created
    createdBy String
    (string) - Username of external metadata object creator
    description String
    User-provided free-form text description
    entityType String
    Type of entity within the external system
    metastoreId String
    (string) - Unique identifier of parent metastore
    name String
    Name of the external metadata object
    owner String
    Owner of the external metadata object
    properties Map<String>
    A map of key-value properties attached to the external metadata object
    systemType String
    Type of external system. Possible values are: AMAZON_REDSHIFT, AZURE_SYNAPSE, CONFLUENT, DATABRICKS, GOOGLE_BIGQUERY, KAFKA, LOOKER, MICROSOFT_FABRIC, MICROSOFT_SQL_SERVER, MONGODB, MYSQL, ORACLE, OTHER, POSTGRESQL, POWER_BI, SALESFORCE, SAP, SERVICENOW, SNOWFLAKE, TABLEAU, TERADATA, WORKDAY
    updateTime String
    (string) - Time at which this external metadata object was last modified
    updatedBy String
    (string) - Username of user who last modified external metadata object
    url String
    URL associated with the external metadata object

    Import

    As of Pulumi v1.5, resources can be imported through configuration.

    hcl

    import {

    id = name

    to = databricks_external_metadata.this

    }

    If you are using an older version of Pulumi, import the resource using the pulumi import command as follows:

    $ pulumi import databricks:index/externalMetadata:ExternalMetadata databricks_external_metadata name
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Databricks v1.74.0 published on Thursday, Aug 14, 2025 by Pulumi