import * as pulumi from "@pulumi/pulumi"; /** * CEN inter-region bandwidth, used to allocate cross-region connectivity bandwidth for Cloud Enterprise Network instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const cENInterRegionBandwidthDemo = new volcenginecc.cen.InterRegionBandwidth("CENInterRegionBandwidthDemo", { * localRegionId: "cn-beijing", * peerRegionId: "cn-shanghai", * bandwidth: 1, * cenId: "cen-2v73nw1h8a03k6x7exxxxx", * cenBandwidthPackageId: "cbp-mikp555wa4u85smt1xxxxxx", * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:cen/interRegionBandwidth:InterRegionBandwidth example "inter_region_bandwidth_id" * ``` */ export declare class InterRegionBandwidth extends pulumi.CustomResource { /** * Get an existing InterRegionBandwidth 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InterRegionBandwidthState, opts?: pulumi.CustomResourceOptions): InterRegionBandwidth; /** * Returns true if the given object is an instance of InterRegionBandwidth. 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 InterRegionBandwidth; /** * Peak bandwidth of CEN inter-region bandwidth, measured in Mbps. The value cannot exceed the bandwidth that can be allocated by the associated bandwidth package. */ readonly bandwidth: pulumi.Output; /** * Instance ID of the bandwidth package. */ readonly cenBandwidthPackageId: pulumi.Output; /** * ID of the Cloud Enterprise Network instance. */ readonly cenId: pulumi.Output; /** * Time when the CEN inter-region bandwidth was created. */ readonly creationTime: pulumi.Output; /** * ID of the CEN inter-region bandwidth. */ readonly interRegionBandwidthId: pulumi.Output; /** * ID of the local region for CEN inter-region bandwidth. */ readonly localRegionId: pulumi.Output; /** * ID of the remote region for CEN inter-region bandwidth. */ readonly peerRegionId: pulumi.Output; /** * Status of CEN inter-region bandwidth. Creating: Being created. Deleting: Being deleted. Pending: Configuring. Available: Available. */ readonly status: pulumi.Output; /** * Time when the CEN inter-region bandwidth was updated. */ readonly updateTime: pulumi.Output; /** * Create a InterRegionBandwidth 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: InterRegionBandwidthArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering InterRegionBandwidth resources. */ export interface InterRegionBandwidthState { /** * Peak bandwidth of CEN inter-region bandwidth, measured in Mbps. The value cannot exceed the bandwidth that can be allocated by the associated bandwidth package. */ bandwidth?: pulumi.Input; /** * Instance ID of the bandwidth package. */ cenBandwidthPackageId?: pulumi.Input; /** * ID of the Cloud Enterprise Network instance. */ cenId?: pulumi.Input; /** * Time when the CEN inter-region bandwidth was created. */ creationTime?: pulumi.Input; /** * ID of the CEN inter-region bandwidth. */ interRegionBandwidthId?: pulumi.Input; /** * ID of the local region for CEN inter-region bandwidth. */ localRegionId?: pulumi.Input; /** * ID of the remote region for CEN inter-region bandwidth. */ peerRegionId?: pulumi.Input; /** * Status of CEN inter-region bandwidth. Creating: Being created. Deleting: Being deleted. Pending: Configuring. Available: Available. */ status?: pulumi.Input; /** * Time when the CEN inter-region bandwidth was updated. */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a InterRegionBandwidth resource. */ export interface InterRegionBandwidthArgs { /** * Peak bandwidth of CEN inter-region bandwidth, measured in Mbps. The value cannot exceed the bandwidth that can be allocated by the associated bandwidth package. */ bandwidth: pulumi.Input; /** * Instance ID of the bandwidth package. */ cenBandwidthPackageId?: pulumi.Input; /** * ID of the Cloud Enterprise Network instance. */ cenId: pulumi.Input; /** * ID of the local region for CEN inter-region bandwidth. */ localRegionId: pulumi.Input; /** * ID of the remote region for CEN inter-region bandwidth. */ peerRegionId: pulumi.Input; }