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

64 lines (63 loc) 2.55 kB
import * as pulumi from "@pulumi/pulumi"; /** * This resource triggers a CoA notification on TrustSec Policy, SGACL, or TrustSec Environment Data updates * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.trustsec.EgressPushMatrix("example", {force: false}); * ``` */ export declare class EgressPushMatrix extends pulumi.CustomResource { /** * Get an existing EgressPushMatrix 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?: EgressPushMatrixState, opts?: pulumi.CustomResourceOptions): EgressPushMatrix; /** * Returns true if the given object is an instance of EgressPushMatrix. 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 EgressPushMatrix; /** * Set to true to re-trigger push on update. Will automatically reset to false after execution. * - Default value: `false` */ readonly force: pulumi.Output<boolean>; /** * Create a EgressPushMatrix 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?: EgressPushMatrixArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EgressPushMatrix resources. */ export interface EgressPushMatrixState { /** * Set to true to re-trigger push on update. Will automatically reset to false after execution. * - Default value: `false` */ force?: pulumi.Input<boolean>; } /** * The set of arguments for constructing a EgressPushMatrix resource. */ export interface EgressPushMatrixArgs { /** * Set to true to re-trigger push on update. Will automatically reset to false after execution. * - Default value: `false` */ force?: pulumi.Input<boolean>; }