published on Thursday, Sep 10, 2026 by opentelekomcloud
published on Thursday, Sep 10, 2026 by opentelekomcloud
Up-to-date reference of API arguments for VPC bandwidth you can get at documentation portal
Provides a resource to create a shared bandwidth within Open Telekom Cloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const band100mb = new opentelekomcloud.VpcBandwidthV2("band_100mb", {
name: "shared-100Mbit",
size: 100,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
band100mb = opentelekomcloud.VpcBandwidthV2("band_100mb",
name="shared-100Mbit",
size=100)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opentelekomcloud.NewVpcBandwidthV2(ctx, "band_100mb", &opentelekomcloud.VpcBandwidthV2Args{
Name: pulumi.String("shared-100Mbit"),
Size: pulumi.Float64(100),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var band100mb = new Opentelekomcloud.VpcBandwidthV2("band_100mb", new()
{
Name = "shared-100Mbit",
Size = 100,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.VpcBandwidthV2;
import com.pulumi.opentelekomcloud.VpcBandwidthV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var band100mb = new VpcBandwidthV2("band100mb", VpcBandwidthV2Args.builder()
.name("shared-100Mbit")
.size(100.0)
.build());
}
}
resources:
band100mb:
type: opentelekomcloud:VpcBandwidthV2
name: band_100mb
properties:
name: shared-100Mbit
size: 100
Example coming soon!
Create VpcBandwidthV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpcBandwidthV2(name: string, args: VpcBandwidthV2Args, opts?: CustomResourceOptions);@overload
def VpcBandwidthV2(resource_name: str,
args: VpcBandwidthV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def VpcBandwidthV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
size: Optional[float] = None,
enterprise_project_id: Optional[str] = None,
name: Optional[str] = None,
public_border_group: Optional[str] = None,
vpc_bandwidth_v2_id: Optional[str] = None)func NewVpcBandwidthV2(ctx *Context, name string, args VpcBandwidthV2Args, opts ...ResourceOption) (*VpcBandwidthV2, error)public VpcBandwidthV2(string name, VpcBandwidthV2Args args, CustomResourceOptions? opts = null)
public VpcBandwidthV2(String name, VpcBandwidthV2Args args)
public VpcBandwidthV2(String name, VpcBandwidthV2Args args, CustomResourceOptions options)
type: opentelekomcloud:VpcBandwidthV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "opentelekomcloud_vpc_bandwidth_v2" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args VpcBandwidthV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VpcBandwidthV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VpcBandwidthV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcBandwidthV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcBandwidthV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var vpcBandwidthV2Resource = new Opentelekomcloud.VpcBandwidthV2("vpcBandwidthV2Resource", new()
{
Size = 0.0,
EnterpriseProjectId = "string",
Name = "string",
PublicBorderGroup = "string",
VpcBandwidthV2Id = "string",
});
example, err := opentelekomcloud.NewVpcBandwidthV2(ctx, "vpcBandwidthV2Resource", &opentelekomcloud.VpcBandwidthV2Args{
Size: pulumi.Float64(0),
EnterpriseProjectId: pulumi.String("string"),
Name: pulumi.String("string"),
PublicBorderGroup: pulumi.String("string"),
VpcBandwidthV2Id: pulumi.String("string"),
})
resource "opentelekomcloud_vpc_bandwidth_v2" "vpcBandwidthV2Resource" {
lifecycle {
create_before_destroy = true
}
size = 0
enterprise_project_id = "string"
name = "string"
public_border_group = "string"
vpc_bandwidth_v2_id = "string"
}
var vpcBandwidthV2Resource = new VpcBandwidthV2("vpcBandwidthV2Resource", VpcBandwidthV2Args.builder()
.size(0.0)
.enterpriseProjectId("string")
.name("string")
.publicBorderGroup("string")
.vpcBandwidthV2Id("string")
.build());
vpc_bandwidth_v2_resource = opentelekomcloud.VpcBandwidthV2("vpcBandwidthV2Resource",
size=float(0),
enterprise_project_id="string",
name="string",
public_border_group="string",
vpc_bandwidth_v2_id="string")
const vpcBandwidthV2Resource = new opentelekomcloud.VpcBandwidthV2("vpcBandwidthV2Resource", {
size: 0,
enterpriseProjectId: "string",
name: "string",
publicBorderGroup: "string",
vpcBandwidthV2Id: "string",
});
type: opentelekomcloud:VpcBandwidthV2
properties:
enterpriseProjectId: string
name: string
publicBorderGroup: string
size: 0
vpcBandwidthV2Id: string
VpcBandwidthV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VpcBandwidthV2 resource accepts the following input properties:
- Size double
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- Enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - Name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- Public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- Vpc
Bandwidth stringV2Id - EIP ID.
- Size float64
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- Enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - Name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- Public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- Vpc
Bandwidth stringV2Id - EIP ID.
- size number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- enterprise_
project_ stringid - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public_
border_ stringgroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- vpc_
bandwidth_ stringv2_ id - EIP ID.
- size Double
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- enterprise
Project StringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name String
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border StringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- vpc
Bandwidth StringV2Id - EIP ID.
- size number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- vpc
Bandwidth stringV2Id - EIP ID.
- size float
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- enterprise_
project_ strid - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name str
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public_
border_ strgroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- vpc_
bandwidth_ strv2_ id - EIP ID.
- size Number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- enterprise
Project StringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name String
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border StringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- vpc
Bandwidth StringV2Id - EIP ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the VpcBandwidthV2 resource produces the following output properties:
- Bandwidth
Type string - Specifies the bandwidth type.
- Billing
Info string - Specifies yearly/monthly billing information, when applicable.
- Charge
Mode string - Specifies the bandwidth charging mode.
- Created
At string - Specifies when the bandwidth was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Publicip
Infos List<VpcBandwidth V2Publicip Info> - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- Status string
- Specifies the bandwidth status.
- Tenant
Id string - Specifies the project ID.
- Updated
At string - Specifies when the bandwidth was last updated.
- Bandwidth
Type string - Specifies the bandwidth type.
- Billing
Info string - Specifies yearly/monthly billing information, when applicable.
- Charge
Mode string - Specifies the bandwidth charging mode.
- Created
At string - Specifies when the bandwidth was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Publicip
Infos []VpcBandwidth V2Publicip Info - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- Status string
- Specifies the bandwidth status.
- Tenant
Id string - Specifies the project ID.
- Updated
At string - Specifies when the bandwidth was last updated.
- bandwidth_
type string - Specifies the bandwidth type.
- billing_
info string - Specifies yearly/monthly billing information, when applicable.
- charge_
mode string - Specifies the bandwidth charging mode.
- created_
at string - Specifies when the bandwidth was created.
- id string
- The provider-assigned unique ID for this managed resource.
- publicip_
infos list(object) - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- status string
- Specifies the bandwidth status.
- tenant_
id string - Specifies the project ID.
- updated_
at string - Specifies when the bandwidth was last updated.
- bandwidth
Type String - Specifies the bandwidth type.
- billing
Info String - Specifies yearly/monthly billing information, when applicable.
- charge
Mode String - Specifies the bandwidth charging mode.
- created
At String - Specifies when the bandwidth was created.
- id String
- The provider-assigned unique ID for this managed resource.
- publicip
Infos List<VpcBandwidth V2Publicip Info> - Lists EIPs associated with the bandwidth:
- String
- Indicates whether the bandwidth is shared or dedicated.
- status String
- Specifies the bandwidth status.
- tenant
Id String - Specifies the project ID.
- updated
At String - Specifies when the bandwidth was last updated.
- bandwidth
Type string - Specifies the bandwidth type.
- billing
Info string - Specifies yearly/monthly billing information, when applicable.
- charge
Mode string - Specifies the bandwidth charging mode.
- created
At string - Specifies when the bandwidth was created.
- id string
- The provider-assigned unique ID for this managed resource.
- publicip
Infos VpcBandwidth V2Publicip Info[] - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- status string
- Specifies the bandwidth status.
- tenant
Id string - Specifies the project ID.
- updated
At string - Specifies when the bandwidth was last updated.
- bandwidth_
type str - Specifies the bandwidth type.
- billing_
info str - Specifies yearly/monthly billing information, when applicable.
- charge_
mode str - Specifies the bandwidth charging mode.
- created_
at str - Specifies when the bandwidth was created.
- id str
- The provider-assigned unique ID for this managed resource.
- publicip_
infos Sequence[VpcBandwidth V2Publicip Info] - Lists EIPs associated with the bandwidth:
- str
- Indicates whether the bandwidth is shared or dedicated.
- status str
- Specifies the bandwidth status.
- tenant_
id str - Specifies the project ID.
- updated_
at str - Specifies when the bandwidth was last updated.
- bandwidth
Type String - Specifies the bandwidth type.
- billing
Info String - Specifies yearly/monthly billing information, when applicable.
- charge
Mode String - Specifies the bandwidth charging mode.
- created
At String - Specifies when the bandwidth was created.
- id String
- The provider-assigned unique ID for this managed resource.
- publicip
Infos List<Property Map> - Lists EIPs associated with the bandwidth:
- String
- Indicates whether the bandwidth is shared or dedicated.
- status String
- Specifies the bandwidth status.
- tenant
Id String - Specifies the project ID.
- updated
At String - Specifies when the bandwidth was last updated.
Look up Existing VpcBandwidthV2 Resource
Get an existing VpcBandwidthV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VpcBandwidthV2State, opts?: CustomResourceOptions): VpcBandwidthV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bandwidth_type: Optional[str] = None,
billing_info: Optional[str] = None,
charge_mode: Optional[str] = None,
created_at: Optional[str] = None,
enterprise_project_id: Optional[str] = None,
name: Optional[str] = None,
public_border_group: Optional[str] = None,
publicip_infos: Optional[Sequence[VpcBandwidthV2PublicipInfoArgs]] = None,
share_type: Optional[str] = None,
size: Optional[float] = None,
status: Optional[str] = None,
tenant_id: Optional[str] = None,
updated_at: Optional[str] = None,
vpc_bandwidth_v2_id: Optional[str] = None) -> VpcBandwidthV2func GetVpcBandwidthV2(ctx *Context, name string, id IDInput, state *VpcBandwidthV2State, opts ...ResourceOption) (*VpcBandwidthV2, error)public static VpcBandwidthV2 Get(string name, Input<string> id, VpcBandwidthV2State? state, CustomResourceOptions? opts = null)public static VpcBandwidthV2 get(String name, Output<String> id, VpcBandwidthV2State state, CustomResourceOptions options)resources: _: type: opentelekomcloud:VpcBandwidthV2 get: id: ${id}import {
to = opentelekomcloud_vpc_bandwidth_v2.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Bandwidth
Type string - Specifies the bandwidth type.
- Billing
Info string - Specifies yearly/monthly billing information, when applicable.
- Charge
Mode string - Specifies the bandwidth charging mode.
- Created
At string - Specifies when the bandwidth was created.
- Enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - Name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- Public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- Publicip
Infos List<VpcBandwidth V2Publicip Info> - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- Size double
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- Status string
- Specifies the bandwidth status.
- Tenant
Id string - Specifies the project ID.
- Updated
At string - Specifies when the bandwidth was last updated.
- Vpc
Bandwidth stringV2Id - EIP ID.
- Bandwidth
Type string - Specifies the bandwidth type.
- Billing
Info string - Specifies yearly/monthly billing information, when applicable.
- Charge
Mode string - Specifies the bandwidth charging mode.
- Created
At string - Specifies when the bandwidth was created.
- Enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - Name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- Public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- Publicip
Infos []VpcBandwidth V2Publicip Info Args - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- Size float64
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- Status string
- Specifies the bandwidth status.
- Tenant
Id string - Specifies the project ID.
- Updated
At string - Specifies when the bandwidth was last updated.
- Vpc
Bandwidth stringV2Id - EIP ID.
- bandwidth_
type string - Specifies the bandwidth type.
- billing_
info string - Specifies yearly/monthly billing information, when applicable.
- charge_
mode string - Specifies the bandwidth charging mode.
- created_
at string - Specifies when the bandwidth was created.
- enterprise_
project_ stringid - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public_
border_ stringgroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- publicip_
infos list(object) - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- size number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- status string
- Specifies the bandwidth status.
- tenant_
id string - Specifies the project ID.
- updated_
at string - Specifies when the bandwidth was last updated.
- vpc_
bandwidth_ stringv2_ id - EIP ID.
- bandwidth
Type String - Specifies the bandwidth type.
- billing
Info String - Specifies yearly/monthly billing information, when applicable.
- charge
Mode String - Specifies the bandwidth charging mode.
- created
At String - Specifies when the bandwidth was created.
- enterprise
Project StringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name String
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border StringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- publicip
Infos List<VpcBandwidth V2Publicip Info> - Lists EIPs associated with the bandwidth:
- String
- Indicates whether the bandwidth is shared or dedicated.
- size Double
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- status String
- Specifies the bandwidth status.
- tenant
Id String - Specifies the project ID.
- updated
At String - Specifies when the bandwidth was last updated.
- vpc
Bandwidth StringV2Id - EIP ID.
- bandwidth
Type string - Specifies the bandwidth type.
- billing
Info string - Specifies yearly/monthly billing information, when applicable.
- charge
Mode string - Specifies the bandwidth charging mode.
- created
At string - Specifies when the bandwidth was created.
- enterprise
Project stringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name string
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border stringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- publicip
Infos VpcBandwidth V2Publicip Info[] - Lists EIPs associated with the bandwidth:
- string
- Indicates whether the bandwidth is shared or dedicated.
- size number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- status string
- Specifies the bandwidth status.
- tenant
Id string - Specifies the project ID.
- updated
At string - Specifies when the bandwidth was last updated.
- vpc
Bandwidth stringV2Id - EIP ID.
- bandwidth_
type str - Specifies the bandwidth type.
- billing_
info str - Specifies yearly/monthly billing information, when applicable.
- charge_
mode str - Specifies the bandwidth charging mode.
- created_
at str - Specifies when the bandwidth was created.
- enterprise_
project_ strid - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name str
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public_
border_ strgroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- publicip_
infos Sequence[VpcBandwidth V2Publicip Info Args] - Lists EIPs associated with the bandwidth:
- str
- Indicates whether the bandwidth is shared or dedicated.
- size float
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- status str
- Specifies the bandwidth status.
- tenant_
id str - Specifies the project ID.
- updated_
at str - Specifies when the bandwidth was last updated.
- vpc_
bandwidth_ strv2_ id - EIP ID.
- bandwidth
Type String - Specifies the bandwidth type.
- billing
Info String - Specifies yearly/monthly billing information, when applicable.
- charge
Mode String - Specifies the bandwidth charging mode.
- created
At String - Specifies when the bandwidth was created.
- enterprise
Project StringId - Specifies the enterprise project associated
with the shared bandwidth. If omitted, the provider-level enterprise project or
the default enterprise project (
0) is used. Changing this creates a new resource. - name String
Specifies the bandwidth name.
The value is a string of 1 to 64 characters that can contain letters, digits, underscores (_), hyphens (-), and periods (.).
- public
Border StringGroup - Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
- publicip
Infos List<Property Map> - Lists EIPs associated with the bandwidth:
- String
- Indicates whether the bandwidth is shared or dedicated.
- size Number
Specifies the bandwidth size. The value ranges from 5 Mbit/s to 1000 Mbit/s by default.
-> The specific range may vary depending on the configuration in each region. You can see the available bandwidth range on the management console.
- status String
- Specifies the bandwidth status.
- tenant
Id String - Specifies the project ID.
- updated
At String - Specifies when the bandwidth was last updated.
- vpc
Bandwidth StringV2Id - EIP ID.
Supporting Types
VpcBandwidthV2PublicipInfo, VpcBandwidthV2PublicipInfoArgs
- Address string
- IPv4 address.
- Id string
- EIP ID.
- Ip
Version double - IP address version.
- Ipv6Address string
- IPv6 address, when available.
- Type string
- EIP type.
- Address string
- IPv4 address.
- Id string
- EIP ID.
- Ip
Version float64 - IP address version.
- Ipv6Address string
- IPv6 address, when available.
- Type string
- EIP type.
- address string
- IPv4 address.
- id string
- EIP ID.
- ip_
version number - IP address version.
- ipv6_
address string - IPv6 address, when available.
- type string
- EIP type.
- address String
- IPv4 address.
- id String
- EIP ID.
- ip
Version Double - IP address version.
- ipv6Address String
- IPv6 address, when available.
- type String
- EIP type.
- address string
- IPv4 address.
- id string
- EIP ID.
- ip
Version number - IP address version.
- ipv6Address string
- IPv6 address, when available.
- type string
- EIP type.
- address str
- IPv4 address.
- id str
- EIP ID.
- ip_
version float - IP address version.
- ipv6_
address str - IPv6 address, when available.
- type str
- EIP type.
- address String
- IPv4 address.
- id String
- EIP ID.
- ip
Version Number - IP address version.
- ipv6Address String
- IPv6 address, when available.
- type String
- EIP type.
Import
VPC bandwidth can be imported using the id, e.g.
$ pulumi import opentelekomcloud:index/vpcBandwidthV2:VpcBandwidthV2 band_100mb eb187fc8-e482-43eb-a18a-9da947ef89f6
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloudTerraform Provider.
published on Thursday, Sep 10, 2026 by opentelekomcloud