@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
116 lines (115 loc) • 3.51 kB
TypeScript
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 {
/**
* The device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: string;
/**
* UUID of the resource
*/
id: string;
/**
* Name
*/
name?: string;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: string;
}
/**
* A collection of values returned by getWildfireAntiVirusProfile.
*/
export interface GetWildfireAntiVirusProfileResult {
/**
* Description
*/
readonly description: string;
/**
* The device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly device: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly folder: string;
/**
* UUID of the resource
*/
readonly id: string;
/**
* Mlav exception
*/
readonly mlavExceptions: outputs.GetWildfireAntiVirusProfileMlavException[];
/**
* Name
*/
readonly name: string;
/**
* Packet capture
*/
readonly packetCapture: boolean;
/**
* Rules
*/
readonly rules: outputs.GetWildfireAntiVirusProfileRule[];
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly snippet: string;
readonly tfid: string;
/**
* Threat exception
*/
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 {
/**
* The device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: pulumi.Input<string>;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: pulumi.Input<string>;
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Name
*/
name?: pulumi.Input<string>;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: pulumi.Input<string>;
}