Cisco ISE v0.2.1 published on Saturday, Mar 15, 2025 by Pulumi
ise.identitymanagement.getIdentitySourceSequence
Explore with Pulumi AI
This data source can read the Identity Source Sequence.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = ise.identitymanagement.getIdentitySourceSequence({
    id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
});
import pulumi
import pulumi_ise as ise
example = ise.identitymanagement.get_identity_source_sequence(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
package main
import (
	"github.com/pulumi/pulumi-ise/sdk/go/ise/identitymanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := identitymanagement.LookupIdentitySourceSequence(ctx, &identitymanagement.LookupIdentitySourceSequenceArgs{
			Id: pulumi.StringRef("76d24097-41c4-4558-a4d0-a8c07ac08470"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;
return await Deployment.RunAsync(() => 
{
    var example = Ise.IdentityManagement.GetIdentitySourceSequence.Invoke(new()
    {
        Id = "76d24097-41c4-4558-a4d0-a8c07ac08470",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.identitymanagement.IdentitymanagementFunctions;
import com.pulumi.ise.identitymanagement.inputs.GetIdentitySourceSequenceArgs;
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 = IdentitymanagementFunctions.getIdentitySourceSequence(GetIdentitySourceSequenceArgs.builder()
            .id("76d24097-41c4-4558-a4d0-a8c07ac08470")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: ise:identitymanagement:getIdentitySourceSequence
      arguments:
        id: 76d24097-41c4-4558-a4d0-a8c07ac08470
Using getIdentitySourceSequence
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 getIdentitySourceSequence(args: GetIdentitySourceSequenceArgs, opts?: InvokeOptions): Promise<GetIdentitySourceSequenceResult>
function getIdentitySourceSequenceOutput(args: GetIdentitySourceSequenceOutputArgs, opts?: InvokeOptions): Output<GetIdentitySourceSequenceResult>def get_identity_source_sequence(id: Optional[str] = None,
                                 name: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetIdentitySourceSequenceResult
def get_identity_source_sequence_output(id: Optional[pulumi.Input[str]] = None,
                                 name: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetIdentitySourceSequenceResult]func LookupIdentitySourceSequence(ctx *Context, args *LookupIdentitySourceSequenceArgs, opts ...InvokeOption) (*LookupIdentitySourceSequenceResult, error)
func LookupIdentitySourceSequenceOutput(ctx *Context, args *LookupIdentitySourceSequenceOutputArgs, opts ...InvokeOption) LookupIdentitySourceSequenceResultOutput> Note: This function is named LookupIdentitySourceSequence in the Go SDK.
public static class GetIdentitySourceSequence 
{
    public static Task<GetIdentitySourceSequenceResult> InvokeAsync(GetIdentitySourceSequenceArgs args, InvokeOptions? opts = null)
    public static Output<GetIdentitySourceSequenceResult> Invoke(GetIdentitySourceSequenceInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIdentitySourceSequenceResult> getIdentitySourceSequence(GetIdentitySourceSequenceArgs args, InvokeOptions options)
public static Output<GetIdentitySourceSequenceResult> getIdentitySourceSequence(GetIdentitySourceSequenceArgs args, InvokeOptions options)
fn::invoke:
  function: ise:identitymanagement/getIdentitySourceSequence:getIdentitySourceSequence
  arguments:
    # arguments dictionaryThe following arguments are supported:
getIdentitySourceSequence Result
The following output properties are available:
- BreakOn boolStore Fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- CertificateAuthentication stringProfile 
- Certificate Authentication Profile, empty if doesn't exist
- Description string
- Description
- Id string
- The id of the object
- IdentitySources List<GetIdentity Source Sequence Identity Source> 
- Name string
- The name of the identity source sequence
- BreakOn boolStore Fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- CertificateAuthentication stringProfile 
- Certificate Authentication Profile, empty if doesn't exist
- Description string
- Description
- Id string
- The id of the object
- IdentitySources []GetIdentity Source Sequence Identity Source 
- Name string
- The name of the identity source sequence
- breakOn BooleanStore Fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificateAuthentication StringProfile 
- Certificate Authentication Profile, empty if doesn't exist
- description String
- Description
- id String
- The id of the object
- identitySources List<GetIdentity Source Sequence Identity Source> 
- name String
- The name of the identity source sequence
- breakOn booleanStore Fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificateAuthentication stringProfile 
- Certificate Authentication Profile, empty if doesn't exist
- description string
- Description
- id string
- The id of the object
- identitySources GetIdentity Source Sequence Identity Source[] 
- name string
- The name of the identity source sequence
- break_on_ boolstore_ fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificate_authentication_ strprofile 
- Certificate Authentication Profile, empty if doesn't exist
- description str
- Description
- id str
- The id of the object
- identity_sources Sequence[GetIdentity Source Sequence Identity Source] 
- name str
- The name of the identity source sequence
- breakOn BooleanStore Fail 
- Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificateAuthentication StringProfile 
- Certificate Authentication Profile, empty if doesn't exist
- description String
- Description
- id String
- The id of the object
- identitySources List<Property Map>
- name String
- The name of the identity source sequence
Supporting Types
GetIdentitySourceSequenceIdentitySource     
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the iseTerraform Provider.
