1. Registry
  2. Packages
  3. Databricks Provider
  4. API Docs
  5. getWorkspaceIamGroupV2
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

    Reads a single group by its internal ID, using a workspace-scoped provider.

    Example Usage

    Example usage:

    Look up a group by its internal ID, using a workspace-scoped provider.

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = databricks.getWorkspaceIamGroupV2({
        groupId: "123456789",
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.get_workspace_iam_group_v2(group_id="123456789")
    
    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.GetWorkspaceIamGroupV2(ctx, &databricks.LookupWorkspaceIamGroupV2Args{
    			GroupId: "123456789",
    		}, nil)
    		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 = Databricks.GetWorkspaceIamGroupV2.Invoke(new()
        {
            GroupId = "123456789",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.DatabricksFunctions;
    import com.pulumi.databricks.inputs.GetWorkspaceIamGroupV2Args;
    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) {
            final var this = DatabricksFunctions.getWorkspaceIamGroupV2(GetWorkspaceIamGroupV2Args.builder()
                .groupId("123456789")
                .build());
    
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: databricks:getWorkspaceIamGroupV2
          arguments:
            groupId: '123456789'
    
    pulumi {
      required_providers {
        databricks = {
          source = "pulumi/databricks"
        }
      }
    }
    
    data "databricks_getworkspaceiamgroupv2" "this" {
      group_id = "123456789"
    }
    

    Using getWorkspaceIamGroupV2

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getWorkspaceIamGroupV2(args: GetWorkspaceIamGroupV2Args, opts?: InvokeOptions): Promise<GetWorkspaceIamGroupV2Result>
    function getWorkspaceIamGroupV2Output(args: GetWorkspaceIamGroupV2OutputArgs, opts?: InvokeOutputOptions): Output<GetWorkspaceIamGroupV2Result>
    def get_workspace_iam_group_v2(group_id: Optional[str] = None,
                                   provider_config: Optional[GetWorkspaceIamGroupV2ProviderConfig] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetWorkspaceIamGroupV2Result
    def get_workspace_iam_group_v2_output(group_id: pulumi.Input[Optional[str]] = None,
                                   provider_config: pulumi.Input[Optional[GetWorkspaceIamGroupV2ProviderConfigArgs]] = None,
                                   opts: Optional[InvokeOutputOptions] = None) -> Output[GetWorkspaceIamGroupV2Result]
    func LookupWorkspaceIamGroupV2(ctx *Context, args *LookupWorkspaceIamGroupV2Args, opts ...InvokeOption) (*LookupWorkspaceIamGroupV2Result, error)
    func LookupWorkspaceIamGroupV2Output(ctx *Context, args *LookupWorkspaceIamGroupV2OutputArgs, opts ...InvokeOption) LookupWorkspaceIamGroupV2ResultOutput

    > Note: This function is named LookupWorkspaceIamGroupV2 in the Go SDK.

    public static class GetWorkspaceIamGroupV2 
    {
        public static Task<GetWorkspaceIamGroupV2Result> InvokeAsync(GetWorkspaceIamGroupV2Args args, InvokeOptions? opts = null)
        public static Output<GetWorkspaceIamGroupV2Result> Invoke(GetWorkspaceIamGroupV2InvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetWorkspaceIamGroupV2Result> Invoke(GetWorkspaceIamGroupV2InvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetWorkspaceIamGroupV2Result> getWorkspaceIamGroupV2(GetWorkspaceIamGroupV2Args args, InvokeOptions options)
    public static Output<GetWorkspaceIamGroupV2Result> getWorkspaceIamGroupV2(GetWorkspaceIamGroupV2Args args, InvokeOptions options)
    public static Output<GetWorkspaceIamGroupV2Result> getWorkspaceIamGroupV2(GetWorkspaceIamGroupV2Args args, InvokeOutputOptions options)
    
    fn::invoke:
      function: databricks:index/getWorkspaceIamGroupV2:getWorkspaceIamGroupV2
      arguments:
        # arguments dictionary
    data "databricks_get_workspace_iam_group_v2" "name" {
        # arguments
    }

    The following arguments are supported:

    GroupId string
    Internal group ID of the group in Databricks
    ProviderConfig GetWorkspaceIamGroupV2ProviderConfig
    Configure the provider for management through account provider.
    GroupId string
    Internal group ID of the group in Databricks
    ProviderConfig GetWorkspaceIamGroupV2ProviderConfig
    Configure the provider for management through account provider.
    group_id string
    Internal group ID of the group in Databricks
    provider_config object
    Configure the provider for management through account provider.
    groupId String
    Internal group ID of the group in Databricks
    providerConfig GetWorkspaceIamGroupV2ProviderConfig
    Configure the provider for management through account provider.
    groupId string
    Internal group ID of the group in Databricks
    providerConfig GetWorkspaceIamGroupV2ProviderConfig
    Configure the provider for management through account provider.
    group_id str
    Internal group ID of the group in Databricks
    provider_config GetWorkspaceIamGroupV2ProviderConfig
    Configure the provider for management through account provider.
    groupId String
    Internal group ID of the group in Databricks
    providerConfig Property Map
    Configure the provider for management through account provider.

    getWorkspaceIamGroupV2 Result

    The following output properties are available:

    AccountId string
    (string) - The parent account ID for group in Databricks
    ExternalId string
    (string) - ExternalId of the group in the customer's IdP
    GroupId string
    (string) - Internal group ID of the group in Databricks
    GroupName string
    (string) - Display name of the group
    ProviderConfig GetWorkspaceIamGroupV2ProviderConfig
    AccountId string
    (string) - The parent account ID for group in Databricks
    ExternalId string
    (string) - ExternalId of the group in the customer's IdP
    GroupId string
    (string) - Internal group ID of the group in Databricks
    GroupName string
    (string) - Display name of the group
    ProviderConfig GetWorkspaceIamGroupV2ProviderConfig
    account_id string
    (string) - The parent account ID for group in Databricks
    external_id string
    (string) - ExternalId of the group in the customer's IdP
    group_id string
    (string) - Internal group ID of the group in Databricks
    group_name string
    (string) - Display name of the group
    provider_config object
    accountId String
    (string) - The parent account ID for group in Databricks
    externalId String
    (string) - ExternalId of the group in the customer's IdP
    groupId String
    (string) - Internal group ID of the group in Databricks
    groupName String
    (string) - Display name of the group
    providerConfig GetWorkspaceIamGroupV2ProviderConfig
    accountId string
    (string) - The parent account ID for group in Databricks
    externalId string
    (string) - ExternalId of the group in the customer's IdP
    groupId string
    (string) - Internal group ID of the group in Databricks
    groupName string
    (string) - Display name of the group
    providerConfig GetWorkspaceIamGroupV2ProviderConfig
    account_id str
    (string) - The parent account ID for group in Databricks
    external_id str
    (string) - ExternalId of the group in the customer's IdP
    group_id str
    (string) - Internal group ID of the group in Databricks
    group_name str
    (string) - Display name of the group
    provider_config GetWorkspaceIamGroupV2ProviderConfig
    accountId String
    (string) - The parent account ID for group in Databricks
    externalId String
    (string) - ExternalId of the group in the customer's IdP
    groupId String
    (string) - Internal group ID of the group in Databricks
    groupName String
    (string) - Display name of the group
    providerConfig Property Map

    Supporting Types

    GetWorkspaceIamGroupV2ProviderConfig

    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 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 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