1. Registry
  2. Packages
  3. Databricks Provider
  4. API Docs
  5. WorkspaceIamWorkspaceAssignmentV2
Viewing docs for Databricks v1.109.0
published on Tuesday, Sep 8, 2026 by Pulumi
databricks logo databricks logo
Viewing docs for Databricks v1.109.0
published on Tuesday, Sep 8, 2026 by Pulumi

    Public Beta

    API Documentation

    Manages the direct assignment of a principal to the workspace, along with the entitlements that assignment grants, using a workspace-scoped provider. Creating the resource assigns the principal; deleting it removes the assignment. entitlements is the only updatable field.

    Example Usage

    Example usage:

    Assigns a principal to the workspace with a set of entitlements, using a workspace-scoped provider (the workspace is taken from the provider context, so only principalId identifies the assignment). entitlements is the set granted directly on it (at least one is required). entitlements is the only updatable field — edit the list and re-apply to update in place. Changing principalId replaces the assignment.

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.WorkspaceIamWorkspaceAssignmentV2("this", {
        principalId: "987654321",
        entitlements: ["WORKSPACE_ACCESS"],
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.WorkspaceIamWorkspaceAssignmentV2("this",
        principal_id="987654321",
        entitlements=["WORKSPACE_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.NewWorkspaceIamWorkspaceAssignmentV2(ctx, "this", &databricks.WorkspaceIamWorkspaceAssignmentV2Args{
    			PrincipalId: pulumi.String("987654321"),
    			Entitlements: pulumi.StringArray{
    				pulumi.String("WORKSPACE_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.WorkspaceIamWorkspaceAssignmentV2("this", new()
        {
            PrincipalId = "987654321",
            Entitlements = new[]
            {
                "WORKSPACE_ACCESS",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.WorkspaceIamWorkspaceAssignmentV2;
    import com.pulumi.databricks.WorkspaceIamWorkspaceAssignmentV2Args;
    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 WorkspaceIamWorkspaceAssignmentV2("this", WorkspaceIamWorkspaceAssignmentV2Args.builder()
                .principalId("987654321")
                .entitlements("WORKSPACE_ACCESS")
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:WorkspaceIamWorkspaceAssignmentV2
        properties:
          principalId: 9.87654321e+08
          entitlements:
            - WORKSPACE_ACCESS
    
    pulumi {
      required_providers {
        databricks = {
          source = "pulumi/databricks"
        }
      }
    }
    
    resource "databricks_workspaceiamworkspaceassignmentv2" "this" {
      principal_id = 987654321
      entitlements = ["WORKSPACE_ACCESS"]
    }
    

    Create WorkspaceIamWorkspaceAssignmentV2 Resource

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

    Constructor syntax

    new WorkspaceIamWorkspaceAssignmentV2(name: string, args: WorkspaceIamWorkspaceAssignmentV2Args, opts?: CustomResourceOptions);
    @overload
    def WorkspaceIamWorkspaceAssignmentV2(resource_name: str,
                                          args: WorkspaceIamWorkspaceAssignmentV2Args,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceIamWorkspaceAssignmentV2(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          principal_id: Optional[str] = None,
                                          entitlements: Optional[Sequence[str]] = None,
                                          provider_config: Optional[WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs] = None,
                                          workspace_id: Optional[str] = None)
    func NewWorkspaceIamWorkspaceAssignmentV2(ctx *Context, name string, args WorkspaceIamWorkspaceAssignmentV2Args, opts ...ResourceOption) (*WorkspaceIamWorkspaceAssignmentV2, error)
    public WorkspaceIamWorkspaceAssignmentV2(string name, WorkspaceIamWorkspaceAssignmentV2Args args, CustomResourceOptions? opts = null)
    public WorkspaceIamWorkspaceAssignmentV2(String name, WorkspaceIamWorkspaceAssignmentV2Args args)
    public WorkspaceIamWorkspaceAssignmentV2(String name, WorkspaceIamWorkspaceAssignmentV2Args args, CustomResourceOptions options)
    
    type: databricks:WorkspaceIamWorkspaceAssignmentV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "databricks_workspace_iam_workspace_assignment_v2" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args WorkspaceIamWorkspaceAssignmentV2Args
    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 WorkspaceIamWorkspaceAssignmentV2Args
    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 WorkspaceIamWorkspaceAssignmentV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceIamWorkspaceAssignmentV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceIamWorkspaceAssignmentV2Args
    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 workspaceIamWorkspaceAssignmentV2Resource = new Databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", new()
    {
        PrincipalId = "string",
        Entitlements = new[]
        {
            "string",
        },
        ProviderConfig = new Databricks.Inputs.WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
        {
            WorkspaceId = "string",
        },
        WorkspaceId = "string",
    });
    
    example, err := databricks.NewWorkspaceIamWorkspaceAssignmentV2(ctx, "workspaceIamWorkspaceAssignmentV2Resource", &databricks.WorkspaceIamWorkspaceAssignmentV2Args{
    	PrincipalId: pulumi.String("string"),
    	Entitlements: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ProviderConfig: &databricks.WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs{
    		WorkspaceId: pulumi.String("string"),
    	},
    	WorkspaceId: pulumi.String("string"),
    })
    
    resource "databricks_workspace_iam_workspace_assignment_v2" "workspaceIamWorkspaceAssignmentV2Resource" {
      lifecycle {
        create_before_destroy = true
      }
      principal_id = "string"
      entitlements = ["string"]
      provider_config = {
        workspace_id = "string"
      }
      workspace_id = "string"
    }
    
    var workspaceIamWorkspaceAssignmentV2Resource = new WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", WorkspaceIamWorkspaceAssignmentV2Args.builder()
        .principalId("string")
        .entitlements("string")
        .providerConfig(WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs.builder()
            .workspaceId("string")
            .build())
        .workspaceId("string")
        .build());
    
    workspace_iam_workspace_assignment_v2_resource = databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource",
        principal_id="string",
        entitlements=["string"],
        provider_config={
            "workspace_id": "string",
        },
        workspace_id="string")
    
    const workspaceIamWorkspaceAssignmentV2Resource = new databricks.WorkspaceIamWorkspaceAssignmentV2("workspaceIamWorkspaceAssignmentV2Resource", {
        principalId: "string",
        entitlements: ["string"],
        providerConfig: {
            workspaceId: "string",
        },
        workspaceId: "string",
    });
    
    type: databricks:WorkspaceIamWorkspaceAssignmentV2
    properties:
        entitlements:
            - string
        principalId: string
        providerConfig:
            workspaceId: string
        workspaceId: string
    

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

    PrincipalId string
    The internal ID of the principal (user/sp/group) in Databricks
    Entitlements List<string>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    ProviderConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    PrincipalId string
    The internal ID of the principal (user/sp/group) in Databricks
    Entitlements []string
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    ProviderConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
    Configure the provider for management through account provider.
    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    principal_id string
    The internal ID of the principal (user/sp/group) in Databricks
    entitlements list(string)
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    provider_config object
    Configure the provider for management through account provider.
    workspace_id string
    (integer) - The workspace ID where the principal is assigned
    principalId String
    The internal ID of the principal (user/sp/group) in Databricks
    entitlements List<String>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    providerConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    workspaceId String
    (integer) - The workspace ID where the principal is assigned
    principalId string
    The internal ID of the principal (user/sp/group) in Databricks
    entitlements string[]
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    providerConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    workspaceId string
    (integer) - The workspace ID where the principal is assigned
    principal_id str
    The internal ID of the principal (user/sp/group) in Databricks
    entitlements Sequence[str]
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    provider_config WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
    Configure the provider for management through account provider.
    workspace_id str
    (integer) - The workspace ID where the principal is assigned
    principalId String
    The internal ID of the principal (user/sp/group) in Databricks
    entitlements List<String>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    providerConfig Property Map
    Configure the provider for management through account provider.
    workspaceId String
    (integer) - The workspace ID where the principal is assigned

    Outputs

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

    AccountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    EffectiveEntitlements List<string>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    Id string
    The provider-assigned unique ID for this managed resource.
    PrincipalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    AccountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    EffectiveEntitlements []string
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    Id string
    The provider-assigned unique ID for this managed resource.
    PrincipalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    account_id string
    (string) - The account ID parent of the workspace where the principal is assigned
    effective_entitlements list(string)
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    id string
    The provider-assigned unique ID for this managed resource.
    principal_type string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    accountId String
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements List<String>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    id String
    The provider-assigned unique ID for this managed resource.
    principalType String
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    accountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements string[]
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    id string
    The provider-assigned unique ID for this managed resource.
    principalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    account_id str
    (string) - The account ID parent of the workspace where the principal is assigned
    effective_entitlements Sequence[str]
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    id str
    The provider-assigned unique ID for this managed resource.
    principal_type str
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    accountId String
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements List<String>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    id String
    The provider-assigned unique ID for this managed resource.
    principalType String
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER

    Look up Existing WorkspaceIamWorkspaceAssignmentV2 Resource

    Get an existing WorkspaceIamWorkspaceAssignmentV2 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?: WorkspaceIamWorkspaceAssignmentV2State, opts?: CustomResourceOptions): WorkspaceIamWorkspaceAssignmentV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            effective_entitlements: Optional[Sequence[str]] = None,
            entitlements: Optional[Sequence[str]] = None,
            principal_id: Optional[str] = None,
            principal_type: Optional[str] = None,
            provider_config: Optional[WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs] = None,
            workspace_id: Optional[str] = None) -> WorkspaceIamWorkspaceAssignmentV2
    func GetWorkspaceIamWorkspaceAssignmentV2(ctx *Context, name string, id IDInput, state *WorkspaceIamWorkspaceAssignmentV2State, opts ...ResourceOption) (*WorkspaceIamWorkspaceAssignmentV2, error)
    public static WorkspaceIamWorkspaceAssignmentV2 Get(string name, Input<string> id, WorkspaceIamWorkspaceAssignmentV2State? state, CustomResourceOptions? opts = null)
    public static WorkspaceIamWorkspaceAssignmentV2 get(String name, Output<String> id, WorkspaceIamWorkspaceAssignmentV2State state, CustomResourceOptions options)
    resources:  _:    type: databricks:WorkspaceIamWorkspaceAssignmentV2    get:      id: ${id}
    import {
      to = databricks_workspace_iam_workspace_assignment_v2.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.
    The following state arguments are supported:
    AccountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    EffectiveEntitlements List<string>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    Entitlements List<string>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    PrincipalId string
    The internal ID of the principal (user/sp/group) in Databricks
    PrincipalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    ProviderConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    AccountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    EffectiveEntitlements []string
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    Entitlements []string
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    PrincipalId string
    The internal ID of the principal (user/sp/group) in Databricks
    PrincipalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    ProviderConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
    Configure the provider for management through account provider.
    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    account_id string
    (string) - The account ID parent of the workspace where the principal is assigned
    effective_entitlements list(string)
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    entitlements list(string)
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    principal_id string
    The internal ID of the principal (user/sp/group) in Databricks
    principal_type string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    provider_config object
    Configure the provider for management through account provider.
    workspace_id string
    (integer) - The workspace ID where the principal is assigned
    accountId String
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements List<String>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    entitlements List<String>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    principalId String
    The internal ID of the principal (user/sp/group) in Databricks
    principalType String
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    providerConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    workspaceId String
    (integer) - The workspace ID where the principal is assigned
    accountId string
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements string[]
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    entitlements string[]
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    principalId string
    The internal ID of the principal (user/sp/group) in Databricks
    principalType string
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    providerConfig WorkspaceIamWorkspaceAssignmentV2ProviderConfig
    Configure the provider for management through account provider.
    workspaceId string
    (integer) - The workspace ID where the principal is assigned
    account_id str
    (string) - The account ID parent of the workspace where the principal is assigned
    effective_entitlements Sequence[str]
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    entitlements Sequence[str]
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    principal_id str
    The internal ID of the principal (user/sp/group) in Databricks
    principal_type str
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    provider_config WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs
    Configure the provider for management through account provider.
    workspace_id str
    (integer) - The workspace ID where the principal is assigned
    accountId String
    (string) - The account ID parent of the workspace where the principal is assigned
    effectiveEntitlements List<String>
    (list of string) - Every entitlement the principal holds in this workspace, whether granted directly or through group membership. Get responses populate this field. List responses leave it empty
    entitlements List<String>
    Entitlements granted directly to the principal on this workspace. This is the only client-settable field. Create and update manage exactly this set, including entitlements the principal also holds through a group. List responses leave this field empty. Get a single principal to read its entitlements
    principalId String
    The internal ID of the principal (user/sp/group) in Databricks
    principalType String
    (string) - The type of the principal (user/service principal/group) that is assigned. Possible values are: GROUP, SERVICE_PRINCIPAL, USER
    providerConfig Property Map
    Configure the provider for management through account provider.
    workspaceId String
    (integer) - The workspace ID where the principal is assigned

    Supporting Types

    WorkspaceIamWorkspaceAssignmentV2ProviderConfig, WorkspaceIamWorkspaceAssignmentV2ProviderConfigArgs

    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    WorkspaceId string
    (integer) - The workspace ID where the principal is assigned
    workspace_id string
    (integer) - The workspace ID where the principal is assigned
    workspaceId String
    (integer) - The workspace ID where the principal is assigned
    workspaceId string
    (integer) - The workspace ID where the principal is assigned
    workspace_id str
    (integer) - The workspace ID where the principal is assigned
    workspaceId String
    (integer) - The workspace ID where the principal is assigned

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo databricks logo
    Viewing docs for Databricks v1.109.0
    published on Tuesday, Sep 8, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial