1. Packages
  2. Azure DevOps Provider
  3. API Docs
  4. getIdentityGroups
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

azuredevops.getIdentityGroups

Explore with Pulumi AI

azuredevops logo
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

    Use this data source to access information about existing Groups within Azure DevOps On-Premise(Azure DevOps Server).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azuredevops from "@pulumi/azuredevops";
    
    const example = azuredevops.getProject({
        name: "Example Project",
    });
    // load all existing groups inside an organization
    const example_all_groups = azuredevops.getIdentityGroups({});
    // load all existing groups inside a specific project
    const example_project_groups = example.then(example => azuredevops.getIdentityGroups({
        projectId: example.id,
    }));
    
    import pulumi
    import pulumi_azuredevops as azuredevops
    
    example = azuredevops.get_project(name="Example Project")
    # load all existing groups inside an organization
    example_all_groups = azuredevops.get_identity_groups()
    # load all existing groups inside a specific project
    example_project_groups = azuredevops.get_identity_groups(project_id=example.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := azuredevops.LookupProject(ctx, &azuredevops.LookupProjectArgs{
    			Name: pulumi.StringRef("Example Project"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// load all existing groups inside an organization
    		_, err = azuredevops.GetIdentityGroups(ctx, &azuredevops.GetIdentityGroupsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		// load all existing groups inside a specific project
    		_, err = azuredevops.GetIdentityGroups(ctx, &azuredevops.GetIdentityGroupsArgs{
    			ProjectId: pulumi.StringRef(example.Id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureDevOps = Pulumi.AzureDevOps;
    
    return await Deployment.RunAsync(() => 
    {
        var example = AzureDevOps.GetProject.Invoke(new()
        {
            Name = "Example Project",
        });
    
        // load all existing groups inside an organization
        var example_all_groups = AzureDevOps.GetIdentityGroups.Invoke();
    
        // load all existing groups inside a specific project
        var example_project_groups = AzureDevOps.GetIdentityGroups.Invoke(new()
        {
            ProjectId = example.Apply(getProjectResult => getProjectResult.Id),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azuredevops.AzuredevopsFunctions;
    import com.pulumi.azuredevops.inputs.GetProjectArgs;
    import com.pulumi.azuredevops.inputs.GetIdentityGroupsArgs;
    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) {
            final var example = AzuredevopsFunctions.getProject(GetProjectArgs.builder()
                .name("Example Project")
                .build());
    
            // load all existing groups inside an organization
            final var example-all-groups = AzuredevopsFunctions.getIdentityGroups();
    
            // load all existing groups inside a specific project
            final var example-project-groups = AzuredevopsFunctions.getIdentityGroups(GetIdentityGroupsArgs.builder()
                .projectId(example.applyValue(getProjectResult -> getProjectResult.id()))
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: azuredevops:getProject
          arguments:
            name: Example Project
      # load all existing groups inside an organization
      example-all-groups:
        fn::invoke:
          function: azuredevops:getIdentityGroups
          arguments: {}
      # load all existing groups inside a specific project
      example-project-groups:
        fn::invoke:
          function: azuredevops:getIdentityGroups
          arguments:
            projectId: ${example.id}
    

    Using getIdentityGroups

    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 getIdentityGroups(args: GetIdentityGroupsArgs, opts?: InvokeOptions): Promise<GetIdentityGroupsResult>
    function getIdentityGroupsOutput(args: GetIdentityGroupsOutputArgs, opts?: InvokeOptions): Output<GetIdentityGroupsResult>
    def get_identity_groups(project_id: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetIdentityGroupsResult
    def get_identity_groups_output(project_id: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetIdentityGroupsResult]
    func GetIdentityGroups(ctx *Context, args *GetIdentityGroupsArgs, opts ...InvokeOption) (*GetIdentityGroupsResult, error)
    func GetIdentityGroupsOutput(ctx *Context, args *GetIdentityGroupsOutputArgs, opts ...InvokeOption) GetIdentityGroupsResultOutput

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

    public static class GetIdentityGroups 
    {
        public static Task<GetIdentityGroupsResult> InvokeAsync(GetIdentityGroupsArgs args, InvokeOptions? opts = null)
        public static Output<GetIdentityGroupsResult> Invoke(GetIdentityGroupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIdentityGroupsResult> getIdentityGroups(GetIdentityGroupsArgs args, InvokeOptions options)
    public static Output<GetIdentityGroupsResult> getIdentityGroups(GetIdentityGroupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: azuredevops:index/getIdentityGroups:getIdentityGroups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ProjectId string
    The Project ID. If no project ID is specified all groups of an organization will be returned
    ProjectId string
    The Project ID. If no project ID is specified all groups of an organization will be returned
    projectId String
    The Project ID. If no project ID is specified all groups of an organization will be returned
    projectId string
    The Project ID. If no project ID is specified all groups of an organization will be returned
    project_id str
    The Project ID. If no project ID is specified all groups of an organization will be returned
    projectId String
    The Project ID. If no project ID is specified all groups of an organization will be returned

    getIdentityGroups Result

    The following output properties are available:

    Groups List<Pulumi.AzureDevOps.Outputs.GetIdentityGroupsGroup>
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProjectId string
    Groups []GetIdentityGroupsGroup
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProjectId string
    groups List<GetIdentityGroupsGroup>
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    id String
    The provider-assigned unique ID for this managed resource.
    projectId String
    groups GetIdentityGroupsGroup[]
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    id string
    The provider-assigned unique ID for this managed resource.
    projectId string
    groups Sequence[GetIdentityGroupsGroup]
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    id str
    The provider-assigned unique ID for this managed resource.
    project_id str
    groups List<Property Map>
    A groups blocks as documented below. A set of existing groups in your Azure DevOps Organization or project with details about every single group.
    id String
    The provider-assigned unique ID for this managed resource.
    projectId String

    Supporting Types

    GetIdentityGroupsGroup

    Descriptor string
    The descriptor of the Identity Group.
    Id string
    The ID of the Identity Group.
    Name string
    This is the non-unique display name of the identity subject.
    SubjectDescriptor string
    The subject descriptor of the identity group.
    Descriptor string
    The descriptor of the Identity Group.
    Id string
    The ID of the Identity Group.
    Name string
    This is the non-unique display name of the identity subject.
    SubjectDescriptor string
    The subject descriptor of the identity group.
    descriptor String
    The descriptor of the Identity Group.
    id String
    The ID of the Identity Group.
    name String
    This is the non-unique display name of the identity subject.
    subjectDescriptor String
    The subject descriptor of the identity group.
    descriptor string
    The descriptor of the Identity Group.
    id string
    The ID of the Identity Group.
    name string
    This is the non-unique display name of the identity subject.
    subjectDescriptor string
    The subject descriptor of the identity group.
    descriptor str
    The descriptor of the Identity Group.
    id str
    The ID of the Identity Group.
    name str
    This is the non-unique display name of the identity subject.
    subject_descriptor str
    The subject descriptor of the identity group.
    descriptor String
    The descriptor of the Identity Group.
    id String
    The ID of the Identity Group.
    name String
    This is the non-unique display name of the identity subject.
    subjectDescriptor String
    The subject descriptor of the identity group.

    Package Details

    Repository
    Azure DevOps pulumi/pulumi-azuredevops
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azuredevops Terraform Provider.
    azuredevops logo
    Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi