import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * WildfireAntiVirusProfile data source */ export declare function getWildfireAntiVirusProfile(args: GetWildfireAntiVirusProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly mlavExceptions: outputs.GetWildfireAntiVirusProfileMlavException[]; readonly name: string; readonly packetCapture: boolean; readonly rules: outputs.GetWildfireAntiVirusProfileRule[]; readonly snippet: string; readonly tfid: string; readonly threatExceptions: outputs.GetWildfireAntiVirusProfileThreatException[]; } /** * WildfireAntiVirusProfile data source */ export declare function getWildfireAntiVirusProfileOutput(args: GetWildfireAntiVirusProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getWildfireAntiVirusProfile.d.ts.map