UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

77 lines (76 loc) 3.33 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. * * ## Import * * Using `pulumi import`, import `mist_org_idpprofile` with: * * IDP Profile can be imported by specifying the org_id and the idpprofile_id * * ```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; /** * enum: `critical`, `standard`, `strict` */ readonly baseProfile: pulumi.Output<string>; readonly name: pulumi.Output<string>; readonly orgId: pulumi.Output<string>; 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 { /** * enum: `critical`, `standard`, `strict` */ baseProfile?: pulumi.Input<string>; name?: pulumi.Input<string>; orgId?: pulumi.Input<string>; overwrites?: pulumi.Input<pulumi.Input<inputs.org.IdpprofileOverwrite>[]>; } /** * The set of arguments for constructing a Idpprofile resource. */ export interface IdpprofileArgs { /** * enum: `critical`, `standard`, `strict` */ baseProfile: pulumi.Input<string>; name?: pulumi.Input<string>; orgId: pulumi.Input<string>; overwrites?: pulumi.Input<pulumi.Input<inputs.org.IdpprofileOverwrite>[]>; }