import * as pulumi from "@pulumi/pulumi"; /** * ProfileGroup data source */ export declare function getProfileGroup(args: GetProfileGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the profile group */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getProfileGroup. */ export interface GetProfileGroupResult { readonly aiSecurities: string[]; readonly dataFilterings: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly dnsSecurities: string[]; readonly fileBlockings: string[]; readonly folder: string; /** * The UUID of the profile group */ readonly id: string; readonly name: string; readonly saasSecurities: string[]; readonly snippet: string; readonly spywares: string[]; readonly tfid: string; readonly urlFilterings: string[]; readonly virusAndWildfireAnalyses: string[]; readonly vulnerabilities: string[]; } /** * ProfileGroup data source */ export declare function getProfileGroupOutput(args: GetProfileGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProfileGroup. */ export interface GetProfileGroupOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the profile group */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getProfileGroup.d.ts.map