import * as pulumi from "@pulumi/pulumi"; /** * The zia_bandwidth_class resource manages bandwidth classes in the Zscaler Internet Access (ZIA) cloud service. Bandwidth classes define traffic categories based on URLs, URL categories, and web applications that can be referenced in bandwidth control rules to apply specific bandwidth limits. * * For more information, see the [ZIA Bandwidth Control documentation](https://help.zscaler.com/zia/bandwidth-control). * * ## Example Usage * ### Basic Bandwidth Class * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.BandwidthClass("example", { * name: "Example Bandwidth Class", * webApplications: ["STREAMING_MEDIA"], * }); * ``` * * ## Import * * An existing Bandwidth Class can be imported using its resource ID, e.g. * * ```sh * $ pulumi import zia:index:BandwidthClass example 12345 * ``` */ export declare class BandwidthClass extends pulumi.CustomResource { /** * Get an existing BandwidthClass 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): BandwidthClass; /** * Returns true if the given object is an instance of BandwidthClass. 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 BandwidthClass; /** * The system-generated ID of the bandwidth class. */ readonly classId: pulumi.Output; /** * The name of the bandwidth class. Must be unique. */ readonly name: pulumi.Output; /** * List of URL categories associated with the bandwidth class. */ readonly urlCategories: pulumi.Output; /** * List of URLs associated with the bandwidth class. */ readonly urls: pulumi.Output; /** * List of web applications associated with the bandwidth class. */ readonly webApplications: pulumi.Output; /** * Create a BandwidthClass 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?: BandwidthClassArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a BandwidthClass resource. */ export interface BandwidthClassArgs { /** * The name of the bandwidth class. Must be unique. */ name?: pulumi.Input; /** * List of URL categories associated with the bandwidth class. */ urlCategories?: pulumi.Input[] | undefined>; /** * List of URLs associated with the bandwidth class. */ urls?: pulumi.Input[] | undefined>; /** * List of web applications associated with the bandwidth class. */ webApplications?: pulumi.Input[] | undefined>; } //# sourceMappingURL=bandwidthClass.d.ts.map