import * as pulumi from "@pulumi/pulumi"; /** * The zia_bandwidth_classes_web_conferencing resource manages bandwidth class settings for web conferencing and VoIP in the Zscaler Internet Access (ZIA) cloud service. This resource updates an existing built-in bandwidth class by name (e.g. BANDWIDTH_CAT_WEBCONF or BANDWIDTH_CAT_VOIP). Deleting the Pulumi resource does not remove the underlying class. * * ## Example Usage * ### Bandwidth Class Web Conferencing * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.BandwidthClassWebConferencing("example", { * name: "BANDWIDTH_CAT_WEBCONF", * type: "WEB_CONF", * applications: ["ZOOM", "WEBEX"], * }); * ``` * * ## Import * * An existing Bandwidth Class Web Conferencing can be imported using its resource ID, e.g. * * ```sh * $ pulumi import zia:index:BandwidthClassWebConferencing example 12345 * ``` */ export declare class BandwidthClassWebConferencing extends pulumi.CustomResource { /** * Get an existing BandwidthClassWebConferencing 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): BandwidthClassWebConferencing; /** * Returns true if the given object is an instance of BandwidthClassWebConferencing. 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 BandwidthClassWebConferencing; /** * List of applications associated with this bandwidth class (e.g. `ZOOM`, `WEBEX`, `TEAMS`). */ readonly applications: pulumi.Output; /** * The system-generated ID of the bandwidth class. */ readonly classId: pulumi.Output; /** * The name of the bandwidth class (e.g. `BANDWIDTH_CAT_WEBCONF` or `BANDWIDTH_CAT_VOIP`). */ readonly name: pulumi.Output; /** * The type of the bandwidth class (e.g. `WEB_CONF`, `VOIP`). */ readonly type: pulumi.Output; /** * Create a BandwidthClassWebConferencing 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?: BandwidthClassWebConferencingArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a BandwidthClassWebConferencing resource. */ export interface BandwidthClassWebConferencingArgs { /** * List of applications associated with this bandwidth class (e.g. `ZOOM`, `WEBEX`, `TEAMS`). */ applications?: pulumi.Input[] | undefined>; /** * The name of the bandwidth class (e.g. `BANDWIDTH_CAT_WEBCONF` or `BANDWIDTH_CAT_VOIP`). */ name?: pulumi.Input; /** * The type of the bandwidth class (e.g. `WEB_CONF`, `VOIP`). */ type?: pulumi.Input; } //# sourceMappingURL=bandwidthClassWebConferencing.d.ts.map