import * as pulumi from "@pulumi/pulumi"; /** * The zia.FtpControlPolicy resource manages the FTP control policy settings in the Zscaler Internet Access (ZIA) cloud. * This is a singleton resource (one per tenant). The policy controls whether FTP and FTP-over-HTTP traffic is allowed * or blocked, and which URLs and URL categories are subject to FTP controls. Deleting the Pulumi resource does not * remove the underlying settings. * * ## Example Usage * ### Basic FTP Control Policy * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.FtpControlPolicy("example", { * ftpEnabled: true, * ftpOverHttpEnabled: false, * urls: ["example.com"], * urlCategories: ["OTHER_ADULT_MATERIAL"], * }); * ``` * * ## Import * * This is a singleton resource and import is not supported. The resource is managed by creating it in your Pulumi program. */ export declare class FtpControlPolicy extends pulumi.CustomResource { /** * Get an existing FtpControlPolicy 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): FtpControlPolicy; /** * Returns true if the given object is an instance of FtpControlPolicy. 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 FtpControlPolicy; /** * Whether native FTP traffic is enabled. */ readonly ftpEnabled: pulumi.Output; /** * Whether FTP-over-HTTP traffic is enabled. */ readonly ftpOverHttpEnabled: pulumi.Output; /** * List of URL categories subject to the FTP control policy. */ readonly urlCategories: pulumi.Output; /** * List of URLs subject to the FTP control policy. */ readonly urls: pulumi.Output; /** * Create a FtpControlPolicy 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?: FtpControlPolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FtpControlPolicy resource. */ export interface FtpControlPolicyArgs { /** * Whether native FTP traffic is enabled. */ ftpEnabled?: pulumi.Input; /** * Whether FTP-over-HTTP traffic is enabled. */ ftpOverHttpEnabled?: pulumi.Input; /** * List of URL categories subject to the FTP control policy. */ urlCategories?: pulumi.Input[] | undefined>; /** * List of URLs subject to the FTP control policy. */ urls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=ftpControlPolicy.d.ts.map