import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource can manage a Network Access Dictionary Attribute. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.networkaccess.DictionaryAttribute("example", { * dictionaryName: "CustomDict", * name: "Custom-Attr", * description: "My custom dictionary attribute", * dataType: "STRING", * directionType: "BOTH", * internalName: "Custom-Attr", * allowedValues: [{ * key: "key1", * value: "value1", * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:networkaccess/dictionaryAttribute:DictionaryAttribute example "CustomDict,Custom-Attr" * ``` */ export declare class DictionaryAttribute extends pulumi.CustomResource { /** * Get an existing DictionaryAttribute resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DictionaryAttributeState, opts?: pulumi.CustomResourceOptions): DictionaryAttribute; /** * Returns true if the given object is an instance of DictionaryAttribute. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DictionaryAttribute; /** * List of allowed values for the attribute */ readonly allowedValues: pulumi.Output; /** * The data type for the dictionary attribute * - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPV4`, `IPV6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UINT64` */ readonly dataType: pulumi.Output; /** * The description of the dictionary attribute */ readonly description: pulumi.Output; /** * The name of the dictionary the attribute belongs to */ readonly dictionaryName: pulumi.Output; /** * The direction type for the dictionary attribute * - Choices: `BOTH`, `IN`, `NONE`, `OUT` */ readonly directionType: pulumi.Output; /** * The internal name of the dictionary attribute */ readonly internalName: pulumi.Output; /** * The dictionary attribute name */ readonly name: pulumi.Output; /** * Create a DictionaryAttribute resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DictionaryAttributeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DictionaryAttribute resources. */ export interface DictionaryAttributeState { /** * List of allowed values for the attribute */ allowedValues?: pulumi.Input[] | undefined>; /** * The data type for the dictionary attribute * - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPV4`, `IPV6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UINT64` */ dataType?: pulumi.Input; /** * The description of the dictionary attribute */ description?: pulumi.Input; /** * The name of the dictionary the attribute belongs to */ dictionaryName?: pulumi.Input; /** * The direction type for the dictionary attribute * - Choices: `BOTH`, `IN`, `NONE`, `OUT` */ directionType?: pulumi.Input; /** * The internal name of the dictionary attribute */ internalName?: pulumi.Input; /** * The dictionary attribute name */ name?: pulumi.Input; } /** * The set of arguments for constructing a DictionaryAttribute resource. */ export interface DictionaryAttributeArgs { /** * List of allowed values for the attribute */ allowedValues?: pulumi.Input[] | undefined>; /** * The data type for the dictionary attribute * - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPV4`, `IPV6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UINT64` */ dataType: pulumi.Input; /** * The description of the dictionary attribute */ description?: pulumi.Input; /** * The name of the dictionary the attribute belongs to */ dictionaryName: pulumi.Input; /** * The direction type for the dictionary attribute * - Choices: `BOTH`, `IN`, `NONE`, `OUT` */ directionType?: pulumi.Input; /** * The internal name of the dictionary attribute */ internalName?: pulumi.Input; /** * The dictionary attribute name */ name?: pulumi.Input; } //# sourceMappingURL=dictionaryAttribute.d.ts.map