published on Tuesday, May 12, 2026 by Pulumi
published on Tuesday, May 12, 2026 by Pulumi
Example Usage
Basic Catalog Creation
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 thisPostgresCatalog = new databricks.PostgresCatalog("this", {
catalogId: "my_catalog",
spec: {
postgresDatabase: "my_database",
createDatabaseIfMissing: true,
branch: main.name,
},
});
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,
})
this_postgres_catalog = databricks.PostgresCatalog("this",
catalog_id="my_catalog",
spec={
"postgres_database": "my_database",
"create_database_if_missing": True,
"branch": main.name,
})
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
}
_, err = databricks.NewPostgresCatalog(ctx, "this", &databricks.PostgresCatalogArgs{
CatalogId: pulumi.String("my_catalog"),
Spec: &databricks.PostgresCatalogSpecArgs{
PostgresDatabase: pulumi.String("my_database"),
CreateDatabaseIfMissing: pulumi.Bool(true),
Branch: main.Name,
},
})
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 thisPostgresCatalog = new Databricks.PostgresCatalog("this", new()
{
CatalogId = "my_catalog",
Spec = new Databricks.Inputs.PostgresCatalogSpecArgs
{
PostgresDatabase = "my_database",
CreateDatabaseIfMissing = true,
Branch = main.Name,
},
});
});
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.PostgresCatalog;
import com.pulumi.databricks.PostgresCatalogArgs;
import com.pulumi.databricks.inputs.PostgresCatalogSpecArgs;
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 thisPostgresCatalog = new PostgresCatalog("thisPostgresCatalog", PostgresCatalogArgs.builder()
.catalogId("my_catalog")
.spec(PostgresCatalogSpecArgs.builder()
.postgresDatabase("my_database")
.createDatabaseIfMissing(true)
.branch(main.name())
.build())
.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
thisPostgresCatalog:
type: databricks:PostgresCatalog
name: this
properties:
catalogId: my_catalog
spec:
postgresDatabase: my_database
createDatabaseIfMissing: true
branch: ${main.name}
Example coming soon!
Catalog with Existing Database
If the Postgres database already exists, omit createDatabaseIfMissing:
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const _this = new databricks.PostgresCatalog("this", {
catalogId: "existing_db_catalog",
spec: {
postgresDatabase: "existing_database",
branch: main.name,
},
});
import pulumi
import pulumi_databricks as databricks
this = databricks.PostgresCatalog("this",
catalog_id="existing_db_catalog",
spec={
"postgres_database": "existing_database",
"branch": main["name"],
})
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.NewPostgresCatalog(ctx, "this", &databricks.PostgresCatalogArgs{
CatalogId: pulumi.String("existing_db_catalog"),
Spec: &databricks.PostgresCatalogSpecArgs{
PostgresDatabase: pulumi.String("existing_database"),
Branch: pulumi.Any(main.Name),
},
})
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.PostgresCatalog("this", new()
{
CatalogId = "existing_db_catalog",
Spec = new Databricks.Inputs.PostgresCatalogSpecArgs
{
PostgresDatabase = "existing_database",
Branch = main.Name,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.PostgresCatalog;
import com.pulumi.databricks.PostgresCatalogArgs;
import com.pulumi.databricks.inputs.PostgresCatalogSpecArgs;
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 PostgresCatalog("this", PostgresCatalogArgs.builder()
.catalogId("existing_db_catalog")
.spec(PostgresCatalogSpecArgs.builder()
.postgresDatabase("existing_database")
.branch(main.name())
.build())
.build());
}
}
resources:
this:
type: databricks:PostgresCatalog
properties:
catalogId: existing_db_catalog
spec:
postgresDatabase: existing_database
branch: ${main.name}
Example coming soon!
Create PostgresCatalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PostgresCatalog(name: string, args: PostgresCatalogArgs, opts?: CustomResourceOptions);@overload
def PostgresCatalog(resource_name: str,
args: PostgresCatalogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PostgresCatalog(resource_name: str,
opts: Optional[ResourceOptions] = None,
catalog_id: Optional[str] = None,
provider_config: Optional[PostgresCatalogProviderConfigArgs] = None,
spec: Optional[PostgresCatalogSpecArgs] = None)func NewPostgresCatalog(ctx *Context, name string, args PostgresCatalogArgs, opts ...ResourceOption) (*PostgresCatalog, error)public PostgresCatalog(string name, PostgresCatalogArgs args, CustomResourceOptions? opts = null)
public PostgresCatalog(String name, PostgresCatalogArgs args)
public PostgresCatalog(String name, PostgresCatalogArgs args, CustomResourceOptions options)
type: databricks:PostgresCatalog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "databricks_postgrescatalog" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PostgresCatalogArgs
- 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 PostgresCatalogArgs
- 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 PostgresCatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PostgresCatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PostgresCatalogArgs
- 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 postgresCatalogResource = new Databricks.PostgresCatalog("postgresCatalogResource", new()
{
CatalogId = "string",
ProviderConfig = new Databricks.Inputs.PostgresCatalogProviderConfigArgs
{
WorkspaceId = "string",
},
Spec = new Databricks.Inputs.PostgresCatalogSpecArgs
{
PostgresDatabase = "string",
Branch = "string",
CreateDatabaseIfMissing = false,
},
});
example, err := databricks.NewPostgresCatalog(ctx, "postgresCatalogResource", &databricks.PostgresCatalogArgs{
CatalogId: pulumi.String("string"),
ProviderConfig: &databricks.PostgresCatalogProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
Spec: &databricks.PostgresCatalogSpecArgs{
PostgresDatabase: pulumi.String("string"),
Branch: pulumi.String("string"),
CreateDatabaseIfMissing: pulumi.Bool(false),
},
})
resource "databricks_postgrescatalog" "postgresCatalogResource" {
catalog_id = "string"
provider_config = {
workspace_id = "string"
}
spec = {
postgres_database = "string"
branch = "string"
create_database_if_missing = false
}
}
var postgresCatalogResource = new PostgresCatalog("postgresCatalogResource", PostgresCatalogArgs.builder()
.catalogId("string")
.providerConfig(PostgresCatalogProviderConfigArgs.builder()
.workspaceId("string")
.build())
.spec(PostgresCatalogSpecArgs.builder()
.postgresDatabase("string")
.branch("string")
.createDatabaseIfMissing(false)
.build())
.build());
postgres_catalog_resource = databricks.PostgresCatalog("postgresCatalogResource",
catalog_id="string",
provider_config={
"workspace_id": "string",
},
spec={
"postgres_database": "string",
"branch": "string",
"create_database_if_missing": False,
})
const postgresCatalogResource = new databricks.PostgresCatalog("postgresCatalogResource", {
catalogId: "string",
providerConfig: {
workspaceId: "string",
},
spec: {
postgresDatabase: "string",
branch: "string",
createDatabaseIfMissing: false,
},
});
type: databricks:PostgresCatalog
properties:
catalogId: string
providerConfig:
workspaceId: string
spec:
branch: string
createDatabaseIfMissing: false
postgresDatabase: string
PostgresCatalog 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 PostgresCatalog resource accepts the following input properties:
- Catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- Spec
Postgres
Catalog Spec - The desired state of the Catalog
- Catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Provider
Config PostgresCatalog Provider Config Args - Configure the provider for management through account provider.
- Spec
Postgres
Catalog Spec Args - The desired state of the Catalog
- catalog_
id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- provider_
config object - Configure the provider for management through account provider.
- spec object
- The desired state of the Catalog
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec - The desired state of the Catalog
- catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec - The desired state of the Catalog
- catalog_
id str - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- provider_
config PostgresCatalog Provider Config Args - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec Args - The desired state of the Catalog
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- provider
Config Property Map - Configure the provider for management through account provider.
- spec Property Map
- The desired state of the Catalog
Outputs
All input properties are implicitly available as output properties. Additionally, the PostgresCatalog resource produces the following output properties:
- Create
Time string - (string) - A timestamp indicating when the catalog was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- (string) - Output only. The full resource path of the catalog.
- Status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- Uid string
- (string) - System-generated unique identifier for the catalog
- Update
Time string - (string) - A timestamp indicating when the catalog was last updated
- Create
Time string - (string) - A timestamp indicating when the catalog was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- (string) - Output only. The full resource path of the catalog.
- Status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- Uid string
- (string) - System-generated unique identifier for the catalog
- Update
Time string - (string) - A timestamp indicating when the catalog was last updated
- create_
time string - (string) - A timestamp indicating when the catalog was created
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- (string) - Output only. The full resource path of the catalog.
- status object
- (CatalogCatalogStatus) - The observed state of the Catalog
- uid string
- (string) - System-generated unique identifier for the catalog
- update_
time string - (string) - A timestamp indicating when the catalog was last updated
- create
Time String - (string) - A timestamp indicating when the catalog was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- (string) - Output only. The full resource path of the catalog.
- status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- uid String
- (string) - System-generated unique identifier for the catalog
- update
Time String - (string) - A timestamp indicating when the catalog was last updated
- create
Time string - (string) - A timestamp indicating when the catalog was created
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- (string) - Output only. The full resource path of the catalog.
- status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- uid string
- (string) - System-generated unique identifier for the catalog
- update
Time string - (string) - A timestamp indicating when the catalog was last updated
- create_
time str - (string) - A timestamp indicating when the catalog was created
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- (string) - Output only. The full resource path of the catalog.
- status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- uid str
- (string) - System-generated unique identifier for the catalog
- update_
time str - (string) - A timestamp indicating when the catalog was last updated
- create
Time String - (string) - A timestamp indicating when the catalog was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- (string) - Output only. The full resource path of the catalog.
- status Property Map
- (CatalogCatalogStatus) - The observed state of the Catalog
- uid String
- (string) - System-generated unique identifier for the catalog
- update
Time String - (string) - A timestamp indicating when the catalog was last updated
Look up Existing PostgresCatalog Resource
Get an existing PostgresCatalog 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?: PostgresCatalogState, opts?: CustomResourceOptions): PostgresCatalog@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog_id: Optional[str] = None,
create_time: Optional[str] = None,
name: Optional[str] = None,
provider_config: Optional[PostgresCatalogProviderConfigArgs] = None,
spec: Optional[PostgresCatalogSpecArgs] = None,
status: Optional[PostgresCatalogStatusArgs] = None,
uid: Optional[str] = None,
update_time: Optional[str] = None) -> PostgresCatalogfunc GetPostgresCatalog(ctx *Context, name string, id IDInput, state *PostgresCatalogState, opts ...ResourceOption) (*PostgresCatalog, error)public static PostgresCatalog Get(string name, Input<string> id, PostgresCatalogState? state, CustomResourceOptions? opts = null)public static PostgresCatalog get(String name, Output<String> id, PostgresCatalogState state, CustomResourceOptions options)resources: _: type: databricks:PostgresCatalog get: id: ${id}import {
to = databricks_postgrescatalog.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
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Create
Time string - (string) - A timestamp indicating when the catalog was created
- Name string
- (string) - Output only. The full resource path of the catalog.
- Provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- Spec
Postgres
Catalog Spec - The desired state of the Catalog
- Status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- Uid string
- (string) - System-generated unique identifier for the catalog
- Update
Time string - (string) - A timestamp indicating when the catalog was last updated
- Catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Create
Time string - (string) - A timestamp indicating when the catalog was created
- Name string
- (string) - Output only. The full resource path of the catalog.
- Provider
Config PostgresCatalog Provider Config Args - Configure the provider for management through account provider.
- Spec
Postgres
Catalog Spec Args - The desired state of the Catalog
- Status
Postgres
Catalog Status Args - (CatalogCatalogStatus) - The observed state of the Catalog
- Uid string
- (string) - System-generated unique identifier for the catalog
- Update
Time string - (string) - A timestamp indicating when the catalog was last updated
- catalog_
id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- create_
time string - (string) - A timestamp indicating when the catalog was created
- name string
- (string) - Output only. The full resource path of the catalog.
- provider_
config object - Configure the provider for management through account provider.
- spec object
- The desired state of the Catalog
- status object
- (CatalogCatalogStatus) - The observed state of the Catalog
- uid string
- (string) - System-generated unique identifier for the catalog
- update_
time string - (string) - A timestamp indicating when the catalog was last updated
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- create
Time String - (string) - A timestamp indicating when the catalog was created
- name String
- (string) - Output only. The full resource path of the catalog.
- provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec - The desired state of the Catalog
- status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- uid String
- (string) - System-generated unique identifier for the catalog
- update
Time String - (string) - A timestamp indicating when the catalog was last updated
- catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- create
Time string - (string) - A timestamp indicating when the catalog was created
- name string
- (string) - Output only. The full resource path of the catalog.
- provider
Config PostgresCatalog Provider Config - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec - The desired state of the Catalog
- status
Postgres
Catalog Status - (CatalogCatalogStatus) - The observed state of the Catalog
- uid string
- (string) - System-generated unique identifier for the catalog
- update
Time string - (string) - A timestamp indicating when the catalog was last updated
- catalog_
id str - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- create_
time str - (string) - A timestamp indicating when the catalog was created
- name str
- (string) - Output only. The full resource path of the catalog.
- provider_
config PostgresCatalog Provider Config Args - Configure the provider for management through account provider.
- spec
Postgres
Catalog Spec Args - The desired state of the Catalog
- status
Postgres
Catalog Status Args - (CatalogCatalogStatus) - The observed state of the Catalog
- uid str
- (string) - System-generated unique identifier for the catalog
- update_
time str - (string) - A timestamp indicating when the catalog was last updated
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- create
Time String - (string) - A timestamp indicating when the catalog was created
- name String
- (string) - Output only. The full resource path of the catalog.
- provider
Config Property Map - Configure the provider for management through account provider.
- spec Property Map
- The desired state of the Catalog
- status Property Map
- (CatalogCatalogStatus) - The observed state of the Catalog
- uid String
- (string) - System-generated unique identifier for the catalog
- update
Time String - (string) - A timestamp indicating when the catalog was last updated
Supporting Types
PostgresCatalogProviderConfig, PostgresCatalogProviderConfigArgs
- 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.
PostgresCatalogSpec, PostgresCatalogSpecArgs
- Postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- Branch string
- (string) - The resource path of the branch associated with the catalog.
- Create
Database boolIf Missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- Postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- Branch string
- (string) - The resource path of the branch associated with the catalog.
- Create
Database boolIf Missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- postgres_
database string - (string) - The name of the Postgres database associated with the catalog
- branch string
- (string) - The resource path of the branch associated with the catalog.
- create_
database_ boolif_ missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- postgres
Database String - (string) - The name of the Postgres database associated with the catalog
- branch String
- (string) - The resource path of the branch associated with the catalog.
- create
Database BooleanIf Missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- branch string
- (string) - The resource path of the branch associated with the catalog.
- create
Database booleanIf Missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- postgres_
database str - (string) - The name of the Postgres database associated with the catalog
- branch str
- (string) - The resource path of the branch associated with the catalog.
- create_
database_ boolif_ missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
- postgres
Database String - (string) - The name of the Postgres database associated with the catalog
- branch String
- (string) - The resource path of the branch associated with the catalog.
- create
Database BooleanIf Missing If set to true, the specified postgresDatabase is created on behalf of the calling user if it does not already exist. In this case, the calling user has a role created for them in Postgres if they do not already have one.
Defaults to false, meaning that the request fails if the specified postgresDatabase does not already exist
PostgresCatalogStatus, PostgresCatalogStatusArgs
- Branch string
- (string) - The resource path of the branch associated with the catalog.
- Catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- Project string
- (string) - The resource path of the project associated with the catalog.
- Branch string
- (string) - The resource path of the branch associated with the catalog.
- Catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- Postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- Project string
- (string) - The resource path of the project associated with the catalog.
- branch string
- (string) - The resource path of the branch associated with the catalog.
- catalog_
id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- postgres_
database string - (string) - The name of the Postgres database associated with the catalog
- project string
- (string) - The resource path of the project associated with the catalog.
- branch String
- (string) - The resource path of the branch associated with the catalog.
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- postgres
Database String - (string) - The name of the Postgres database associated with the catalog
- project String
- (string) - The resource path of the project associated with the catalog.
- branch string
- (string) - The resource path of the branch associated with the catalog.
- catalog
Id string - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- postgres
Database string - (string) - The name of the Postgres database associated with the catalog
- project string
- (string) - The resource path of the project associated with the catalog.
- branch str
- (string) - The resource path of the branch associated with the catalog.
- catalog_
id str - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- postgres_
database str - (string) - The name of the Postgres database associated with the catalog
- project str
- (string) - The resource path of the project associated with the catalog.
- branch String
- (string) - The resource path of the branch associated with the catalog.
- catalog
Id String - The ID in the Unity Catalog. It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
- postgres
Database String - (string) - The name of the Postgres database associated with the catalog
- project String
- (string) - The resource path of the project associated with the catalog.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Tuesday, May 12, 2026 by Pulumi
