Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
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:
- Break
On boolStore Fail - Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- Certificate
Authentication stringProfile - Certificate Authentication Profile, empty if doesn't exist
- Description string
- Description
- Id string
- The id of the object
- Identity
Sources List<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 stringProfile - Certificate Authentication Profile, empty if doesn't exist
- Description string
- Description
- Id string
- The id of the object
- Identity
Sources []GetIdentity Source Sequence Identity Source - Name string
- The name of the identity source sequence
- break
On BooleanStore Fail - Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificate
Authentication StringProfile - Certificate Authentication Profile, empty if doesn't exist
- description String
- Description
- id String
- The id of the object
- identity
Sources List<GetIdentity Source Sequence Identity Source> - name String
- The name of the identity source sequence
- break
On booleanStore Fail - Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificate
Authentication stringProfile - Certificate Authentication Profile, empty if doesn't exist
- description string
- Description
- id string
- The id of the object
- identity
Sources 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
- break
On BooleanStore Fail - Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
- certificate
Authentication StringProfile - Certificate Authentication Profile, empty if doesn't exist
- description String
- Description
- id String
- The id of the object
- identity
Sources 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.
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
