import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Embedded Security Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getEmbeddedSecurityPolicy({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getEmbeddedSecurityPolicy(args: GetEmbeddedSecurityPolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEmbeddedSecurityPolicy. */ export interface GetEmbeddedSecurityPolicyArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Policy */ id?: string; /** * The name of the Policy */ name?: string; } /** * A collection of values returned by getEmbeddedSecurityPolicy. */ export interface GetEmbeddedSecurityPolicyResult { readonly assemblies: outputs.GetEmbeddedSecurityPolicyAssembly[]; /** * Setting can be string 'on' or missing for off */ readonly auditTrail: string; /** * The description of the Policy */ readonly description: string; readonly downloadUrlDatabaseOnDevice: boolean; /** * Variable name */ readonly downloadUrlDatabaseOnDeviceVariable: string; readonly failureMode: string; /** * Feature Profile ID */ readonly featureProfileId: string; /** * Setting can be string 'on' or missing for off */ readonly icmpUnreachableAllow: string; /** * The id of the Policy */ readonly id: string; readonly maxIncompleteIcmpLimit: string; readonly maxIncompleteTcpLimit: string; readonly maxIncompleteUdpLimit: string; /** * The name of the Policy */ readonly name: string; readonly nat: boolean; /** * Variable name */ readonly natVariable: string; readonly resourceProfile: string; /** * Variable name */ readonly resourceProfileVariable: string; /** * Setting can be string 'on' or missing for off */ readonly sessionReclassifyAllow: string; readonly tcpSynFloodLimit: string; /** * Setting can be string 'on' or missing for off */ readonly unifiedLogging: string; /** * The version of the Policy */ readonly version: number; } /** * This data source can read the Embedded Security Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getEmbeddedSecurityPolicy({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getEmbeddedSecurityPolicyOutput(args: GetEmbeddedSecurityPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEmbeddedSecurityPolicy. */ export interface GetEmbeddedSecurityPolicyOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * The id of the Policy */ id?: pulumi.Input; /** * The name of the Policy */ name?: pulumi.Input; } //# sourceMappingURL=getEmbeddedSecurityPolicy.d.ts.map