import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Embedded Security Policy. * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.EmbeddedSecurityPolicy("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * assemblies: [{ * ngfwPolicyId: "df8c5043-7438-47e2-97b0-8304d3bf1a82", * entries: [{ * sourceZone: "untrusted", * destinationZone: "untrusted", * }], * }], * tcpSynFloodLimit: "432", * maxIncompleteTcpLimit: "12345", * maxIncompleteUdpLimit: "12345", * maxIncompleteIcmpLimit: "12345", * auditTrail: "on", * unifiedLogging: "on", * sessionReclassifyAllow: "on", * icmpUnreachableAllow: "on", * failureMode: "close", * nat: true, * downloadUrlDatabaseOnDevice: false, * resourceProfile: "low", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "embedded_security_policy_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/embeddedSecurityPolicy:EmbeddedSecurityPolicy example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class EmbeddedSecurityPolicy extends pulumi.CustomResource { /** * Get an existing EmbeddedSecurityPolicy 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, state?: EmbeddedSecurityPolicyState, opts?: pulumi.CustomResourceOptions): EmbeddedSecurityPolicy; /** * Returns true if the given object is an instance of EmbeddedSecurityPolicy. 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 EmbeddedSecurityPolicy; readonly assemblies: pulumi.Output; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ readonly auditTrail: pulumi.Output; /** * The description of the Policy */ readonly description: pulumi.Output; readonly downloadUrlDatabaseOnDevice: pulumi.Output; /** * Variable name */ readonly downloadUrlDatabaseOnDeviceVariable: pulumi.Output; /** * - Choices: `close`, `open` */ readonly failureMode: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ readonly icmpUnreachableAllow: pulumi.Output; readonly maxIncompleteIcmpLimit: pulumi.Output; readonly maxIncompleteTcpLimit: pulumi.Output; readonly maxIncompleteUdpLimit: pulumi.Output; /** * The name of the Policy */ readonly name: pulumi.Output; readonly nat: pulumi.Output; /** * Variable name */ readonly natVariable: pulumi.Output; /** * - Choices: `low`, `medium`, `high` */ readonly resourceProfile: pulumi.Output; /** * Variable name */ readonly resourceProfileVariable: pulumi.Output; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ readonly sessionReclassifyAllow: pulumi.Output; readonly tcpSynFloodLimit: pulumi.Output; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ readonly unifiedLogging: pulumi.Output; /** * The version of the Policy */ readonly version: pulumi.Output; /** * Create a EmbeddedSecurityPolicy 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: EmbeddedSecurityPolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EmbeddedSecurityPolicy resources. */ export interface EmbeddedSecurityPolicyState { assemblies?: pulumi.Input[] | undefined>; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ auditTrail?: pulumi.Input; /** * The description of the Policy */ description?: pulumi.Input; downloadUrlDatabaseOnDevice?: pulumi.Input; /** * Variable name */ downloadUrlDatabaseOnDeviceVariable?: pulumi.Input; /** * - Choices: `close`, `open` */ failureMode?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ icmpUnreachableAllow?: pulumi.Input; maxIncompleteIcmpLimit?: pulumi.Input; maxIncompleteTcpLimit?: pulumi.Input; maxIncompleteUdpLimit?: pulumi.Input; /** * The name of the Policy */ name?: pulumi.Input; nat?: pulumi.Input; /** * Variable name */ natVariable?: pulumi.Input; /** * - Choices: `low`, `medium`, `high` */ resourceProfile?: pulumi.Input; /** * Variable name */ resourceProfileVariable?: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ sessionReclassifyAllow?: pulumi.Input; tcpSynFloodLimit?: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ unifiedLogging?: pulumi.Input; /** * The version of the Policy */ version?: pulumi.Input; } /** * The set of arguments for constructing a EmbeddedSecurityPolicy resource. */ export interface EmbeddedSecurityPolicyArgs { assemblies?: pulumi.Input[] | undefined>; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ auditTrail?: pulumi.Input; /** * The description of the Policy */ description?: pulumi.Input; downloadUrlDatabaseOnDevice?: pulumi.Input; /** * Variable name */ downloadUrlDatabaseOnDeviceVariable?: pulumi.Input; /** * - Choices: `close`, `open` */ failureMode?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ icmpUnreachableAllow?: pulumi.Input; maxIncompleteIcmpLimit?: pulumi.Input; maxIncompleteTcpLimit?: pulumi.Input; maxIncompleteUdpLimit?: pulumi.Input; /** * The name of the Policy */ name?: pulumi.Input; nat?: pulumi.Input; /** * Variable name */ natVariable?: pulumi.Input; /** * - Choices: `low`, `medium`, `high` */ resourceProfile?: pulumi.Input; /** * Variable name */ resourceProfileVariable?: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ sessionReclassifyAllow?: pulumi.Input; tcpSynFloodLimit?: pulumi.Input; /** * Setting can be string 'on' or missing for off * - Choices: `on` */ unifiedLogging?: pulumi.Input; } //# sourceMappingURL=embeddedSecurityPolicy.d.ts.map