UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

65 lines (64 loc) 1.82 kB
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<GetWildfireAntiVirusProfileResult>; /** * A collection of arguments for invoking getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileArgs { /** * UUID of the resource */ id: string; /** * Name */ name?: string; } /** * A collection of values returned by getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileResult { /** * Description */ 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[]; /** * Name */ 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<GetWildfireAntiVirusProfileResult>; /** * A collection of arguments for invoking getWildfireAntiVirusProfile. */ export interface GetWildfireAntiVirusProfileOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * Name */ name?: pulumi.Input<string>; }