1. Packages
  2. Temporalcloud Provider
  3. API Docs
  4. getScimGroup
Temporal Cloud 1.2.0 published on Thursday, Jan 29, 2026 by temporalio
temporalcloud logo
Temporal Cloud 1.2.0 published on Thursday, Jan 29, 2026 by temporalio

    Fetches details about a SCIM group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as temporalcloud from "@pulumi/temporalcloud";
    
    const myScimGroup = new temporalcloud.index.ScimGroup("my_scim_group", {idpId: "usually-group-name"});
    export const scimGroup = myScimGroupTemporalcloudScimGroup;
    
    import pulumi
    import pulumi_temporalcloud as temporalcloud
    
    my_scim_group = temporalcloud.index.ScimGroup("my_scim_group", idp_id=usually-group-name)
    pulumi.export("scimGroup", my_scim_group_temporalcloud_scim_group)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/temporalcloud/temporalcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := temporalcloud.NewScimGroup(ctx, "my_scim_group", &temporalcloud.ScimGroupArgs{
    			IdpId: "usually-group-name",
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("scimGroup", myScimGroupTemporalcloudScimGroup)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Temporalcloud = Pulumi.Temporalcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var myScimGroup = new Temporalcloud.Index.ScimGroup("my_scim_group", new()
        {
            IdpId = "usually-group-name",
        });
    
        return new Dictionary<string, object?>
        {
            ["scimGroup"] = myScimGroupTemporalcloudScimGroup,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.temporalcloud.ScimGroup;
    import com.pulumi.temporalcloud.ScimGroupArgs;
    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 myScimGroup = new ScimGroup("myScimGroup", ScimGroupArgs.builder()
                .idpId("usually-group-name")
                .build());
    
            ctx.export("scimGroup", myScimGroupTemporalcloudScimGroup);
        }
    }
    
    resources:
      myScimGroup:
        type: temporalcloud:ScimGroup
        name: my_scim_group
        properties:
          idpId: usually-group-name
    outputs:
      scimGroup: ${myScimGroupTemporalcloudScimGroup}
    

    Using getScimGroup

    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 getScimGroup(args: GetScimGroupArgs, opts?: InvokeOptions): Promise<GetScimGroupResult>
    function getScimGroupOutput(args: GetScimGroupOutputArgs, opts?: InvokeOptions): Output<GetScimGroupResult>
    def get_scim_group(idp_id: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetScimGroupResult
    def get_scim_group_output(idp_id: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetScimGroupResult]
    func GetScimGroup(ctx *Context, args *GetScimGroupArgs, opts ...InvokeOption) (*GetScimGroupResult, error)
    func GetScimGroupOutput(ctx *Context, args *GetScimGroupOutputArgs, opts ...InvokeOption) GetScimGroupResultOutput

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

    public static class GetScimGroup 
    {
        public static Task<GetScimGroupResult> InvokeAsync(GetScimGroupArgs args, InvokeOptions? opts = null)
        public static Output<GetScimGroupResult> Invoke(GetScimGroupInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetScimGroupResult> getScimGroup(GetScimGroupArgs args, InvokeOptions options)
    public static Output<GetScimGroupResult> getScimGroup(GetScimGroupArgs args, InvokeOptions options)
    
    fn::invoke:
      function: temporalcloud:index/getScimGroup:getScimGroup
      arguments:
        # arguments dictionary

    The following arguments are supported:

    IdpId string
    The IDP ID of the SCIM group.
    IdpId string
    The IDP ID of the SCIM group.
    idpId String
    The IDP ID of the SCIM group.
    idpId string
    The IDP ID of the SCIM group.
    idp_id str
    The IDP ID of the SCIM group.
    idpId String
    The IDP ID of the SCIM group.

    getScimGroup Result

    The following output properties are available:

    Id string
    The ID of the SCIM group.
    IdpId string
    The IDP ID of the SCIM group.
    Name string
    The name of the SCIM group.
    Id string
    The ID of the SCIM group.
    IdpId string
    The IDP ID of the SCIM group.
    Name string
    The name of the SCIM group.
    id String
    The ID of the SCIM group.
    idpId String
    The IDP ID of the SCIM group.
    name String
    The name of the SCIM group.
    id string
    The ID of the SCIM group.
    idpId string
    The IDP ID of the SCIM group.
    name string
    The name of the SCIM group.
    id str
    The ID of the SCIM group.
    idp_id str
    The IDP ID of the SCIM group.
    name str
    The name of the SCIM group.
    id String
    The ID of the SCIM group.
    idpId String
    The IDP ID of the SCIM group.
    name String
    The name of the SCIM group.

    Package Details

    Repository
    temporalcloud temporalio/terraform-provider-temporalcloud
    License
    Notes
    This Pulumi package is based on the temporalcloud Terraform Provider.
    temporalcloud logo
    Temporal Cloud 1.2.0 published on Thursday, Jan 29, 2026 by temporalio
      Meet Neo: Your AI Platform Teammate