import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * AntiSpywareProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up anti-spyware-profile by ID * const scmAntiSpywareProfileDs = scm.getAntiSpywareProfile({ * id: "7720ab77-d9fe-42c1-8001-6ef2202aae8c", * }); * export const scmAntiSpywareProfileOutput = { * profileId: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.id), * folder: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.folder), * name: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.name), * description: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.description), * cloudInlineAnalysis: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.cloudInlineAnalysis), * }; * ``` */ export declare function getAntiSpywareProfile(args: GetAntiSpywareProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAntiSpywareProfile. */ export interface GetAntiSpywareProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the anti-spyware profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getAntiSpywareProfile. */ export interface GetAntiSpywareProfileResult { readonly cloudInlineAnalysis: boolean; readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the anti-spyware profile */ readonly id: string; readonly inlineExceptionEdlUrls: string[]; readonly inlineExceptionIpAddresses: string[]; readonly micaEngineSpywareEnableds: outputs.GetAntiSpywareProfileMicaEngineSpywareEnabled[]; readonly name: string; readonly rules: outputs.GetAntiSpywareProfileRule[]; readonly snippet: string; readonly tfid: string; readonly threatExceptions: outputs.GetAntiSpywareProfileThreatException[]; } /** * AntiSpywareProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up anti-spyware-profile by ID * const scmAntiSpywareProfileDs = scm.getAntiSpywareProfile({ * id: "7720ab77-d9fe-42c1-8001-6ef2202aae8c", * }); * export const scmAntiSpywareProfileOutput = { * profileId: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.id), * folder: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.folder), * name: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.name), * description: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.description), * cloudInlineAnalysis: scmAntiSpywareProfileDs.then(scmAntiSpywareProfileDs => scmAntiSpywareProfileDs.cloudInlineAnalysis), * }; * ``` */ export declare function getAntiSpywareProfileOutput(args: GetAntiSpywareProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAntiSpywareProfile. */ export interface GetAntiSpywareProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the anti-spyware profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getAntiSpywareProfile.d.ts.map