1. Packages
  2. Databricks Provider
  3. API Docs
  4. SystemSchema
Viewing docs for Databricks v1.88.0
published on Thursday, Feb 26, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.88.0
published on Thursday, Feb 26, 2026 by Pulumi

    Manages system tables enablement. System tables are a Databricks-hosted analytical store of your account’s operational data. System tables can be used for historical observability across your account. System tables must be enabled by an account admin.

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

    Certain system schemas (such as billing) may be auto-enabled once GA and should not be manually declared in Pulumi configurations. Certain schemas can’t also be disabled completely.

    Example Usage

    Enable the system schema access

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.SystemSchema("this", {schema: "access"});
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.SystemSchema("this", schema="access")
    
    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.NewSystemSchema(ctx, "this", &databricks.SystemSchemaArgs{
    			Schema: pulumi.String("access"),
    		})
    		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.SystemSchema("this", new()
        {
            Schema = "access",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.SystemSchema;
    import com.pulumi.databricks.SystemSchemaArgs;
    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 SystemSchema("this", SystemSchemaArgs.builder()
                .schema("access")
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:SystemSchema
        properties:
          schema: access
    

    Create SystemSchema Resource

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

    Constructor syntax

    new SystemSchema(name: string, args: SystemSchemaArgs, opts?: CustomResourceOptions);
    @overload
    def SystemSchema(resource_name: str,
                     args: SystemSchemaArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemSchema(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     schema: Optional[str] = None,
                     provider_config: Optional[SystemSchemaProviderConfigArgs] = None)
    func NewSystemSchema(ctx *Context, name string, args SystemSchemaArgs, opts ...ResourceOption) (*SystemSchema, error)
    public SystemSchema(string name, SystemSchemaArgs args, CustomResourceOptions? opts = null)
    public SystemSchema(String name, SystemSchemaArgs args)
    public SystemSchema(String name, SystemSchemaArgs args, CustomResourceOptions options)
    
    type: databricks:SystemSchema
    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 SystemSchemaArgs
    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 SystemSchemaArgs
    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 SystemSchemaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemSchemaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemSchemaArgs
    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 systemSchemaResource = new Databricks.SystemSchema("systemSchemaResource", new()
    {
        Schema = "string",
        ProviderConfig = new Databricks.Inputs.SystemSchemaProviderConfigArgs
        {
            WorkspaceId = "string",
        },
    });
    
    example, err := databricks.NewSystemSchema(ctx, "systemSchemaResource", &databricks.SystemSchemaArgs{
    	Schema: pulumi.String("string"),
    	ProviderConfig: &databricks.SystemSchemaProviderConfigArgs{
    		WorkspaceId: pulumi.String("string"),
    	},
    })
    
    var systemSchemaResource = new SystemSchema("systemSchemaResource", SystemSchemaArgs.builder()
        .schema("string")
        .providerConfig(SystemSchemaProviderConfigArgs.builder()
            .workspaceId("string")
            .build())
        .build());
    
    system_schema_resource = databricks.SystemSchema("systemSchemaResource",
        schema="string",
        provider_config={
            "workspace_id": "string",
        })
    
    const systemSchemaResource = new databricks.SystemSchema("systemSchemaResource", {
        schema: "string",
        providerConfig: {
            workspaceId: "string",
        },
    });
    
    type: databricks:SystemSchema
    properties:
        providerConfig:
            workspaceId: string
        schema: string
    

    SystemSchema 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 SystemSchema resource accepts the following input properties:

    Schema string
    name of the system schema.
    ProviderConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    Schema string
    name of the system schema.
    ProviderConfig SystemSchemaProviderConfigArgs
    Configure the provider for management through account provider. This block consists of the following fields:
    schema String
    name of the system schema.
    providerConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    schema string
    name of the system schema.
    providerConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    schema str
    name of the system schema.
    provider_config SystemSchemaProviderConfigArgs
    Configure the provider for management through account provider. This block consists of the following fields:
    schema String
    name of the system schema.
    providerConfig Property Map
    Configure the provider for management through account provider. This block consists of the following fields:

    Outputs

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

    AutoEnabled bool
    FullName string
    the full name of the system schema, in form of system.<schema>.
    Id string
    The provider-assigned unique ID for this managed resource.
    MetastoreId string
    State string
    The current state of enablement for the system schema.
    AutoEnabled bool
    FullName string
    the full name of the system schema, in form of system.<schema>.
    Id string
    The provider-assigned unique ID for this managed resource.
    MetastoreId string
    State string
    The current state of enablement for the system schema.
    autoEnabled Boolean
    fullName String
    the full name of the system schema, in form of system.<schema>.
    id String
    The provider-assigned unique ID for this managed resource.
    metastoreId String
    state String
    The current state of enablement for the system schema.
    autoEnabled boolean
    fullName string
    the full name of the system schema, in form of system.<schema>.
    id string
    The provider-assigned unique ID for this managed resource.
    metastoreId string
    state string
    The current state of enablement for the system schema.
    auto_enabled bool
    full_name str
    the full name of the system schema, in form of system.<schema>.
    id str
    The provider-assigned unique ID for this managed resource.
    metastore_id str
    state str
    The current state of enablement for the system schema.
    autoEnabled Boolean
    fullName String
    the full name of the system schema, in form of system.<schema>.
    id String
    The provider-assigned unique ID for this managed resource.
    metastoreId String
    state String
    The current state of enablement for the system schema.

    Look up Existing SystemSchema Resource

    Get an existing SystemSchema 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?: SystemSchemaState, opts?: CustomResourceOptions): SystemSchema
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_enabled: Optional[bool] = None,
            full_name: Optional[str] = None,
            metastore_id: Optional[str] = None,
            provider_config: Optional[SystemSchemaProviderConfigArgs] = None,
            schema: Optional[str] = None,
            state: Optional[str] = None) -> SystemSchema
    func GetSystemSchema(ctx *Context, name string, id IDInput, state *SystemSchemaState, opts ...ResourceOption) (*SystemSchema, error)
    public static SystemSchema Get(string name, Input<string> id, SystemSchemaState? state, CustomResourceOptions? opts = null)
    public static SystemSchema get(String name, Output<String> id, SystemSchemaState state, CustomResourceOptions options)
    resources:  _:    type: databricks:SystemSchema    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:
    AutoEnabled bool
    FullName string
    the full name of the system schema, in form of system.<schema>.
    MetastoreId string
    ProviderConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    Schema string
    name of the system schema.
    State string
    The current state of enablement for the system schema.
    AutoEnabled bool
    FullName string
    the full name of the system schema, in form of system.<schema>.
    MetastoreId string
    ProviderConfig SystemSchemaProviderConfigArgs
    Configure the provider for management through account provider. This block consists of the following fields:
    Schema string
    name of the system schema.
    State string
    The current state of enablement for the system schema.
    autoEnabled Boolean
    fullName String
    the full name of the system schema, in form of system.<schema>.
    metastoreId String
    providerConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    schema String
    name of the system schema.
    state String
    The current state of enablement for the system schema.
    autoEnabled boolean
    fullName string
    the full name of the system schema, in form of system.<schema>.
    metastoreId string
    providerConfig SystemSchemaProviderConfig
    Configure the provider for management through account provider. This block consists of the following fields:
    schema string
    name of the system schema.
    state string
    The current state of enablement for the system schema.
    auto_enabled bool
    full_name str
    the full name of the system schema, in form of system.<schema>.
    metastore_id str
    provider_config SystemSchemaProviderConfigArgs
    Configure the provider for management through account provider. This block consists of the following fields:
    schema str
    name of the system schema.
    state str
    The current state of enablement for the system schema.
    autoEnabled Boolean
    fullName String
    the full name of the system schema, in form of system.<schema>.
    metastoreId String
    providerConfig Property Map
    Configure the provider for management through account provider. This block consists of the following fields:
    schema String
    name of the system schema.
    state String
    The current state of enablement for the system schema.

    Supporting Types

    SystemSchemaProviderConfig, SystemSchemaProviderConfigArgs

    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId 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.
    workspaceId 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 databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v1.88.0
    published on Thursday, Feb 26, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.