import * as pulumi from "@pulumi/pulumi"; /** * The zia_atp_malware_protocols resource manages the Advanced Threat Protection (ATP) malware protocol inspection settings in the Zscaler Internet Access (ZIA) cloud service. This singleton resource controls which protocols are inspected for malware, including HTTP, FTP over HTTP, and native FTP traffic. * * For more information, see the [ZIA ATP documentation](https://help.zscaler.com/zia/about-advanced-threat-protection-policy). * * ## Example Usage * ### Basic ATP Malware Protocol Settings * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.AtpMalwareProtocols("example", { * inspectHttp: true, * inspectFtpOverHttp: true, * inspectFtp: true, * }); * ``` * * ## Import * * This is a singleton resource and does not support traditional import. It is automatically managed by the provider. */ export declare class AtpMalwareProtocols extends pulumi.CustomResource { /** * Get an existing AtpMalwareProtocols 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): AtpMalwareProtocols; /** * Returns true if the given object is an instance of AtpMalwareProtocols. 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 AtpMalwareProtocols; /** * When set to true, native FTP traffic is inspected for malware. */ readonly inspectFtp: pulumi.Output; /** * When set to true, FTP-over-HTTP traffic is inspected for malware. */ readonly inspectFtpOverHttp: pulumi.Output; /** * When set to true, HTTP traffic is inspected for malware. */ readonly inspectHttp: pulumi.Output; /** * The internal resource identifier for the ATP malware protocols. */ readonly resourceId: pulumi.Output; /** * Create a AtpMalwareProtocols 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?: AtpMalwareProtocolsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AtpMalwareProtocols resource. */ export interface AtpMalwareProtocolsArgs { /** * When set to true, native FTP traffic is inspected for malware. */ inspectFtp?: pulumi.Input; /** * When set to true, FTP-over-HTTP traffic is inspected for malware. */ inspectFtpOverHttp?: pulumi.Input; /** * When set to true, HTTP traffic is inspected for malware. */ inspectHttp?: pulumi.Input; } //# sourceMappingURL=atpMalwareProtocols.d.ts.map