UNPKG

@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

118 lines (117 loc) 4.04 kB
import * as pulumi from "@pulumi/pulumi"; /** * Allows modifications to the default egress policy matrix rule * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.trustsec.EgressMatrixCellDefault("example", { * description: "Default egress rule", * defaultRule: "PERMIT_IP", * matrixCellStatus: "ENABLED", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:trustsec/egressMatrixCellDefault:EgressMatrixCellDefault example "92c1a900-8c01-11e6-996c-525400b48521" * ``` */ export declare class EgressMatrixCellDefault extends pulumi.CustomResource { /** * Get an existing EgressMatrixCellDefault 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?: EgressMatrixCellDefaultState, opts?: pulumi.CustomResourceOptions): EgressMatrixCellDefault; /** * Returns true if the given object is an instance of EgressMatrixCellDefault. 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 EgressMatrixCellDefault; /** * Can be used only if sgacls not specified. Final Catch All Rule * - Choices: `NONE`, `DENY_IP`, `PERMIT_IP` */ readonly defaultRule: pulumi.Output<string | undefined>; /** * Description */ readonly description: pulumi.Output<string | undefined>; /** * Matrix Cell Status * - Choices: `DISABLED`, `ENABLED`, `MONITOR` * - Default value: `DISABLED` */ readonly matrixCellStatus: pulumi.Output<string>; /** * List of TrustSec Security Groups ACLs */ readonly sgacls: pulumi.Output<string[] | undefined>; /** * Create a EgressMatrixCellDefault 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?: EgressMatrixCellDefaultArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EgressMatrixCellDefault resources. */ export interface EgressMatrixCellDefaultState { /** * Can be used only if sgacls not specified. Final Catch All Rule * - Choices: `NONE`, `DENY_IP`, `PERMIT_IP` */ defaultRule?: pulumi.Input<string>; /** * Description */ description?: pulumi.Input<string>; /** * Matrix Cell Status * - Choices: `DISABLED`, `ENABLED`, `MONITOR` * - Default value: `DISABLED` */ matrixCellStatus?: pulumi.Input<string>; /** * List of TrustSec Security Groups ACLs */ sgacls?: pulumi.Input<pulumi.Input<string>[]>; } /** * The set of arguments for constructing a EgressMatrixCellDefault resource. */ export interface EgressMatrixCellDefaultArgs { /** * Can be used only if sgacls not specified. Final Catch All Rule * - Choices: `NONE`, `DENY_IP`, `PERMIT_IP` */ defaultRule?: pulumi.Input<string>; /** * Description */ description?: pulumi.Input<string>; /** * Matrix Cell Status * - Choices: `DISABLED`, `ENABLED`, `MONITOR` * - Default value: `DISABLED` */ matrixCellStatus?: pulumi.Input<string>; /** * List of TrustSec Security Groups ACLs */ sgacls?: pulumi.Input<pulumi.Input<string>[]>; }