import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FtpControlPolicyConfig extends cdktf.TerraformMetaArguments { /** * Indicates whether to enable native FTP. When enabled, users can connect to native FTP sites and download files. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#ftp_enabled FtpControlPolicy#ftp_enabled} */ readonly ftpEnabled?: boolean | cdktf.IResolvable; /** * Indicates whether to enable FTP over HTTP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#ftp_over_http_enabled FtpControlPolicy#ftp_over_http_enabled} */ readonly ftpOverHttpEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#id FtpControlPolicy#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; /** * List of URL categories that allow FTP traffic. * See the URL Categories API for the list of available categories: * https://help.zscaler.com/zia/url-categories#/urlCategories-get * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#url_categories FtpControlPolicy#url_categories} */ readonly urlCategories?: string[]; /** * Domains or URLs included for the FTP Control settings * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#urls FtpControlPolicy#urls} */ readonly urls?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy zia_ftp_control_policy} */ export declare class FtpControlPolicy extends cdktf.TerraformResource { static readonly tfResourceType = "zia_ftp_control_policy"; /** * Generates CDKTF code for importing a FtpControlPolicy 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 FtpControlPolicy to import * @param importFromId The id of the existing FtpControlPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/ftp_control_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FtpControlPolicy 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/ftp_control_policy zia_ftp_control_policy} 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 FtpControlPolicyConfig = {} */ constructor(scope: Construct, id: string, config?: FtpControlPolicyConfig); private _ftpEnabled?; get ftpEnabled(): boolean | cdktf.IResolvable; set ftpEnabled(value: boolean | cdktf.IResolvable); resetFtpEnabled(): void; get ftpEnabledInput(): any; private _ftpOverHttpEnabled?; get ftpOverHttpEnabled(): boolean | cdktf.IResolvable; set ftpOverHttpEnabled(value: boolean | cdktf.IResolvable); resetFtpOverHttpEnabled(): void; get ftpOverHttpEnabledInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _urlCategories?; get urlCategories(): string[]; set urlCategories(value: string[]); resetUrlCategories(): void; get urlCategoriesInput(): string[]; private _urls?; get urls(): string[]; set urls(value: string[]); resetUrls(): void; get urlsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }