UNPKG

@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

77 lines (76 loc) 1.93 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source can read the TACACS Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getTacacsProfile({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getTacacsProfile(args?: GetTacacsProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetTacacsProfileResult>; /** * A collection of arguments for invoking getTacacsProfile. */ export interface GetTacacsProfileArgs { /** * The id of the object */ id?: string; /** * The name of the TACACS profile */ name?: string; } /** * A collection of values returned by getTacacsProfile. */ export interface GetTacacsProfileResult { /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the TACACS profile */ readonly name: string; readonly sessionAttributes: outputs.deviceadmin.GetTacacsProfileSessionAttribute[]; } /** * This data source can read the TACACS Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getTacacsProfile({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getTacacsProfileOutput(args?: GetTacacsProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTacacsProfileResult>; /** * A collection of arguments for invoking getTacacsProfile. */ export interface GetTacacsProfileOutputArgs { /** * The id of the object */ id?: pulumi.Input<string>; /** * The name of the TACACS profile */ name?: pulumi.Input<string>; }