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

81 lines (80 loc) 2.06 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source can read the TACACS Command Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getTacacsCommandSet({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getTacacsCommandSet(args?: GetTacacsCommandSetArgs, opts?: pulumi.InvokeOptions): Promise<GetTacacsCommandSetResult>; /** * A collection of arguments for invoking getTacacsCommandSet. */ export interface GetTacacsCommandSetArgs { /** * The id of the object */ id?: string; /** * The name of the TACACS command set */ name?: string; } /** * A collection of values returned by getTacacsCommandSet. */ export interface GetTacacsCommandSetResult { readonly commands: outputs.deviceadmin.GetTacacsCommandSetCommand[]; /** * Description */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the TACACS command set */ readonly name: string; /** * Permit unmatched commands */ readonly permitUnmatched: boolean; } /** * This data source can read the TACACS Command Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.deviceadmin.getTacacsCommandSet({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getTacacsCommandSetOutput(args?: GetTacacsCommandSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTacacsCommandSetResult>; /** * A collection of arguments for invoking getTacacsCommandSet. */ export interface GetTacacsCommandSetOutputArgs { /** * The id of the object */ id?: pulumi.Input<string>; /** * The name of the TACACS command set */ name?: pulumi.Input<string>; }