@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
87 lines (86 loc) • 2.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read a TACACS allowed protocols policy element.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.deviceadmin.getAllowedProtocolsTacacs({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getAllowedProtocolsTacacs(args?: GetAllowedProtocolsTacacsArgs, opts?: pulumi.InvokeOptions): Promise<GetAllowedProtocolsTacacsResult>;
/**
* A collection of arguments for invoking getAllowedProtocolsTacacs.
*/
export interface GetAllowedProtocolsTacacsArgs {
/**
* The id of the object
*/
id?: string;
/**
* The name of the allowed protocols
*/
name?: string;
}
/**
* A collection of values returned by getAllowedProtocolsTacacs.
*/
export interface GetAllowedProtocolsTacacsResult {
/**
* Allow CHAP
*/
readonly allowChap: boolean;
/**
* Allow MS CHAP v1
*/
readonly allowMsChapV1: boolean;
/**
* Allow PAP ASCII
*/
readonly allowPapAscii: boolean;
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the allowed protocols
*/
readonly name: string;
}
/**
* This data source can read a TACACS allowed protocols policy element.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.deviceadmin.getAllowedProtocolsTacacs({
* id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
* });
* ```
*/
export declare function getAllowedProtocolsTacacsOutput(args?: GetAllowedProtocolsTacacsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAllowedProtocolsTacacsResult>;
/**
* A collection of arguments for invoking getAllowedProtocolsTacacs.
*/
export interface GetAllowedProtocolsTacacsOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The name of the allowed protocols
*/
name?: pulumi.Input<string>;
}