1. Registry
  2. Packages
  3. Opentelekomcloud Provider
  4. API Docs
  5. VpcBandwidthV2
Viewing docs for opentelekomcloud 1.37.8
published on Thursday, Sep 10, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.37.8
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.

    EnterpriseProjectId string
    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 (.).

    PublicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    VpcBandwidthV2Id string
    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.

    EnterpriseProjectId string
    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 (.).

    PublicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    VpcBandwidthV2Id string
    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_id string
    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_group string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    vpc_bandwidth_v2_id string
    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.

    enterpriseProjectId String
    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 (.).

    publicBorderGroup String
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    vpcBandwidthV2Id String
    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.

    enterpriseProjectId string
    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 (.).

    publicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    vpcBandwidthV2Id string
    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_id str
    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_group str
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    vpc_bandwidth_v2_id str
    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.

    enterpriseProjectId String
    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 (.).

    publicBorderGroup String
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    vpcBandwidthV2Id String
    EIP ID.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VpcBandwidthV2 resource produces the following output properties:

    BandwidthType string
    Specifies the bandwidth type.
    BillingInfo string
    Specifies yearly/monthly billing information, when applicable.
    ChargeMode string
    Specifies the bandwidth charging mode.
    CreatedAt string
    Specifies when the bandwidth was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    PublicipInfos List<VpcBandwidthV2PublicipInfo>
    Lists EIPs associated with the bandwidth:
    ShareType string
    Indicates whether the bandwidth is shared or dedicated.
    Status string
    Specifies the bandwidth status.
    TenantId string
    Specifies the project ID.
    UpdatedAt string
    Specifies when the bandwidth was last updated.
    BandwidthType string
    Specifies the bandwidth type.
    BillingInfo string
    Specifies yearly/monthly billing information, when applicable.
    ChargeMode string
    Specifies the bandwidth charging mode.
    CreatedAt string
    Specifies when the bandwidth was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    PublicipInfos []VpcBandwidthV2PublicipInfo
    Lists EIPs associated with the bandwidth:
    ShareType string
    Indicates whether the bandwidth is shared or dedicated.
    Status string
    Specifies the bandwidth status.
    TenantId string
    Specifies the project ID.
    UpdatedAt 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:
    share_type 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.
    bandwidthType String
    Specifies the bandwidth type.
    billingInfo String
    Specifies yearly/monthly billing information, when applicable.
    chargeMode String
    Specifies the bandwidth charging mode.
    createdAt String
    Specifies when the bandwidth was created.
    id String
    The provider-assigned unique ID for this managed resource.
    publicipInfos List<VpcBandwidthV2PublicipInfo>
    Lists EIPs associated with the bandwidth:
    shareType String
    Indicates whether the bandwidth is shared or dedicated.
    status String
    Specifies the bandwidth status.
    tenantId String
    Specifies the project ID.
    updatedAt String
    Specifies when the bandwidth was last updated.
    bandwidthType string
    Specifies the bandwidth type.
    billingInfo string
    Specifies yearly/monthly billing information, when applicable.
    chargeMode string
    Specifies the bandwidth charging mode.
    createdAt string
    Specifies when the bandwidth was created.
    id string
    The provider-assigned unique ID for this managed resource.
    publicipInfos VpcBandwidthV2PublicipInfo[]
    Lists EIPs associated with the bandwidth:
    shareType string
    Indicates whether the bandwidth is shared or dedicated.
    status string
    Specifies the bandwidth status.
    tenantId string
    Specifies the project ID.
    updatedAt 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[VpcBandwidthV2PublicipInfo]
    Lists EIPs associated with the bandwidth:
    share_type 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.
    bandwidthType String
    Specifies the bandwidth type.
    billingInfo String
    Specifies yearly/monthly billing information, when applicable.
    chargeMode String
    Specifies the bandwidth charging mode.
    createdAt String
    Specifies when the bandwidth was created.
    id String
    The provider-assigned unique ID for this managed resource.
    publicipInfos List<Property Map>
    Lists EIPs associated with the bandwidth:
    shareType String
    Indicates whether the bandwidth is shared or dedicated.
    status String
    Specifies the bandwidth status.
    tenantId String
    Specifies the project ID.
    updatedAt 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) -> VpcBandwidthV2
    func 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.
    The following state arguments are supported:
    BandwidthType string
    Specifies the bandwidth type.
    BillingInfo string
    Specifies yearly/monthly billing information, when applicable.
    ChargeMode string
    Specifies the bandwidth charging mode.
    CreatedAt string
    Specifies when the bandwidth was created.
    EnterpriseProjectId string
    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 (.).

    PublicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    PublicipInfos List<VpcBandwidthV2PublicipInfo>
    Lists EIPs associated with the bandwidth:
    ShareType 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.
    TenantId string
    Specifies the project ID.
    UpdatedAt string
    Specifies when the bandwidth was last updated.
    VpcBandwidthV2Id string
    EIP ID.
    BandwidthType string
    Specifies the bandwidth type.
    BillingInfo string
    Specifies yearly/monthly billing information, when applicable.
    ChargeMode string
    Specifies the bandwidth charging mode.
    CreatedAt string
    Specifies when the bandwidth was created.
    EnterpriseProjectId string
    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 (.).

    PublicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    PublicipInfos []VpcBandwidthV2PublicipInfoArgs
    Lists EIPs associated with the bandwidth:
    ShareType 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.
    TenantId string
    Specifies the project ID.
    UpdatedAt string
    Specifies when the bandwidth was last updated.
    VpcBandwidthV2Id string
    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_id string
    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_group string
    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:
    share_type 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_v2_id string
    EIP ID.
    bandwidthType String
    Specifies the bandwidth type.
    billingInfo String
    Specifies yearly/monthly billing information, when applicable.
    chargeMode String
    Specifies the bandwidth charging mode.
    createdAt String
    Specifies when the bandwidth was created.
    enterpriseProjectId String
    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 (.).

    publicBorderGroup String
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    publicipInfos List<VpcBandwidthV2PublicipInfo>
    Lists EIPs associated with the bandwidth:
    shareType 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.
    tenantId String
    Specifies the project ID.
    updatedAt String
    Specifies when the bandwidth was last updated.
    vpcBandwidthV2Id String
    EIP ID.
    bandwidthType string
    Specifies the bandwidth type.
    billingInfo string
    Specifies yearly/monthly billing information, when applicable.
    chargeMode string
    Specifies the bandwidth charging mode.
    createdAt string
    Specifies when the bandwidth was created.
    enterpriseProjectId string
    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 (.).

    publicBorderGroup string
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    publicipInfos VpcBandwidthV2PublicipInfo[]
    Lists EIPs associated with the bandwidth:
    shareType 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.
    tenantId string
    Specifies the project ID.
    updatedAt string
    Specifies when the bandwidth was last updated.
    vpcBandwidthV2Id string
    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_id str
    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_group str
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    publicip_infos Sequence[VpcBandwidthV2PublicipInfoArgs]
    Lists EIPs associated with the bandwidth:
    share_type 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_v2_id str
    EIP ID.
    bandwidthType String
    Specifies the bandwidth type.
    billingInfo String
    Specifies yearly/monthly billing information, when applicable.
    chargeMode String
    Specifies the bandwidth charging mode.
    createdAt String
    Specifies when the bandwidth was created.
    enterpriseProjectId String
    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 (.).

    publicBorderGroup String
    Specifies whether the shared bandwidth is located at the central site or an edge site. Changing this creates a new resource.
    publicipInfos List<Property Map>
    Lists EIPs associated with the bandwidth:
    shareType 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.
    tenantId String
    Specifies the project ID.
    updatedAt String
    Specifies when the bandwidth was last updated.
    vpcBandwidthV2Id String
    EIP ID.

    Supporting Types

    VpcBandwidthV2PublicipInfo, VpcBandwidthV2PublicipInfoArgs

    Address string
    IPv4 address.
    Id string
    EIP ID.
    IpVersion double
    IP address version.
    Ipv6Address string
    IPv6 address, when available.
    Type string
    EIP type.
    Address string
    IPv4 address.
    Id string
    EIP ID.
    IpVersion 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.
    ipVersion Double
    IP address version.
    ipv6Address String
    IPv6 address, when available.
    type String
    EIP type.
    address string
    IPv4 address.
    id string
    EIP ID.
    ipVersion 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.
    ipVersion 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 opentelekomcloud Terraform Provider.
    Viewing docs for opentelekomcloud 1.37.8
    published on Thursday, Sep 10, 2026 by opentelekomcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial