1. Packages
  2. Volcengine
  3. API Docs
  4. vpc
  5. Ipv6AddressBandwidth
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

volcengine.vpc.Ipv6AddressBandwidth

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

    Import

    Ipv6AddressBandwidth can be imported using the id, e.g.

     $ pulumi import volcengine:vpc/ipv6AddressBandwidth:Ipv6AddressBandwidth default eip-2fede9fsgnr4059gp674m6ney
    

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var dataEcs = Volcengine.Ecs.Instances.Invoke(new()
        {
            Ids = new[]
            {
                "i-ycal1mtpucl8j0hjiihy",
            },
        });
    
        var dataIpv6 = Volcengine.Vpc.Ipv6Addresses.Invoke(new()
        {
            AssociatedInstanceId = dataEcs.Apply(instancesResult => instancesResult.Instances[0]?.InstanceId),
        });
    
        var foo = new Volcengine.Vpc.Ipv6AddressBandwidth("foo", new()
        {
            Ipv6Address = dataIpv6.Apply(ipv6AddressesResult => ipv6AddressesResult.Ipv6Addresses[0]?.Ipv6Address),
            BillingType = "PostPaidByBandwidth",
            Bandwidth = 5,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		dataEcs, err := ecs.Instances(ctx, &ecs.InstancesArgs{
    			Ids: []string{
    				"i-ycal1mtpucl8j0hjiihy",
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		dataIpv6, err := vpc.Ipv6Addresses(ctx, &vpc.Ipv6AddressesArgs{
    			AssociatedInstanceId: pulumi.StringRef(dataEcs.Instances[0].InstanceId),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = vpc.NewIpv6AddressBandwidth(ctx, "foo", &vpc.Ipv6AddressBandwidthArgs{
    			Ipv6Address: *pulumi.String(dataIpv6.Ipv6Addresses[0].Ipv6Address),
    			BillingType: pulumi.String("PostPaidByBandwidth"),
    			Bandwidth:   pulumi.Int(5),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.ecs.EcsFunctions;
    import com.pulumi.volcengine.ecs.inputs.InstancesArgs;
    import com.pulumi.volcengine.vpc.VpcFunctions;
    import com.pulumi.volcengine.vpc.inputs.Ipv6AddressesArgs;
    import com.pulumi.volcengine.vpc.Ipv6AddressBandwidth;
    import com.pulumi.volcengine.vpc.Ipv6AddressBandwidthArgs;
    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) {
            final var dataEcs = EcsFunctions.Instances(InstancesArgs.builder()
                .ids("i-ycal1mtpucl8j0hjiihy")
                .build());
    
            final var dataIpv6 = VpcFunctions.Ipv6Addresses(Ipv6AddressesArgs.builder()
                .associatedInstanceId(dataEcs.applyValue(instancesResult -> instancesResult.instances()[0].instanceId()))
                .build());
    
            var foo = new Ipv6AddressBandwidth("foo", Ipv6AddressBandwidthArgs.builder()        
                .ipv6Address(dataIpv6.applyValue(ipv6AddressesResult -> ipv6AddressesResult.ipv6Addresses()[0].ipv6Address()))
                .billingType("PostPaidByBandwidth")
                .bandwidth(5)
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    data_ecs = volcengine.ecs.instances(ids=["i-ycal1mtpucl8j0hjiihy"])
    data_ipv6 = volcengine.vpc.ipv6_addresses(associated_instance_id=data_ecs.instances[0].instance_id)
    foo = volcengine.vpc.Ipv6AddressBandwidth("foo",
        ipv6_address=data_ipv6.ipv6_addresses[0].ipv6_address,
        billing_type="PostPaidByBandwidth",
        bandwidth=5)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const dataEcs = volcengine.ecs.Instances({
        ids: ["i-ycal1mtpucl8j0hjiihy"],
    });
    const dataIpv6 = dataEcs.then(dataEcs => volcengine.vpc.Ipv6Addresses({
        associatedInstanceId: dataEcs.instances?.[0]?.instanceId,
    }));
    const foo = new volcengine.vpc.Ipv6AddressBandwidth("foo", {
        ipv6Address: dataIpv6.then(dataIpv6 => dataIpv6.ipv6Addresses?.[0]?.ipv6Address),
        billingType: "PostPaidByBandwidth",
        bandwidth: 5,
    });
    
    resources:
      foo:
        type: volcengine:vpc:Ipv6AddressBandwidth
        properties:
          ipv6Address: ${dataIpv6.ipv6Addresses[0].ipv6Address}
          billingType: PostPaidByBandwidth
          bandwidth: 5
    variables:
      dataEcs:
        fn::invoke:
          Function: volcengine:ecs:Instances
          Arguments:
            ids:
              - i-ycal1mtpucl8j0hjiihy
      dataIpv6:
        fn::invoke:
          Function: volcengine:vpc:Ipv6Addresses
          Arguments:
            associatedInstanceId: ${dataEcs.instances[0].instanceId}
    

    Create Ipv6AddressBandwidth Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Ipv6AddressBandwidth(name: string, args: Ipv6AddressBandwidthArgs, opts?: CustomResourceOptions);
    @overload
    def Ipv6AddressBandwidth(resource_name: str,
                             args: Ipv6AddressBandwidthArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ipv6AddressBandwidth(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             billing_type: Optional[str] = None,
                             ipv6_address: Optional[str] = None,
                             bandwidth: Optional[int] = None)
    func NewIpv6AddressBandwidth(ctx *Context, name string, args Ipv6AddressBandwidthArgs, opts ...ResourceOption) (*Ipv6AddressBandwidth, error)
    public Ipv6AddressBandwidth(string name, Ipv6AddressBandwidthArgs args, CustomResourceOptions? opts = null)
    public Ipv6AddressBandwidth(String name, Ipv6AddressBandwidthArgs args)
    public Ipv6AddressBandwidth(String name, Ipv6AddressBandwidthArgs args, CustomResourceOptions options)
    
    type: volcengine:vpc:Ipv6AddressBandwidth
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args Ipv6AddressBandwidthArgs
    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 Ipv6AddressBandwidthArgs
    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 Ipv6AddressBandwidthArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ipv6AddressBandwidthArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ipv6AddressBandwidthArgs
    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 ipv6AddressBandwidthResource = new Volcengine.Vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource", new()
    {
        BillingType = "string",
        Ipv6Address = "string",
        Bandwidth = 0,
    });
    
    example, err := vpc.NewIpv6AddressBandwidth(ctx, "ipv6AddressBandwidthResource", &vpc.Ipv6AddressBandwidthArgs{
    	BillingType: pulumi.String("string"),
    	Ipv6Address: pulumi.String("string"),
    	Bandwidth:   pulumi.Int(0),
    })
    
    var ipv6AddressBandwidthResource = new Ipv6AddressBandwidth("ipv6AddressBandwidthResource", Ipv6AddressBandwidthArgs.builder()
        .billingType("string")
        .ipv6Address("string")
        .bandwidth(0)
        .build());
    
    ipv6_address_bandwidth_resource = volcengine.vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource",
        billing_type="string",
        ipv6_address="string",
        bandwidth=0)
    
    const ipv6AddressBandwidthResource = new volcengine.vpc.Ipv6AddressBandwidth("ipv6AddressBandwidthResource", {
        billingType: "string",
        ipv6Address: "string",
        bandwidth: 0,
    });
    
    type: volcengine:vpc:Ipv6AddressBandwidth
    properties:
        bandwidth: 0
        billingType: string
        ipv6Address: string
    

    Ipv6AddressBandwidth Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Ipv6AddressBandwidth resource accepts the following input properties:

    BillingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    Ipv6Address string
    Ipv6 address.
    Bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    BillingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    Ipv6Address string
    Ipv6 address.
    Bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType String
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    ipv6Address String
    Ipv6 address.
    bandwidth Integer
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    ipv6Address string
    Ipv6 address.
    bandwidth number
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billing_type str
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    ipv6_address str
    Ipv6 address.
    bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType String
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    ipv6Address String
    Ipv6 address.
    bandwidth Number
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.

    Outputs

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

    AllocationId string
    The ID of the Ipv6AddressBandwidth.
    BusinessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    CreationTime string
    Creation time of the Ipv6AddressBandwidth.
    DeleteTime string
    Delete time of the Ipv6AddressBandwidth.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The ID of the associated instance.
    InstanceType string
    The type of the associated instance.
    Isp string
    The ISP of the Ipv6AddressBandwidth.
    LockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    NetworkType string
    The network type of the Ipv6AddressBandwidth.
    OverdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    Status string
    The status of the Ipv6AddressBandwidth.
    UpdateTime string
    Update time of the Ipv6AddressBandwidth.
    AllocationId string
    The ID of the Ipv6AddressBandwidth.
    BusinessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    CreationTime string
    Creation time of the Ipv6AddressBandwidth.
    DeleteTime string
    Delete time of the Ipv6AddressBandwidth.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    The ID of the associated instance.
    InstanceType string
    The type of the associated instance.
    Isp string
    The ISP of the Ipv6AddressBandwidth.
    LockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    NetworkType string
    The network type of the Ipv6AddressBandwidth.
    OverdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    Status string
    The status of the Ipv6AddressBandwidth.
    UpdateTime string
    Update time of the Ipv6AddressBandwidth.
    allocationId String
    The ID of the Ipv6AddressBandwidth.
    businessStatus String
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime String
    Creation time of the Ipv6AddressBandwidth.
    deleteTime String
    Delete time of the Ipv6AddressBandwidth.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The ID of the associated instance.
    instanceType String
    The type of the associated instance.
    isp String
    The ISP of the Ipv6AddressBandwidth.
    lockReason String
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType String
    The network type of the Ipv6AddressBandwidth.
    overdueTime String
    Overdue time of the Ipv6AddressBandwidth.
    status String
    The status of the Ipv6AddressBandwidth.
    updateTime String
    Update time of the Ipv6AddressBandwidth.
    allocationId string
    The ID of the Ipv6AddressBandwidth.
    businessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime string
    Creation time of the Ipv6AddressBandwidth.
    deleteTime string
    Delete time of the Ipv6AddressBandwidth.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    The ID of the associated instance.
    instanceType string
    The type of the associated instance.
    isp string
    The ISP of the Ipv6AddressBandwidth.
    lockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType string
    The network type of the Ipv6AddressBandwidth.
    overdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    status string
    The status of the Ipv6AddressBandwidth.
    updateTime string
    Update time of the Ipv6AddressBandwidth.
    allocation_id str
    The ID of the Ipv6AddressBandwidth.
    business_status str
    The BusinessStatus of the Ipv6AddressBandwidth.
    creation_time str
    Creation time of the Ipv6AddressBandwidth.
    delete_time str
    Delete time of the Ipv6AddressBandwidth.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    The ID of the associated instance.
    instance_type str
    The type of the associated instance.
    isp str
    The ISP of the Ipv6AddressBandwidth.
    lock_reason str
    The BusinessStatus of the Ipv6AddressBandwidth.
    network_type str
    The network type of the Ipv6AddressBandwidth.
    overdue_time str
    Overdue time of the Ipv6AddressBandwidth.
    status str
    The status of the Ipv6AddressBandwidth.
    update_time str
    Update time of the Ipv6AddressBandwidth.
    allocationId String
    The ID of the Ipv6AddressBandwidth.
    businessStatus String
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime String
    Creation time of the Ipv6AddressBandwidth.
    deleteTime String
    Delete time of the Ipv6AddressBandwidth.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    The ID of the associated instance.
    instanceType String
    The type of the associated instance.
    isp String
    The ISP of the Ipv6AddressBandwidth.
    lockReason String
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType String
    The network type of the Ipv6AddressBandwidth.
    overdueTime String
    Overdue time of the Ipv6AddressBandwidth.
    status String
    The status of the Ipv6AddressBandwidth.
    updateTime String
    Update time of the Ipv6AddressBandwidth.

    Look up Existing Ipv6AddressBandwidth Resource

    Get an existing Ipv6AddressBandwidth 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?: Ipv6AddressBandwidthState, opts?: CustomResourceOptions): Ipv6AddressBandwidth
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocation_id: Optional[str] = None,
            bandwidth: Optional[int] = None,
            billing_type: Optional[str] = None,
            business_status: Optional[str] = None,
            creation_time: Optional[str] = None,
            delete_time: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_type: Optional[str] = None,
            ipv6_address: Optional[str] = None,
            isp: Optional[str] = None,
            lock_reason: Optional[str] = None,
            network_type: Optional[str] = None,
            overdue_time: Optional[str] = None,
            status: Optional[str] = None,
            update_time: Optional[str] = None) -> Ipv6AddressBandwidth
    func GetIpv6AddressBandwidth(ctx *Context, name string, id IDInput, state *Ipv6AddressBandwidthState, opts ...ResourceOption) (*Ipv6AddressBandwidth, error)
    public static Ipv6AddressBandwidth Get(string name, Input<string> id, Ipv6AddressBandwidthState? state, CustomResourceOptions? opts = null)
    public static Ipv6AddressBandwidth get(String name, Output<String> id, Ipv6AddressBandwidthState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AllocationId string
    The ID of the Ipv6AddressBandwidth.
    Bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    BillingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    BusinessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    CreationTime string
    Creation time of the Ipv6AddressBandwidth.
    DeleteTime string
    Delete time of the Ipv6AddressBandwidth.
    InstanceId string
    The ID of the associated instance.
    InstanceType string
    The type of the associated instance.
    Ipv6Address string
    Ipv6 address.
    Isp string
    The ISP of the Ipv6AddressBandwidth.
    LockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    NetworkType string
    The network type of the Ipv6AddressBandwidth.
    OverdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    Status string
    The status of the Ipv6AddressBandwidth.
    UpdateTime string
    Update time of the Ipv6AddressBandwidth.
    AllocationId string
    The ID of the Ipv6AddressBandwidth.
    Bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    BillingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    BusinessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    CreationTime string
    Creation time of the Ipv6AddressBandwidth.
    DeleteTime string
    Delete time of the Ipv6AddressBandwidth.
    InstanceId string
    The ID of the associated instance.
    InstanceType string
    The type of the associated instance.
    Ipv6Address string
    Ipv6 address.
    Isp string
    The ISP of the Ipv6AddressBandwidth.
    LockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    NetworkType string
    The network type of the Ipv6AddressBandwidth.
    OverdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    Status string
    The status of the Ipv6AddressBandwidth.
    UpdateTime string
    Update time of the Ipv6AddressBandwidth.
    allocationId String
    The ID of the Ipv6AddressBandwidth.
    bandwidth Integer
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType String
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    businessStatus String
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime String
    Creation time of the Ipv6AddressBandwidth.
    deleteTime String
    Delete time of the Ipv6AddressBandwidth.
    instanceId String
    The ID of the associated instance.
    instanceType String
    The type of the associated instance.
    ipv6Address String
    Ipv6 address.
    isp String
    The ISP of the Ipv6AddressBandwidth.
    lockReason String
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType String
    The network type of the Ipv6AddressBandwidth.
    overdueTime String
    Overdue time of the Ipv6AddressBandwidth.
    status String
    The status of the Ipv6AddressBandwidth.
    updateTime String
    Update time of the Ipv6AddressBandwidth.
    allocationId string
    The ID of the Ipv6AddressBandwidth.
    bandwidth number
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType string
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    businessStatus string
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime string
    Creation time of the Ipv6AddressBandwidth.
    deleteTime string
    Delete time of the Ipv6AddressBandwidth.
    instanceId string
    The ID of the associated instance.
    instanceType string
    The type of the associated instance.
    ipv6Address string
    Ipv6 address.
    isp string
    The ISP of the Ipv6AddressBandwidth.
    lockReason string
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType string
    The network type of the Ipv6AddressBandwidth.
    overdueTime string
    Overdue time of the Ipv6AddressBandwidth.
    status string
    The status of the Ipv6AddressBandwidth.
    updateTime string
    Update time of the Ipv6AddressBandwidth.
    allocation_id str
    The ID of the Ipv6AddressBandwidth.
    bandwidth int
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billing_type str
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    business_status str
    The BusinessStatus of the Ipv6AddressBandwidth.
    creation_time str
    Creation time of the Ipv6AddressBandwidth.
    delete_time str
    Delete time of the Ipv6AddressBandwidth.
    instance_id str
    The ID of the associated instance.
    instance_type str
    The type of the associated instance.
    ipv6_address str
    Ipv6 address.
    isp str
    The ISP of the Ipv6AddressBandwidth.
    lock_reason str
    The BusinessStatus of the Ipv6AddressBandwidth.
    network_type str
    The network type of the Ipv6AddressBandwidth.
    overdue_time str
    Overdue time of the Ipv6AddressBandwidth.
    status str
    The status of the Ipv6AddressBandwidth.
    update_time str
    Update time of the Ipv6AddressBandwidth.
    allocationId String
    The ID of the Ipv6AddressBandwidth.
    bandwidth Number
    Peek bandwidth of the Ipv6 address. Valid values: 1 to 200. Unit: Mbit/s.
    billingType String
    BillingType of the Ipv6 bandwidth. Valid values: PostPaidByBandwidth; PostPaidByTraffic.
    businessStatus String
    The BusinessStatus of the Ipv6AddressBandwidth.
    creationTime String
    Creation time of the Ipv6AddressBandwidth.
    deleteTime String
    Delete time of the Ipv6AddressBandwidth.
    instanceId String
    The ID of the associated instance.
    instanceType String
    The type of the associated instance.
    ipv6Address String
    Ipv6 address.
    isp String
    The ISP of the Ipv6AddressBandwidth.
    lockReason String
    The BusinessStatus of the Ipv6AddressBandwidth.
    networkType String
    The network type of the Ipv6AddressBandwidth.
    overdueTime String
    Overdue time of the Ipv6AddressBandwidth.
    status String
    The status of the Ipv6AddressBandwidth.
    updateTime String
    Update time of the Ipv6AddressBandwidth.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine