@pulumi/ise
Version:
A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1
85 lines (84 loc) • 2.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* This data source can read the Identity Source Sequence.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.identitymanagement.getIdentitySourceSequence({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIdentitySourceSequence(args?: GetIdentitySourceSequenceArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentitySourceSequenceResult>;
/**
* A collection of arguments for invoking getIdentitySourceSequence.
*/
export interface GetIdentitySourceSequenceArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the identity source sequence
*/
name?: string;
}
/**
* A collection of values returned by getIdentitySourceSequence.
*/
export interface GetIdentitySourceSequenceResult {
/**
* Do not access other stores in the sequence if a selected identity store cannot be accessed for authentication
*/
readonly breakOnStoreFail: boolean;
/**
* Certificate Authentication Profile, empty if doesn't exist
*/
readonly certificateAuthenticationProfile: string;
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
readonly identitySources: outputs.identitymanagement.GetIdentitySourceSequenceIdentitySource[];
/**
* The name of the identity source sequence
*/
readonly name: string;
}
/**
* This data source can read the Identity Source Sequence.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.identitymanagement.getIdentitySourceSequence({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getIdentitySourceSequenceOutput(args?: GetIdentitySourceSequenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIdentitySourceSequenceResult>;
/**
* A collection of arguments for invoking getIdentitySourceSequence.
*/
export interface GetIdentitySourceSequenceOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the identity source sequence
*/
name?: pulumi.Input<string>;
}