import * as pulumi from "@pulumi/pulumi"; /** * The zia_bandwidth_class_file_size resource manages the file size configuration for an existing bandwidth class in the Zscaler Internet Access (ZIA) cloud service. This resource updates a pre-existing bandwidth class (e.g., LARGE_FILE) with the specified file size threshold. Delete is a no-op; the underlying bandwidth class is not removed when the Pulumi resource is destroyed. * * For more information, see the [ZIA Bandwidth Control documentation](https://help.zscaler.com/zia/bandwidth-control). * * ## Example Usage * ### Basic Bandwidth Class File Size * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.BandwidthClassFileSize("example", { * name: "BANDWIDTH_CAT_LARGE_FILE", * type: "BANDWIDTH_CAT_LARGE_FILE", * fileSize: "100MB", * }); * ``` * * ## Import * * This resource updates an existing bandwidth class by name and does not support traditional import. It is automatically managed by the provider. */ export declare class BandwidthClassFileSize extends pulumi.CustomResource { /** * Get an existing BandwidthClassFileSize 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): BandwidthClassFileSize; /** * Returns true if the given object is an instance of BandwidthClassFileSize. 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 BandwidthClassFileSize; /** * The system-generated ID of the bandwidth class. */ readonly classId: pulumi.Output; /** * The file size threshold for the bandwidth class (e.g., `100MB`). */ readonly fileSize: pulumi.Output; /** * The name of the existing bandwidth class to update (e.g., `BANDWIDTH_CAT_LARGE_FILE`). */ readonly name: pulumi.Output; /** * The type of the bandwidth class (e.g., `BANDWIDTH_CAT_LARGE_FILE`). */ readonly type: pulumi.Output; /** * Create a BandwidthClassFileSize 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?: BandwidthClassFileSizeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a BandwidthClassFileSize resource. */ export interface BandwidthClassFileSizeArgs { /** * The file size threshold for the bandwidth class (e.g., `100MB`). */ fileSize?: pulumi.Input; /** * The name of the existing bandwidth class to update (e.g., `BANDWIDTH_CAT_LARGE_FILE`). */ name?: pulumi.Input; /** * The type of the bandwidth class (e.g., `BANDWIDTH_CAT_LARGE_FILE`). */ type?: pulumi.Input; } //# sourceMappingURL=bandwidthClassFileSize.d.ts.map