UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

134 lines 4.99 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource manages WAN Assurance Idp Profiles. * * An IDP Profile is a configuration setting that defines the behavior and actions of an intrusion detection and prevention (IDP) system. It specifies how the idp system should detect and respond to potential security threats or attacks on a network. * * The profile includes rules and policies that determine which types of traffic or attacks should be monitored, what actions should be taken when a threat is detected, and any exceptions or exclusions for specific destinations or attack types. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const idpprofileOne = new junipermist.org.Idpprofile("idpprofile_one", { * orgId: terraformTest.id, * baseProfile: "standard", * overwrites: [ * { * name: "server_bypass", * matching: { * severity: [], * dstSubnet: [], * attackName: ["SSL:OVERFLOW:KEY-ARG-NO-ENTROPY"], * }, * }, * { * name: "guest-bypass", * matching: { * severity: [], * dstSubnet: ["8.8.8.8/32"], * attackName: ["UDP:ZERO-DATA"], * }, * }, * ], * name: "idpprofile_one", * }); * ``` * * ## Import * * Using `pulumi import`, import `junipermist.org.Idpprofile` with: * IDP Profile can be imported by specifying the orgId and the idpprofileId * * ```sh * $ pulumi import junipermist:org/idpprofile:Idpprofile idpprofile_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309 * ``` */ export declare class Idpprofile extends pulumi.CustomResource { /** * Get an existing Idpprofile 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?: IdpprofileState, opts?: pulumi.CustomResourceOptions): Idpprofile; /** * Returns true if the given object is an instance of Idpprofile. 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 Idpprofile; /** * Built-in IDP baseline profile inherited before applying overwrites */ readonly baseProfile: pulumi.Output<string>; /** * Display name of the IDP profile */ readonly name: pulumi.Output<string>; /** * Owning organization for the IDP profile */ readonly orgId: pulumi.Output<string>; /** * IDP signature override rules applied on top of the base profile */ readonly overwrites: pulumi.Output<outputs.org.IdpprofileOverwrite[] | undefined>; /** * Create a Idpprofile 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: IdpprofileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Idpprofile resources. */ export interface IdpprofileState { /** * Built-in IDP baseline profile inherited before applying overwrites */ baseProfile?: pulumi.Input<string | undefined>; /** * Display name of the IDP profile */ name?: pulumi.Input<string | undefined>; /** * Owning organization for the IDP profile */ orgId?: pulumi.Input<string | undefined>; /** * IDP signature override rules applied on top of the base profile */ overwrites?: pulumi.Input<pulumi.Input<inputs.org.IdpprofileOverwrite>[] | undefined>; } /** * The set of arguments for constructing a Idpprofile resource. */ export interface IdpprofileArgs { /** * Built-in IDP baseline profile inherited before applying overwrites */ baseProfile: pulumi.Input<string>; /** * Display name of the IDP profile */ name?: pulumi.Input<string | undefined>; /** * Owning organization for the IDP profile */ orgId: pulumi.Input<string>; /** * IDP signature override rules applied on top of the base profile */ overwrites?: pulumi.Input<pulumi.Input<inputs.org.IdpprofileOverwrite>[] | undefined>; } //# sourceMappingURL=idpprofile.d.ts.map