import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BandwidthClassesConfig extends cdktf.TerraformMetaArguments { /** * Name of the bandwidth class * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes#name BandwidthClasses#name} */ readonly name?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes#url_categories BandwidthClasses#url_categories} */ readonly urlCategories?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes#urls BandwidthClasses#urls} */ readonly urls?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes#web_applications BandwidthClasses#web_applications} */ readonly webApplications?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes zia_bandwidth_classes} */ export declare class BandwidthClasses extends cdktf.TerraformResource { static readonly tfResourceType = "zia_bandwidth_classes"; /** * Generates CDKTF code for importing a BandwidthClasses 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 BandwidthClasses to import * @param importFromId The id of the existing BandwidthClasses that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BandwidthClasses 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 zia_bandwidth_classes} 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 BandwidthClassesConfig = {} */ constructor(scope: Construct, id: string, config?: BandwidthClassesConfig); get classId(): any; get id(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): 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[]; private _webApplications?; get webApplications(): string[]; set webApplications(value: string[]); resetWebApplications(): void; get webApplicationsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }