import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BandwidthClassesFileSizeConfig extends cdktf.TerraformMetaArguments { /** * The file size for a bandwidth class * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_file_size#file_size BandwidthClassesFileSize#file_size} */ readonly fileSize?: string; /** * Name of the bandwidth class * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_file_size#name BandwidthClassesFileSize#name} */ readonly name?: string; /** * The application type for which the bandwidth class is configured * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_file_size#type BandwidthClassesFileSize#type} */ readonly type?: string; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_file_size zia_bandwidth_classes_file_size} */ export declare class BandwidthClassesFileSize extends cdktf.TerraformResource { static readonly tfResourceType = "zia_bandwidth_classes_file_size"; /** * Generates CDKTF code for importing a BandwidthClassesFileSize 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 BandwidthClassesFileSize to import * @param importFromId The id of the existing BandwidthClassesFileSize that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_file_size#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BandwidthClassesFileSize 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/bandwidth_classes_file_size zia_bandwidth_classes_file_size} 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 BandwidthClassesFileSizeConfig = {} */ constructor(scope: Construct, id: string, config?: BandwidthClassesFileSizeConfig); get classId(): any; private _fileSize?; get fileSize(): string; set fileSize(value: string); resetFileSize(): void; get fileSizeInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }