@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
110 lines (109 loc) • 3.43 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource can manage a Network Access Dictionary.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = new ise.networkaccess.Dictionary("example", {
* name: "Dict1",
* description: "My description",
* version: "1.1",
* dictionaryAttrType: "ENTITY_ATTR",
* });
* ```
*
* ## Import
*
* The `pulumi import` command can be used, for example:
*
* ```sh
* $ pulumi import ise:networkaccess/dictionary:Dictionary example "Dict1"
* ```
*/
export declare class Dictionary extends pulumi.CustomResource {
/**
* Get an existing Dictionary 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<pulumi.ID>, state?: DictionaryState, opts?: pulumi.CustomResourceOptions): Dictionary;
/**
* Returns true if the given object is an instance of Dictionary. 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 Dictionary;
/**
* The description of the dictionary
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The dictionary attribute type - Choices: `ENTITY_ATTR`, `MSG_ATTR`, `PIP_ATTR`
*/
readonly dictionaryAttrType: pulumi.Output<string>;
/**
* The dictionary name
*/
readonly name: pulumi.Output<string>;
/**
* The version of the dictionary
*/
readonly version: pulumi.Output<string>;
/**
* Create a Dictionary 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: DictionaryArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Dictionary resources.
*/
export interface DictionaryState {
/**
* The description of the dictionary
*/
description?: pulumi.Input<string>;
/**
* The dictionary attribute type - Choices: `ENTITY_ATTR`, `MSG_ATTR`, `PIP_ATTR`
*/
dictionaryAttrType?: pulumi.Input<string>;
/**
* The dictionary name
*/
name?: pulumi.Input<string>;
/**
* The version of the dictionary
*/
version?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Dictionary resource.
*/
export interface DictionaryArgs {
/**
* The description of the dictionary
*/
description?: pulumi.Input<string>;
/**
* The dictionary attribute type - Choices: `ENTITY_ATTR`, `MSG_ATTR`, `PIP_ATTR`
*/
dictionaryAttrType: pulumi.Input<string>;
/**
* The dictionary name
*/
name?: pulumi.Input<string>;
/**
* The version of the dictionary
*/
version: pulumi.Input<string>;
}