import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source can read the Network Access Dictionary Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.networkaccess.getDictionaryAttribute({ * id: "Custom-Attr", * dictionaryName: "CustomDict", * }); * ``` */ export declare function getDictionaryAttribute(args: GetDictionaryAttributeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDictionaryAttribute. */ export interface GetDictionaryAttributeArgs { /** * The name of the dictionary the attribute belongs to */ dictionaryName: string; /** * The id of the object */ id?: string; /** * The dictionary attribute name */ name?: string; } /** * A collection of values returned by getDictionaryAttribute. */ export interface GetDictionaryAttributeResult { /** * List of allowed values for the attribute */ readonly allowedValues: outputs.networkaccess.GetDictionaryAttributeAllowedValue[]; /** * The data type for the dictionary attribute */ readonly dataType: string; /** * The description of the dictionary attribute */ readonly description: string; /** * The name of the dictionary the attribute belongs to */ readonly dictionaryName: string; /** * The direction type for the dictionary attribute */ readonly directionType: string; /** * The id of the object */ readonly id: string; /** * The internal name of the dictionary attribute */ readonly internalName: string; /** * The dictionary attribute name */ readonly name: string; } /** * This data source can read the Network Access Dictionary Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.networkaccess.getDictionaryAttribute({ * id: "Custom-Attr", * dictionaryName: "CustomDict", * }); * ``` */ export declare function getDictionaryAttributeOutput(args: GetDictionaryAttributeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDictionaryAttribute. */ export interface GetDictionaryAttributeOutputArgs { /** * The name of the dictionary the attribute belongs to */ dictionaryName: pulumi.Input; /** * The id of the object */ id?: pulumi.Input; /** * The dictionary attribute name */ name?: pulumi.Input; } //# sourceMappingURL=getDictionaryAttribute.d.ts.map