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; /** * 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; /** * A collection of arguments for invoking getDictionary. */ export interface GetDictionaryOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * The dictionary name */ name?: pulumi.Input; } //# sourceMappingURL=getDictionary.d.ts.map