import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AtpMalwareProtocolsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols#id AtpMalwareProtocols#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * A Boolean value that enables or disables scanning of FTP traffic for malicious content in real time * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols#inspect_ftp AtpMalwareProtocols#inspect_ftp} */ readonly inspectFtp?: boolean | cdktf.IResolvable; /** * A Boolean value that enables or disables scanning of FTP over HTTP traffic for malicious content in real time * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols#inspect_ftp_over_http AtpMalwareProtocols#inspect_ftp_over_http} */ readonly inspectFtpOverHttp?: boolean | cdktf.IResolvable; /** * A Boolean value that enables or disables scanning of HTTP traffic (and HTTPS traffic if SSL Inspection is enabled) for malicious content in real time * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols#inspect_http AtpMalwareProtocols#inspect_http} */ readonly inspectHttp?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols zia_atp_malware_protocols} */ export declare class AtpMalwareProtocols extends cdktf.TerraformResource { static readonly tfResourceType = "zia_atp_malware_protocols"; /** * Generates CDKTF code for importing a AtpMalwareProtocols resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the AtpMalwareProtocols to import * @param importFromId The id of the existing AtpMalwareProtocols that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AtpMalwareProtocols to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/atp_malware_protocols zia_atp_malware_protocols} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options AtpMalwareProtocolsConfig = {} */ constructor(scope: Construct, id: string, config?: AtpMalwareProtocolsConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _inspectFtp?; get inspectFtp(): boolean | cdktf.IResolvable; set inspectFtp(value: boolean | cdktf.IResolvable); resetInspectFtp(): void; get inspectFtpInput(): any; private _inspectFtpOverHttp?; get inspectFtpOverHttp(): boolean | cdktf.IResolvable; set inspectFtpOverHttp(value: boolean | cdktf.IResolvable); resetInspectFtpOverHttp(): void; get inspectFtpOverHttpInput(): any; private _inspectHttp?; get inspectHttp(): boolean | cdktf.IResolvable; set inspectHttp(value: boolean | cdktf.IResolvable); resetInspectHttp(): void; get inspectHttpInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }