@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
83 lines (82 loc) • 1.88 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Network Access Dictionary.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.networkaccess.getDictionary({
* id: "Dict1",
* });
* ```
*/
export declare function getDictionary(args?: GetDictionaryArgs, opts?: pulumi.InvokeOptions): Promise<GetDictionaryResult>;
/**
* A collection of arguments for invoking getDictionary.
*/
export interface GetDictionaryArgs {
/**
* The id of the object
*/
id?: string;
/**
* The dictionary name
*/
name?: string;
}
/**
* A collection of values returned by getDictionary.
*/
export interface GetDictionaryResult {
/**
* The description of the dictionary
*/
readonly description: string;
/**
* The dictionary attribute type
*/
readonly dictionaryAttrType: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The dictionary name
*/
readonly name: string;
/**
* The version of the dictionary
*/
readonly version: string;
}
/**
* This data source can read the Network Access Dictionary.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = ise.networkaccess.getDictionary({
* id: "Dict1",
* });
* ```
*/
export declare function getDictionaryOutput(args?: GetDictionaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDictionaryResult>;
/**
* A collection of arguments for invoking getDictionary.
*/
export interface GetDictionaryOutputArgs {
/**
* The id of the object
*/
id?: pulumi.Input<string>;
/**
* The dictionary name
*/
name?: pulumi.Input<string>;
}