import * as pulumi from "@pulumi/pulumi"; /** * The zia_custom_file_type resource manages custom file type controls in the Zscaler Internet Access (ZIA) cloud service. Custom file types allow you to define file extensions and types for use in file type control policies. * * ## Example Usage * ### Custom File Type * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.CustomFileType("example", { * name: "Custom Archive", * description: "Custom archive file type", * extension: "myarch", * }); * ``` * * ## Import * * An existing Custom File Type can be imported using its resource ID, e.g. * * ```sh * $ pulumi import zia:index:CustomFileType example 12345 * ``` */ export declare class CustomFileType extends pulumi.CustomResource { /** * Get an existing CustomFileType 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): CustomFileType; /** * Returns true if the given object is an instance of CustomFileType. 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 CustomFileType; /** * A description of the custom file type. */ readonly description: pulumi.Output; /** * The file extension for this custom file type (e.g. `myarch`). */ readonly extension: pulumi.Output; /** * The system-generated ID of the custom file type. */ readonly fileId: pulumi.Output; /** * The file type category ID to associate this custom file type with. */ readonly fileTypeId: pulumi.Output; /** * The name of the custom file type. */ readonly name: pulumi.Output; /** * Create a CustomFileType 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?: CustomFileTypeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CustomFileType resource. */ export interface CustomFileTypeArgs { /** * A description of the custom file type. */ description?: pulumi.Input; /** * The file extension for this custom file type (e.g. `myarch`). */ extension?: pulumi.Input; /** * The file type category ID to associate this custom file type with. */ fileTypeId?: pulumi.Input; /** * The name of the custom file type. */ name?: pulumi.Input; } //# sourceMappingURL=customFileType.d.ts.map