UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

111 lines (110 loc) 3.02 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Advanced Malware Protection Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getAdvancedMalwareProtectionPolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getAdvancedMalwareProtectionPolicyDefinition(args: GetAdvancedMalwareProtectionPolicyDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetAdvancedMalwareProtectionPolicyDefinitionResult>; /** * A collection of arguments for invoking getAdvancedMalwareProtectionPolicyDefinition. */ export interface GetAdvancedMalwareProtectionPolicyDefinitionArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getAdvancedMalwareProtectionPolicyDefinition. */ export interface GetAdvancedMalwareProtectionPolicyDefinitionResult { /** * File reputation alerts Log level */ readonly alertLogLevel: string; /** * AMP Cloud Region */ readonly ampCloudRegion: string; /** * AMP Cloud Region */ readonly ampCloudRegionEstServer: string; /** * The description of the policy definition */ readonly description: string; /** * Should file analysis be enabled */ readonly fileAnalysis: boolean; /** * File analysis alerts Log level */ readonly fileAnalysisAlertLogLevel: string; /** * TG Cloud Region */ readonly fileAnalysisCloudRegion: string; /** * List of file type */ readonly fileAnalysisFileTypes: string[]; /** * The id of the object */ readonly id: string; /** * Should match all VPNs */ readonly matchAllVpn: boolean; /** * The policy mode */ readonly mode: string; /** * The name of the policy definition */ readonly name: string; /** * List of VPN IDs */ readonly targetVpns: string[]; /** * The version of the object */ readonly version: number; } /** * This data source can read the Advanced Malware Protection Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getAdvancedMalwareProtectionPolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getAdvancedMalwareProtectionPolicyDefinitionOutput(args: GetAdvancedMalwareProtectionPolicyDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAdvancedMalwareProtectionPolicyDefinitionResult>; /** * A collection of arguments for invoking getAdvancedMalwareProtectionPolicyDefinition. */ export interface GetAdvancedMalwareProtectionPolicyDefinitionOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }