1. Packages
  2. Databricks Provider
  3. API Docs
  4. EnvironmentsWorkspaceBaseEnvironment
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.90.0
published on Thursday, Mar 19, 2026 by Pulumi

    Public Beta

    A Workspace Base Environment is a shareable specification that defines a serverless environment version and additional Python dependencies for serverless notebooks and jobs.

    By pre-materializing environments, Databricks reduces startup time and ensures consistent, reproducible environments across notebooks and jobs within the workspace.

    Note: Each workspace is limited to 10 workspace base environments.

    Example Usage

    Basic Example

    This example creates a Workspace Base Environment referencing an environment YAML file stored in a UC Volume.

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.index.WorkspaceBaseEnvironment("this", {
        displayName: "my-environment",
        filepath: "/Volumes/catalog/schema/volume/environment.yaml",
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.index.WorkspaceBaseEnvironment("this",
        display_name=my-environment,
        filepath=/Volumes/catalog/schema/volume/environment.yaml)
    
    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.NewWorkspaceBaseEnvironment(ctx, "this", &databricks.WorkspaceBaseEnvironmentArgs{
    			DisplayName: "my-environment",
    			Filepath:    "/Volumes/catalog/schema/volume/environment.yaml",
    		})
    		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.Index.WorkspaceBaseEnvironment("this", new()
        {
            DisplayName = "my-environment",
            Filepath = "/Volumes/catalog/schema/volume/environment.yaml",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.WorkspaceBaseEnvironment;
    import com.pulumi.databricks.WorkspaceBaseEnvironmentArgs;
    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 WorkspaceBaseEnvironment("this", WorkspaceBaseEnvironmentArgs.builder()
                .displayName("my-environment")
                .filepath("/Volumes/catalog/schema/volume/environment.yaml")
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:WorkspaceBaseEnvironment
        properties:
          displayName: my-environment
          filepath: /Volumes/catalog/schema/volume/environment.yaml
    

    Example with GPU Compute Type

    This example creates a GPU-specific Workspace Base Environment.

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const gpuEnv = new databricks.index.WorkspaceBaseEnvironment("gpu_env", {
        displayName: "my-gpu-environment",
        filepath: "/Volumes/catalog/schema/volume/gpu-environment.yaml",
        baseEnvironmentType: "GPU_LARGE",
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    gpu_env = databricks.index.WorkspaceBaseEnvironment("gpu_env",
        display_name=my-gpu-environment,
        filepath=/Volumes/catalog/schema/volume/gpu-environment.yaml,
        base_environment_type=GPU_LARGE)
    
    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.NewWorkspaceBaseEnvironment(ctx, "gpu_env", &databricks.WorkspaceBaseEnvironmentArgs{
    			DisplayName:         "my-gpu-environment",
    			Filepath:            "/Volumes/catalog/schema/volume/gpu-environment.yaml",
    			BaseEnvironmentType: "GPU_LARGE",
    		})
    		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 gpuEnv = new Databricks.Index.WorkspaceBaseEnvironment("gpu_env", new()
        {
            DisplayName = "my-gpu-environment",
            Filepath = "/Volumes/catalog/schema/volume/gpu-environment.yaml",
            BaseEnvironmentType = "GPU_LARGE",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.WorkspaceBaseEnvironment;
    import com.pulumi.databricks.WorkspaceBaseEnvironmentArgs;
    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 gpuEnv = new WorkspaceBaseEnvironment("gpuEnv", WorkspaceBaseEnvironmentArgs.builder()
                .displayName("my-gpu-environment")
                .filepath("/Volumes/catalog/schema/volume/gpu-environment.yaml")
                .baseEnvironmentType("GPU_LARGE")
                .build());
    
        }
    }
    
    resources:
      gpuEnv:
        type: databricks:WorkspaceBaseEnvironment
        name: gpu_env
        properties:
          displayName: my-gpu-environment
          filepath: /Volumes/catalog/schema/volume/gpu-environment.yaml
          baseEnvironmentType: GPU_LARGE
    

    Create EnvironmentsWorkspaceBaseEnvironment Resource

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

    Constructor syntax

    new EnvironmentsWorkspaceBaseEnvironment(name: string, args: EnvironmentsWorkspaceBaseEnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def EnvironmentsWorkspaceBaseEnvironment(resource_name: str,
                                             args: EnvironmentsWorkspaceBaseEnvironmentArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnvironmentsWorkspaceBaseEnvironment(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             display_name: Optional[str] = None,
                                             base_environment_type: Optional[str] = None,
                                             filepath: Optional[str] = None,
                                             provider_config: Optional[EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs] = None,
                                             workspace_base_environment_id: Optional[str] = None)
    func NewEnvironmentsWorkspaceBaseEnvironment(ctx *Context, name string, args EnvironmentsWorkspaceBaseEnvironmentArgs, opts ...ResourceOption) (*EnvironmentsWorkspaceBaseEnvironment, error)
    public EnvironmentsWorkspaceBaseEnvironment(string name, EnvironmentsWorkspaceBaseEnvironmentArgs args, CustomResourceOptions? opts = null)
    public EnvironmentsWorkspaceBaseEnvironment(String name, EnvironmentsWorkspaceBaseEnvironmentArgs args)
    public EnvironmentsWorkspaceBaseEnvironment(String name, EnvironmentsWorkspaceBaseEnvironmentArgs args, CustomResourceOptions options)
    
    type: databricks:EnvironmentsWorkspaceBaseEnvironment
    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 EnvironmentsWorkspaceBaseEnvironmentArgs
    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 EnvironmentsWorkspaceBaseEnvironmentArgs
    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 EnvironmentsWorkspaceBaseEnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnvironmentsWorkspaceBaseEnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnvironmentsWorkspaceBaseEnvironmentArgs
    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 environmentsWorkspaceBaseEnvironmentResource = new Databricks.EnvironmentsWorkspaceBaseEnvironment("environmentsWorkspaceBaseEnvironmentResource", new()
    {
        DisplayName = "string",
        BaseEnvironmentType = "string",
        Filepath = "string",
        ProviderConfig = new Databricks.Inputs.EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs
        {
            WorkspaceId = "string",
        },
        WorkspaceBaseEnvironmentId = "string",
    });
    
    example, err := databricks.NewEnvironmentsWorkspaceBaseEnvironment(ctx, "environmentsWorkspaceBaseEnvironmentResource", &databricks.EnvironmentsWorkspaceBaseEnvironmentArgs{
    	DisplayName:         pulumi.String("string"),
    	BaseEnvironmentType: pulumi.String("string"),
    	Filepath:            pulumi.String("string"),
    	ProviderConfig: &databricks.EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs{
    		WorkspaceId: pulumi.String("string"),
    	},
    	WorkspaceBaseEnvironmentId: pulumi.String("string"),
    })
    
    var environmentsWorkspaceBaseEnvironmentResource = new EnvironmentsWorkspaceBaseEnvironment("environmentsWorkspaceBaseEnvironmentResource", EnvironmentsWorkspaceBaseEnvironmentArgs.builder()
        .displayName("string")
        .baseEnvironmentType("string")
        .filepath("string")
        .providerConfig(EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs.builder()
            .workspaceId("string")
            .build())
        .workspaceBaseEnvironmentId("string")
        .build());
    
    environments_workspace_base_environment_resource = databricks.EnvironmentsWorkspaceBaseEnvironment("environmentsWorkspaceBaseEnvironmentResource",
        display_name="string",
        base_environment_type="string",
        filepath="string",
        provider_config={
            "workspace_id": "string",
        },
        workspace_base_environment_id="string")
    
    const environmentsWorkspaceBaseEnvironmentResource = new databricks.EnvironmentsWorkspaceBaseEnvironment("environmentsWorkspaceBaseEnvironmentResource", {
        displayName: "string",
        baseEnvironmentType: "string",
        filepath: "string",
        providerConfig: {
            workspaceId: "string",
        },
        workspaceBaseEnvironmentId: "string",
    });
    
    type: databricks:EnvironmentsWorkspaceBaseEnvironment
    properties:
        baseEnvironmentType: string
        displayName: string
        filepath: string
        providerConfig:
            workspaceId: string
        workspaceBaseEnvironmentId: string
    

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

    DisplayName string
    Human-readable display name for the workspace base environment
    BaseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    Filepath string
    The WSFS or UC Volumes path to the environment YAML file
    ProviderConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    WorkspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    DisplayName string
    Human-readable display name for the workspace base environment
    BaseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    Filepath string
    The WSFS or UC Volumes path to the environment YAML file
    ProviderConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    WorkspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    displayName String
    Human-readable display name for the workspace base environment
    baseEnvironmentType String
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    filepath String
    The WSFS or UC Volumes path to the environment YAML file
    providerConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    workspaceBaseEnvironmentId String
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    displayName string
    Human-readable display name for the workspace base environment
    baseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    filepath string
    The WSFS or UC Volumes path to the environment YAML file
    providerConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    workspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    display_name str
    Human-readable display name for the workspace base environment
    base_environment_type str
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    filepath str
    The WSFS or UC Volumes path to the environment YAML file
    provider_config EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    workspace_base_environment_id str
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    displayName String
    Human-readable display name for the workspace base environment
    baseEnvironmentType String
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    filepath String
    The WSFS or UC Volumes path to the environment YAML file
    providerConfig Property Map
    Configure the provider for management through account provider.
    workspaceBaseEnvironmentId String
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/

    Outputs

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

    CreateTime string
    (string) - Timestamp when the environment was created
    CreatorUserId string
    (string) - User ID of the creator
    EffectiveBaseEnvironmentType string
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault bool
    (boolean) - Whether this is the default environment for the workspace
    LastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    Message string
    (string) - Status message providing additional details about the environment status
    Name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    Status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    UpdateTime string
    (string) - Timestamp when the environment was last updated
    CreateTime string
    (string) - Timestamp when the environment was created
    CreatorUserId string
    (string) - User ID of the creator
    EffectiveBaseEnvironmentType string
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault bool
    (boolean) - Whether this is the default environment for the workspace
    LastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    Message string
    (string) - Status message providing additional details about the environment status
    Name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    Status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    UpdateTime string
    (string) - Timestamp when the environment was last updated
    createTime String
    (string) - Timestamp when the environment was created
    creatorUserId String
    (string) - User ID of the creator
    effectiveBaseEnvironmentType String
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault Boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId String
    (string) - User ID of the last user who updated the environment
    message String
    (string) - Status message providing additional details about the environment status
    name String
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    status String
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime String
    (string) - Timestamp when the environment was last updated
    createTime string
    (string) - Timestamp when the environment was created
    creatorUserId string
    (string) - User ID of the creator
    effectiveBaseEnvironmentType string
    id string
    The provider-assigned unique ID for this managed resource.
    isDefault boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    message string
    (string) - Status message providing additional details about the environment status
    name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime string
    (string) - Timestamp when the environment was last updated
    create_time str
    (string) - Timestamp when the environment was created
    creator_user_id str
    (string) - User ID of the creator
    effective_base_environment_type str
    id str
    The provider-assigned unique ID for this managed resource.
    is_default bool
    (boolean) - Whether this is the default environment for the workspace
    last_updated_user_id str
    (string) - User ID of the last user who updated the environment
    message str
    (string) - Status message providing additional details about the environment status
    name str
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    status str
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    update_time str
    (string) - Timestamp when the environment was last updated
    createTime String
    (string) - Timestamp when the environment was created
    creatorUserId String
    (string) - User ID of the creator
    effectiveBaseEnvironmentType String
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault Boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId String
    (string) - User ID of the last user who updated the environment
    message String
    (string) - Status message providing additional details about the environment status
    name String
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    status String
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime String
    (string) - Timestamp when the environment was last updated

    Look up Existing EnvironmentsWorkspaceBaseEnvironment Resource

    Get an existing EnvironmentsWorkspaceBaseEnvironment 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?: EnvironmentsWorkspaceBaseEnvironmentState, opts?: CustomResourceOptions): EnvironmentsWorkspaceBaseEnvironment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            base_environment_type: Optional[str] = None,
            create_time: Optional[str] = None,
            creator_user_id: Optional[str] = None,
            display_name: Optional[str] = None,
            effective_base_environment_type: Optional[str] = None,
            filepath: Optional[str] = None,
            is_default: Optional[bool] = None,
            last_updated_user_id: Optional[str] = None,
            message: Optional[str] = None,
            name: Optional[str] = None,
            provider_config: Optional[EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs] = None,
            status: Optional[str] = None,
            update_time: Optional[str] = None,
            workspace_base_environment_id: Optional[str] = None) -> EnvironmentsWorkspaceBaseEnvironment
    func GetEnvironmentsWorkspaceBaseEnvironment(ctx *Context, name string, id IDInput, state *EnvironmentsWorkspaceBaseEnvironmentState, opts ...ResourceOption) (*EnvironmentsWorkspaceBaseEnvironment, error)
    public static EnvironmentsWorkspaceBaseEnvironment Get(string name, Input<string> id, EnvironmentsWorkspaceBaseEnvironmentState? state, CustomResourceOptions? opts = null)
    public static EnvironmentsWorkspaceBaseEnvironment get(String name, Output<String> id, EnvironmentsWorkspaceBaseEnvironmentState state, CustomResourceOptions options)
    resources:  _:    type: databricks:EnvironmentsWorkspaceBaseEnvironment    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:
    BaseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    CreateTime string
    (string) - Timestamp when the environment was created
    CreatorUserId string
    (string) - User ID of the creator
    DisplayName string
    Human-readable display name for the workspace base environment
    EffectiveBaseEnvironmentType string
    Filepath string
    The WSFS or UC Volumes path to the environment YAML file
    IsDefault bool
    (boolean) - Whether this is the default environment for the workspace
    LastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    Message string
    (string) - Status message providing additional details about the environment status
    Name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    ProviderConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    Status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    UpdateTime string
    (string) - Timestamp when the environment was last updated
    WorkspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    BaseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    CreateTime string
    (string) - Timestamp when the environment was created
    CreatorUserId string
    (string) - User ID of the creator
    DisplayName string
    Human-readable display name for the workspace base environment
    EffectiveBaseEnvironmentType string
    Filepath string
    The WSFS or UC Volumes path to the environment YAML file
    IsDefault bool
    (boolean) - Whether this is the default environment for the workspace
    LastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    Message string
    (string) - Status message providing additional details about the environment status
    Name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    ProviderConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    Status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    UpdateTime string
    (string) - Timestamp when the environment was last updated
    WorkspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    baseEnvironmentType String
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    createTime String
    (string) - Timestamp when the environment was created
    creatorUserId String
    (string) - User ID of the creator
    displayName String
    Human-readable display name for the workspace base environment
    effectiveBaseEnvironmentType String
    filepath String
    The WSFS or UC Volumes path to the environment YAML file
    isDefault Boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId String
    (string) - User ID of the last user who updated the environment
    message String
    (string) - Status message providing additional details about the environment status
    name String
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    providerConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    status String
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime String
    (string) - Timestamp when the environment was last updated
    workspaceBaseEnvironmentId String
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    baseEnvironmentType string
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    createTime string
    (string) - Timestamp when the environment was created
    creatorUserId string
    (string) - User ID of the creator
    displayName string
    Human-readable display name for the workspace base environment
    effectiveBaseEnvironmentType string
    filepath string
    The WSFS or UC Volumes path to the environment YAML file
    isDefault boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId string
    (string) - User ID of the last user who updated the environment
    message string
    (string) - Status message providing additional details about the environment status
    name string
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    providerConfig EnvironmentsWorkspaceBaseEnvironmentProviderConfig
    Configure the provider for management through account provider.
    status string
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime string
    (string) - Timestamp when the environment was last updated
    workspaceBaseEnvironmentId string
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    base_environment_type str
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    create_time str
    (string) - Timestamp when the environment was created
    creator_user_id str
    (string) - User ID of the creator
    display_name str
    Human-readable display name for the workspace base environment
    effective_base_environment_type str
    filepath str
    The WSFS or UC Volumes path to the environment YAML file
    is_default bool
    (boolean) - Whether this is the default environment for the workspace
    last_updated_user_id str
    (string) - User ID of the last user who updated the environment
    message str
    (string) - Status message providing additional details about the environment status
    name str
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    provider_config EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs
    Configure the provider for management through account provider.
    status str
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    update_time str
    (string) - Timestamp when the environment was last updated
    workspace_base_environment_id str
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/
    baseEnvironmentType String
    The type of base environment (CPU or GPU). Possible values are: CPU, GPU
    createTime String
    (string) - Timestamp when the environment was created
    creatorUserId String
    (string) - User ID of the creator
    displayName String
    Human-readable display name for the workspace base environment
    effectiveBaseEnvironmentType String
    filepath String
    The WSFS or UC Volumes path to the environment YAML file
    isDefault Boolean
    (boolean) - Whether this is the default environment for the workspace
    lastUpdatedUserId String
    (string) - User ID of the last user who updated the environment
    message String
    (string) - Status message providing additional details about the environment status
    name String
    (string) - The resource name of the workspace base environment. Format: workspace-base-environments/{workspace-base-environment}
    providerConfig Property Map
    Configure the provider for management through account provider.
    status String
    (string) - The status of the materialized workspace base environment. Possible values are: CREATED, EXPIRED, FAILED, INVALID, PENDING, REFRESHING
    updateTime String
    (string) - Timestamp when the environment was last updated
    workspaceBaseEnvironmentId String
    The ID to use for the workspace base environment, which will become the final component of the resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/

    Supporting Types

    EnvironmentsWorkspaceBaseEnvironmentProviderConfig, EnvironmentsWorkspaceBaseEnvironmentProviderConfigArgs

    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.90.0
    published on Thursday, Mar 19, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.