published on Thursday, Jul 30, 2026 by Pulumi
published on Thursday, Jul 30, 2026 by Pulumi
Example Usage
Basic CDF Configuration
Replicate a Postgres schema into a Unity Catalog schema.
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const _this = new databricks.PostgresProject("this", {
projectId: "my-project",
spec: {
pgVersion: 17,
displayName: "My Project",
},
});
const main = new databricks.PostgresBranch("main", {
branchId: "main",
parent: _this.name,
spec: {
noExpiry: true,
},
});
const app = new databricks.PostgresDatabase("app", {
databaseId: "app_db",
parent: main.name,
spec: {
postgresDatabase: "app_db",
},
});
const thisPostgresCdfConfig = new databricks.PostgresCdfConfig("this", {
parent: app.name,
catalog: "main",
schema: "app_replicated",
postgresSchema: "public",
});
import pulumi
import pulumi_databricks as databricks
this = databricks.PostgresProject("this",
project_id="my-project",
spec={
"pg_version": 17,
"display_name": "My Project",
})
main = databricks.PostgresBranch("main",
branch_id="main",
parent=this.name,
spec={
"no_expiry": True,
})
app = databricks.PostgresDatabase("app",
database_id="app_db",
parent=main.name,
spec={
"postgres_database": "app_db",
})
this_postgres_cdf_config = databricks.PostgresCdfConfig("this",
parent=app.name,
catalog="main",
schema="app_replicated",
postgres_schema="public")
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 {
this, err := databricks.NewPostgresProject(ctx, "this", &databricks.PostgresProjectArgs{
ProjectId: pulumi.String("my-project"),
Spec: &databricks.PostgresProjectSpecArgs{
PgVersion: pulumi.Int(17),
DisplayName: pulumi.String("My Project"),
},
})
if err != nil {
return err
}
main, err := databricks.NewPostgresBranch(ctx, "main", &databricks.PostgresBranchArgs{
BranchId: pulumi.String("main"),
Parent: this.Name,
Spec: &databricks.PostgresBranchSpecArgs{
NoExpiry: pulumi.Bool(true),
},
})
if err != nil {
return err
}
app, err := databricks.NewPostgresDatabase(ctx, "app", &databricks.PostgresDatabaseArgs{
DatabaseId: pulumi.String("app_db"),
Parent: main.Name,
Spec: &databricks.PostgresDatabaseSpecArgs{
PostgresDatabase: pulumi.String("app_db"),
},
})
if err != nil {
return err
}
_, err = databricks.NewPostgresCdfConfig(ctx, "this", &databricks.PostgresCdfConfigArgs{
Parent: app.Name,
Catalog: pulumi.String("main"),
Schema: pulumi.String("app_replicated"),
PostgresSchema: pulumi.String("public"),
})
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.PostgresProject("this", new()
{
ProjectId = "my-project",
Spec = new Databricks.Inputs.PostgresProjectSpecArgs
{
PgVersion = 17,
DisplayName = "My Project",
},
});
var main = new Databricks.PostgresBranch("main", new()
{
BranchId = "main",
Parent = @this.Name,
Spec = new Databricks.Inputs.PostgresBranchSpecArgs
{
NoExpiry = true,
},
});
var app = new Databricks.PostgresDatabase("app", new()
{
DatabaseId = "app_db",
Parent = main.Name,
Spec = new Databricks.Inputs.PostgresDatabaseSpecArgs
{
PostgresDatabase = "app_db",
},
});
var thisPostgresCdfConfig = new Databricks.PostgresCdfConfig("this", new()
{
Parent = app.Name,
Catalog = "main",
Schema = "app_replicated",
PostgresSchema = "public",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.PostgresProject;
import com.pulumi.databricks.PostgresProjectArgs;
import com.pulumi.databricks.inputs.PostgresProjectSpecArgs;
import com.pulumi.databricks.PostgresBranch;
import com.pulumi.databricks.PostgresBranchArgs;
import com.pulumi.databricks.inputs.PostgresBranchSpecArgs;
import com.pulumi.databricks.PostgresDatabase;
import com.pulumi.databricks.PostgresDatabaseArgs;
import com.pulumi.databricks.inputs.PostgresDatabaseSpecArgs;
import com.pulumi.databricks.PostgresCdfConfig;
import com.pulumi.databricks.PostgresCdfConfigArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 PostgresProject("this", PostgresProjectArgs.builder()
.projectId("my-project")
.spec(PostgresProjectSpecArgs.builder()
.pgVersion(17)
.displayName("My Project")
.build())
.build());
var main = new PostgresBranch("main", PostgresBranchArgs.builder()
.branchId("main")
.parent(this_.name())
.spec(PostgresBranchSpecArgs.builder()
.noExpiry(true)
.build())
.build());
var app = new PostgresDatabase("app", PostgresDatabaseArgs.builder()
.databaseId("app_db")
.parent(main.name())
.spec(PostgresDatabaseSpecArgs.builder()
.postgresDatabase("app_db")
.build())
.build());
var thisPostgresCdfConfig = new PostgresCdfConfig("thisPostgresCdfConfig", PostgresCdfConfigArgs.builder()
.parent(app.name())
.catalog("main")
.schema("app_replicated")
.postgresSchema("public")
.build());
}
}
resources:
this:
type: databricks:PostgresProject
properties:
projectId: my-project
spec:
pgVersion: 17
displayName: My Project
main:
type: databricks:PostgresBranch
properties:
branchId: main
parent: ${this.name}
spec:
noExpiry: true
app:
type: databricks:PostgresDatabase
properties:
databaseId: app_db
parent: ${main.name}
spec:
postgresDatabase: app_db
thisPostgresCdfConfig:
type: databricks:PostgresCdfConfig
name: this
properties:
parent: ${app.name}
catalog: main
schema: app_replicated
postgresSchema: public
pulumi {
required_providers {
databricks = {
source = "pulumi/databricks"
}
}
}
resource "databricks_postgresproject" "this" {
project_id = "my-project"
spec = {
pg_version = 17
display_name = "My Project"
}
}
resource "databricks_postgresbranch" "main" {
branch_id = "main"
parent = databricks_postgresproject.this.name
spec = {
no_expiry = true
}
}
resource "databricks_postgresdatabase" "app" {
database_id = "app_db"
parent = databricks_postgresbranch.main.name
spec = {
postgres_database = "app_db"
}
}
resource "databricks_postgrescdfconfig" "this" {
parent = databricks_postgresdatabase.app.name
catalog = "main"
schema = "app_replicated"
postgres_schema = "public"
}
Create PostgresCdfConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PostgresCdfConfig(name: string, args: PostgresCdfConfigArgs, opts?: CustomResourceOptions);@overload
def PostgresCdfConfig(resource_name: str,
args: PostgresCdfConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PostgresCdfConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
catalog: Optional[str] = None,
parent: Optional[str] = None,
postgres_schema: Optional[str] = None,
schema: Optional[str] = None,
cdf_config_id: Optional[str] = None,
provider_config: Optional[PostgresCdfConfigProviderConfigArgs] = None)func NewPostgresCdfConfig(ctx *Context, name string, args PostgresCdfConfigArgs, opts ...ResourceOption) (*PostgresCdfConfig, error)public PostgresCdfConfig(string name, PostgresCdfConfigArgs args, CustomResourceOptions? opts = null)
public PostgresCdfConfig(String name, PostgresCdfConfigArgs args)
public PostgresCdfConfig(String name, PostgresCdfConfigArgs args, CustomResourceOptions options)
type: databricks:PostgresCdfConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "databricks_postgres_cdf_config" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PostgresCdfConfigArgs
- 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 PostgresCdfConfigArgs
- 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 PostgresCdfConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PostgresCdfConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PostgresCdfConfigArgs
- 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 postgresCdfConfigResource = new Databricks.PostgresCdfConfig("postgresCdfConfigResource", new()
{
Catalog = "string",
Parent = "string",
PostgresSchema = "string",
Schema = "string",
CdfConfigId = "string",
ProviderConfig = new Databricks.Inputs.PostgresCdfConfigProviderConfigArgs
{
WorkspaceId = "string",
},
});
example, err := databricks.NewPostgresCdfConfig(ctx, "postgresCdfConfigResource", &databricks.PostgresCdfConfigArgs{
Catalog: pulumi.String("string"),
Parent: pulumi.String("string"),
PostgresSchema: pulumi.String("string"),
Schema: pulumi.String("string"),
CdfConfigId: pulumi.String("string"),
ProviderConfig: &databricks.PostgresCdfConfigProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
})
resource "databricks_postgres_cdf_config" "postgresCdfConfigResource" {
lifecycle {
create_before_destroy = true
}
catalog = "string"
parent = "string"
postgres_schema = "string"
schema = "string"
cdf_config_id = "string"
provider_config = {
workspace_id = "string"
}
}
var postgresCdfConfigResource = new PostgresCdfConfig("postgresCdfConfigResource", PostgresCdfConfigArgs.builder()
.catalog("string")
.parent("string")
.postgresSchema("string")
.schema("string")
.cdfConfigId("string")
.providerConfig(PostgresCdfConfigProviderConfigArgs.builder()
.workspaceId("string")
.build())
.build());
postgres_cdf_config_resource = databricks.PostgresCdfConfig("postgresCdfConfigResource",
catalog="string",
parent="string",
postgres_schema="string",
schema="string",
cdf_config_id="string",
provider_config={
"workspace_id": "string",
})
const postgresCdfConfigResource = new databricks.PostgresCdfConfig("postgresCdfConfigResource", {
catalog: "string",
parent: "string",
postgresSchema: "string",
schema: "string",
cdfConfigId: "string",
providerConfig: {
workspaceId: "string",
},
});
type: databricks:PostgresCdfConfig
properties:
catalog: string
cdfConfigId: string
parent: string
postgresSchema: string
providerConfig:
workspaceId: string
schema: string
PostgresCdfConfig 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 PostgresCdfConfig resource accepts the following input properties:
- Catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- Postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- Schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - Provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- Catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- Postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- Schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - Provider
Config PostgresCdf Config Provider Config Args - Configure the provider for management through account provider.
- catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres_
schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf_
config_ stringid - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - provider_
config object - Configure the provider for management through account provider.
- catalog String
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- parent String
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema String - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- schema String
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config StringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- catalog str
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- parent str
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres_
schema str - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- schema str
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf_
config_ strid - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - provider_
config PostgresCdf Config Provider Config Args - Configure the provider for management through account provider.
- catalog String
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- parent String
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema String - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- schema String
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config StringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - provider
Config Property Map - Configure the provider for management through account provider.
Outputs
All input properties are implicitly available as output properties. Additionally, the PostgresCdfConfig resource produces the following output properties:
- Create
Time string - (string) - When the CdfConfig was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- Create
Time string - (string) - When the CdfConfig was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- create_
time string - (string) - When the CdfConfig was created
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- create
Time String - (string) - When the CdfConfig was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- create
Time string - (string) - When the CdfConfig was created
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- create_
time str - (string) - When the CdfConfig was created
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- create
Time String - (string) - When the CdfConfig was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
Look up Existing PostgresCdfConfig Resource
Get an existing PostgresCdfConfig 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?: PostgresCdfConfigState, opts?: CustomResourceOptions): PostgresCdfConfig@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog: Optional[str] = None,
cdf_config_id: Optional[str] = None,
create_time: Optional[str] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
postgres_schema: Optional[str] = None,
provider_config: Optional[PostgresCdfConfigProviderConfigArgs] = None,
schema: Optional[str] = None) -> PostgresCdfConfigfunc GetPostgresCdfConfig(ctx *Context, name string, id IDInput, state *PostgresCdfConfigState, opts ...ResourceOption) (*PostgresCdfConfig, error)public static PostgresCdfConfig Get(string name, Input<string> id, PostgresCdfConfigState? state, CustomResourceOptions? opts = null)public static PostgresCdfConfig get(String name, Output<String> id, PostgresCdfConfigState state, CustomResourceOptions options)resources: _: type: databricks:PostgresCdfConfig get: id: ${id}import {
to = databricks_postgres_cdf_config.example
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.
- Catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - Create
Time string - (string) - When the CdfConfig was created
- Name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- Parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- Postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- Provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- Schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- Cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - Create
Time string - (string) - When the CdfConfig was created
- Name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- Parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- Postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- Provider
Config PostgresCdf Config Provider Config Args - Configure the provider for management through account provider.
- Schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf_
config_ stringid - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - create_
time string - (string) - When the CdfConfig was created
- name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres_
schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- provider_
config object - Configure the provider for management through account provider.
- schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- catalog String
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config StringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - create
Time String - (string) - When the CdfConfig was created
- name String
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- parent String
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema String - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- schema String
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- catalog string
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config stringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - create
Time string - (string) - When the CdfConfig was created
- name string
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- parent string
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema string - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- provider
Config PostgresCdf Config Provider Config - Configure the provider for management through account provider.
- schema string
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- catalog str
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf_
config_ strid - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - create_
time str - (string) - When the CdfConfig was created
- name str
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- parent str
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres_
schema str - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- provider_
config PostgresCdf Config Provider Config Args - Configure the provider for management through account provider.
- schema str
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
- catalog String
- The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable
- cdf
Config StringId - (string) - The user-specified id; equals the final segment of
name. Defaults to the Postgres schema name for configs without an explicit id - create
Time String - (string) - When the CdfConfig was created
- name String
- (string) - Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- parent String
- The parent database under which to create the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}
- postgres
Schema String - The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable
- provider
Config Property Map - Configure the provider for management through account provider.
- schema String
- The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable
Supporting Types
PostgresCdfConfigProviderConfig, PostgresCdfConfigProviderConfigArgs
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace_
id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace_
id str - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Thursday, Jul 30, 2026 by Pulumi