UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

83 lines (82 loc) 3.66 kB
import * as pulumi from "@pulumi/pulumi"; /** * * [Official documentation](https://help.zscaler.com/zia/configuring-malware-protection-policy) * * [API documentation](https://help.zscaler.com/zia/malware-protection-policy#/cyberThreatProtection/atpMalwareInspection-put) * * The **zia_atp_malware_inspection** resource allows you to update security exceptions for the Malware Protection inspection policy. To learn more see [Configuring Advanced Settings](https://help.zscaler.com/zia/configuring-advanced-settings) * * ## Example Usage * * ## Import * * Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language. * * Visit * * **zia_atp_malware_inspection** can be imported by using `inspection` as the import ID. * * For example: * * ```sh * $ pulumi import zia:index/aTPMalwareInspection:ATPMalwareInspection this "inspection" * ``` */ export declare class ATPMalwareInspection extends pulumi.CustomResource { /** * Get an existing ATPMalwareInspection resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ATPMalwareInspectionState, opts?: pulumi.CustomResourceOptions): ATPMalwareInspection; /** * Returns true if the given object is an instance of ATPMalwareInspection. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ATPMalwareInspection; /** * A Boolean value that enables or disables scanning of incoming internet traffic for malicious content */ readonly inspectInbound: pulumi.Output<boolean>; /** * A Boolean value that enables or disables scanning of outgoing internet traffic for malicious content */ readonly inspectOutbound: pulumi.Output<boolean>; /** * Create a ATPMalwareInspection resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ATPMalwareInspectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ATPMalwareInspection resources. */ export interface ATPMalwareInspectionState { /** * A Boolean value that enables or disables scanning of incoming internet traffic for malicious content */ inspectInbound?: pulumi.Input<boolean>; /** * A Boolean value that enables or disables scanning of outgoing internet traffic for malicious content */ inspectOutbound?: pulumi.Input<boolean>; } /** * The set of arguments for constructing a ATPMalwareInspection resource. */ export interface ATPMalwareInspectionArgs { /** * A Boolean value that enables or disables scanning of incoming internet traffic for malicious content */ inspectInbound?: pulumi.Input<boolean>; /** * A Boolean value that enables or disables scanning of outgoing internet traffic for malicious content */ inspectOutbound?: pulumi.Input<boolean>; }