import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BandwidthClassesWebConferencingConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_web_conferencing#applications BandwidthClassesWebConferencing#applications} */ readonly applications?: string[]; /** * The bandwidth class name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_web_conferencing#name BandwidthClassesWebConferencing#name} */ readonly name?: string; /** * The bandwidth class type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_web_conferencing#type BandwidthClassesWebConferencing#type} */ readonly type?: string; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_web_conferencing zia_bandwidth_classes_web_conferencing} */ export declare class BandwidthClassesWebConferencing extends cdktf.TerraformResource { static readonly tfResourceType = "zia_bandwidth_classes_web_conferencing"; /** * Generates CDKTF code for importing a BandwidthClassesWebConferencing 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 BandwidthClassesWebConferencing to import * @param importFromId The id of the existing BandwidthClassesWebConferencing that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/bandwidth_classes_web_conferencing#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BandwidthClassesWebConferencing 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_web_conferencing zia_bandwidth_classes_web_conferencing} 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 BandwidthClassesWebConferencingConfig = {} */ constructor(scope: Construct, id: string, config?: BandwidthClassesWebConferencingConfig); private _applications?; get applications(): string[]; set applications(value: string[]); resetApplications(): void; get applicationsInput(): string[]; get classId(): any; 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; }; }