1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. DasbResource
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.DasbResource

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a dasb resource

    Example Usage

    Create a standard version instance

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.DasbResource("example", {
        autoRenewFlag: 1,
        cidrBlock: "10.35.20.0/24",
        deployRegion: "ap-guangzhou",
        deployZone: "ap-guangzhou-6",
        packageBandwidth: 1,
        resourceEdition: "standard",
        resourceNode: 50,
        subnetId: "subnet-g7jhwhi2",
        timeSpan: 1,
        timeUnit: "m",
        vpcCidrBlock: "10.35.0.0/16",
        vpcId: "vpc-fmz6l9nz",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.DasbResource("example",
        auto_renew_flag=1,
        cidr_block="10.35.20.0/24",
        deploy_region="ap-guangzhou",
        deploy_zone="ap-guangzhou-6",
        package_bandwidth=1,
        resource_edition="standard",
        resource_node=50,
        subnet_id="subnet-g7jhwhi2",
        time_span=1,
        time_unit="m",
        vpc_cidr_block="10.35.0.0/16",
        vpc_id="vpc-fmz6l9nz")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewDasbResource(ctx, "example", &tencentcloud.DasbResourceArgs{
    			AutoRenewFlag:    pulumi.Float64(1),
    			CidrBlock:        pulumi.String("10.35.20.0/24"),
    			DeployRegion:     pulumi.String("ap-guangzhou"),
    			DeployZone:       pulumi.String("ap-guangzhou-6"),
    			PackageBandwidth: pulumi.Float64(1),
    			ResourceEdition:  pulumi.String("standard"),
    			ResourceNode:     pulumi.Float64(50),
    			SubnetId:         pulumi.String("subnet-g7jhwhi2"),
    			TimeSpan:         pulumi.Float64(1),
    			TimeUnit:         pulumi.String("m"),
    			VpcCidrBlock:     pulumi.String("10.35.0.0/16"),
    			VpcId:            pulumi.String("vpc-fmz6l9nz"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.DasbResource("example", new()
        {
            AutoRenewFlag = 1,
            CidrBlock = "10.35.20.0/24",
            DeployRegion = "ap-guangzhou",
            DeployZone = "ap-guangzhou-6",
            PackageBandwidth = 1,
            ResourceEdition = "standard",
            ResourceNode = 50,
            SubnetId = "subnet-g7jhwhi2",
            TimeSpan = 1,
            TimeUnit = "m",
            VpcCidrBlock = "10.35.0.0/16",
            VpcId = "vpc-fmz6l9nz",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.DasbResource;
    import com.pulumi.tencentcloud.DasbResourceArgs;
    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 example = new DasbResource("example", DasbResourceArgs.builder()
                .autoRenewFlag(1)
                .cidrBlock("10.35.20.0/24")
                .deployRegion("ap-guangzhou")
                .deployZone("ap-guangzhou-6")
                .packageBandwidth(1)
                .resourceEdition("standard")
                .resourceNode(50)
                .subnetId("subnet-g7jhwhi2")
                .timeSpan(1)
                .timeUnit("m")
                .vpcCidrBlock("10.35.0.0/16")
                .vpcId("vpc-fmz6l9nz")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:DasbResource
        properties:
          autoRenewFlag: 1
          cidrBlock: 10.35.20.0/24
          deployRegion: ap-guangzhou
          deployZone: ap-guangzhou-6
          packageBandwidth: 1
          resourceEdition: standard
          resourceNode: 50
          subnetId: subnet-g7jhwhi2
          timeSpan: 1
          timeUnit: m
          vpcCidrBlock: 10.35.0.0/16
          vpcId: vpc-fmz6l9nz
    

    Create a professional instance

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.DasbResource("example", {
        autoRenewFlag: 1,
        cidrBlock: "10.35.20.0/24",
        deployRegion: "ap-guangzhou",
        deployZone: "ap-guangzhou-6",
        packageBandwidth: 1,
        resourceEdition: "pro",
        resourceNode: 50,
        subnetId: "subnet-g7jhwhi2",
        timeSpan: 1,
        timeUnit: "m",
        vpcCidrBlock: "10.35.0.0/16",
        vpcId: "vpc-fmz6l9nz",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.DasbResource("example",
        auto_renew_flag=1,
        cidr_block="10.35.20.0/24",
        deploy_region="ap-guangzhou",
        deploy_zone="ap-guangzhou-6",
        package_bandwidth=1,
        resource_edition="pro",
        resource_node=50,
        subnet_id="subnet-g7jhwhi2",
        time_span=1,
        time_unit="m",
        vpc_cidr_block="10.35.0.0/16",
        vpc_id="vpc-fmz6l9nz")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewDasbResource(ctx, "example", &tencentcloud.DasbResourceArgs{
    			AutoRenewFlag:    pulumi.Float64(1),
    			CidrBlock:        pulumi.String("10.35.20.0/24"),
    			DeployRegion:     pulumi.String("ap-guangzhou"),
    			DeployZone:       pulumi.String("ap-guangzhou-6"),
    			PackageBandwidth: pulumi.Float64(1),
    			ResourceEdition:  pulumi.String("pro"),
    			ResourceNode:     pulumi.Float64(50),
    			SubnetId:         pulumi.String("subnet-g7jhwhi2"),
    			TimeSpan:         pulumi.Float64(1),
    			TimeUnit:         pulumi.String("m"),
    			VpcCidrBlock:     pulumi.String("10.35.0.0/16"),
    			VpcId:            pulumi.String("vpc-fmz6l9nz"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.DasbResource("example", new()
        {
            AutoRenewFlag = 1,
            CidrBlock = "10.35.20.0/24",
            DeployRegion = "ap-guangzhou",
            DeployZone = "ap-guangzhou-6",
            PackageBandwidth = 1,
            ResourceEdition = "pro",
            ResourceNode = 50,
            SubnetId = "subnet-g7jhwhi2",
            TimeSpan = 1,
            TimeUnit = "m",
            VpcCidrBlock = "10.35.0.0/16",
            VpcId = "vpc-fmz6l9nz",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.DasbResource;
    import com.pulumi.tencentcloud.DasbResourceArgs;
    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 example = new DasbResource("example", DasbResourceArgs.builder()
                .autoRenewFlag(1)
                .cidrBlock("10.35.20.0/24")
                .deployRegion("ap-guangzhou")
                .deployZone("ap-guangzhou-6")
                .packageBandwidth(1)
                .resourceEdition("pro")
                .resourceNode(50)
                .subnetId("subnet-g7jhwhi2")
                .timeSpan(1)
                .timeUnit("m")
                .vpcCidrBlock("10.35.0.0/16")
                .vpcId("vpc-fmz6l9nz")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:DasbResource
        properties:
          autoRenewFlag: 1
          cidrBlock: 10.35.20.0/24
          deployRegion: ap-guangzhou
          deployZone: ap-guangzhou-6
          packageBandwidth: 1
          resourceEdition: pro
          resourceNode: 50
          subnetId: subnet-g7jhwhi2
          timeSpan: 1
          timeUnit: m
          vpcCidrBlock: 10.35.0.0/16
          vpcId: vpc-fmz6l9nz
    

    Create DasbResource Resource

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

    Constructor syntax

    new DasbResource(name: string, args: DasbResourceArgs, opts?: CustomResourceOptions);
    @overload
    def DasbResource(resource_name: str,
                     args: DasbResourceArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DasbResource(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     resource_edition: Optional[str] = None,
                     cidr_block: Optional[str] = None,
                     deploy_region: Optional[str] = None,
                     deploy_zone: Optional[str] = None,
                     auto_renew_flag: Optional[float] = None,
                     resource_node: Optional[float] = None,
                     subnet_id: Optional[str] = None,
                     vpc_cidr_block: Optional[str] = None,
                     vpc_id: Optional[str] = None,
                     dasb_resource_id: Optional[str] = None,
                     package_bandwidth: Optional[float] = None,
                     time_span: Optional[float] = None,
                     time_unit: Optional[str] = None)
    func NewDasbResource(ctx *Context, name string, args DasbResourceArgs, opts ...ResourceOption) (*DasbResource, error)
    public DasbResource(string name, DasbResourceArgs args, CustomResourceOptions? opts = null)
    public DasbResource(String name, DasbResourceArgs args)
    public DasbResource(String name, DasbResourceArgs args, CustomResourceOptions options)
    
    type: tencentcloud:DasbResource
    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 DasbResourceArgs
    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 DasbResourceArgs
    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 DasbResourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DasbResourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DasbResourceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DasbResource 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 DasbResource resource accepts the following input properties:

    AutoRenewFlag double
    Automatic renewal. 1 is auto renew flag, 0 is not.
    CidrBlock string
    Subnet segments that require service activation.
    DeployRegion string
    Deploy region.
    DeployZone string
    Deploy zone.
    ResourceEdition string
    Resource type.Value:standard/pro.
    ResourceNode double
    Number of resource nodes.
    SubnetId string
    Deploy resource subnetId.
    VpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    VpcId string
    Deploy resource vpcId.
    DasbResourceId string
    ID of the resource.
    PackageBandwidth double
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    TimeSpan double
    Billing time. This field is mandatory, with a minimum value of 1.
    TimeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    AutoRenewFlag float64
    Automatic renewal. 1 is auto renew flag, 0 is not.
    CidrBlock string
    Subnet segments that require service activation.
    DeployRegion string
    Deploy region.
    DeployZone string
    Deploy zone.
    ResourceEdition string
    Resource type.Value:standard/pro.
    ResourceNode float64
    Number of resource nodes.
    SubnetId string
    Deploy resource subnetId.
    VpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    VpcId string
    Deploy resource vpcId.
    DasbResourceId string
    ID of the resource.
    PackageBandwidth float64
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    TimeSpan float64
    Billing time. This field is mandatory, with a minimum value of 1.
    TimeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    autoRenewFlag Double
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock String
    Subnet segments that require service activation.
    deployRegion String
    Deploy region.
    deployZone String
    Deploy zone.
    resourceEdition String
    Resource type.Value:standard/pro.
    resourceNode Double
    Number of resource nodes.
    subnetId String
    Deploy resource subnetId.
    vpcCidrBlock String
    The network segment corresponding to the VPC that requires service activation.
    vpcId String
    Deploy resource vpcId.
    dasbResourceId String
    ID of the resource.
    packageBandwidth Double
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    timeSpan Double
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit String
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    autoRenewFlag number
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock string
    Subnet segments that require service activation.
    deployRegion string
    Deploy region.
    deployZone string
    Deploy zone.
    resourceEdition string
    Resource type.Value:standard/pro.
    resourceNode number
    Number of resource nodes.
    subnetId string
    Deploy resource subnetId.
    vpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    vpcId string
    Deploy resource vpcId.
    dasbResourceId string
    ID of the resource.
    packageBandwidth number
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    timeSpan number
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    auto_renew_flag float
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidr_block str
    Subnet segments that require service activation.
    deploy_region str
    Deploy region.
    deploy_zone str
    Deploy zone.
    resource_edition str
    Resource type.Value:standard/pro.
    resource_node float
    Number of resource nodes.
    subnet_id str
    Deploy resource subnetId.
    vpc_cidr_block str
    The network segment corresponding to the VPC that requires service activation.
    vpc_id str
    Deploy resource vpcId.
    dasb_resource_id str
    ID of the resource.
    package_bandwidth float
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    time_span float
    Billing time. This field is mandatory, with a minimum value of 1.
    time_unit str
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    autoRenewFlag Number
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock String
    Subnet segments that require service activation.
    deployRegion String
    Deploy region.
    deployZone String
    Deploy zone.
    resourceEdition String
    Resource type.Value:standard/pro.
    resourceNode Number
    Number of resource nodes.
    subnetId String
    Deploy resource subnetId.
    vpcCidrBlock String
    The network segment corresponding to the VPC that requires service activation.
    vpcId String
    Deploy resource vpcId.
    dasbResourceId String
    ID of the resource.
    packageBandwidth Number
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    timeSpan Number
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit String
    Billing cycle, only support m: month. This field is mandatory, fill in m.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DasbResource Resource

    Get an existing DasbResource 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?: DasbResourceState, opts?: CustomResourceOptions): DasbResource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_renew_flag: Optional[float] = None,
            cidr_block: Optional[str] = None,
            dasb_resource_id: Optional[str] = None,
            deploy_region: Optional[str] = None,
            deploy_zone: Optional[str] = None,
            package_bandwidth: Optional[float] = None,
            resource_edition: Optional[str] = None,
            resource_node: Optional[float] = None,
            subnet_id: Optional[str] = None,
            time_span: Optional[float] = None,
            time_unit: Optional[str] = None,
            vpc_cidr_block: Optional[str] = None,
            vpc_id: Optional[str] = None) -> DasbResource
    func GetDasbResource(ctx *Context, name string, id IDInput, state *DasbResourceState, opts ...ResourceOption) (*DasbResource, error)
    public static DasbResource Get(string name, Input<string> id, DasbResourceState? state, CustomResourceOptions? opts = null)
    public static DasbResource get(String name, Output<String> id, DasbResourceState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:DasbResource    get:      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:
    AutoRenewFlag double
    Automatic renewal. 1 is auto renew flag, 0 is not.
    CidrBlock string
    Subnet segments that require service activation.
    DasbResourceId string
    ID of the resource.
    DeployRegion string
    Deploy region.
    DeployZone string
    Deploy zone.
    PackageBandwidth double
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    ResourceEdition string
    Resource type.Value:standard/pro.
    ResourceNode double
    Number of resource nodes.
    SubnetId string
    Deploy resource subnetId.
    TimeSpan double
    Billing time. This field is mandatory, with a minimum value of 1.
    TimeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    VpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    VpcId string
    Deploy resource vpcId.
    AutoRenewFlag float64
    Automatic renewal. 1 is auto renew flag, 0 is not.
    CidrBlock string
    Subnet segments that require service activation.
    DasbResourceId string
    ID of the resource.
    DeployRegion string
    Deploy region.
    DeployZone string
    Deploy zone.
    PackageBandwidth float64
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    ResourceEdition string
    Resource type.Value:standard/pro.
    ResourceNode float64
    Number of resource nodes.
    SubnetId string
    Deploy resource subnetId.
    TimeSpan float64
    Billing time. This field is mandatory, with a minimum value of 1.
    TimeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    VpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    VpcId string
    Deploy resource vpcId.
    autoRenewFlag Double
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock String
    Subnet segments that require service activation.
    dasbResourceId String
    ID of the resource.
    deployRegion String
    Deploy region.
    deployZone String
    Deploy zone.
    packageBandwidth Double
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    resourceEdition String
    Resource type.Value:standard/pro.
    resourceNode Double
    Number of resource nodes.
    subnetId String
    Deploy resource subnetId.
    timeSpan Double
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit String
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    vpcCidrBlock String
    The network segment corresponding to the VPC that requires service activation.
    vpcId String
    Deploy resource vpcId.
    autoRenewFlag number
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock string
    Subnet segments that require service activation.
    dasbResourceId string
    ID of the resource.
    deployRegion string
    Deploy region.
    deployZone string
    Deploy zone.
    packageBandwidth number
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    resourceEdition string
    Resource type.Value:standard/pro.
    resourceNode number
    Number of resource nodes.
    subnetId string
    Deploy resource subnetId.
    timeSpan number
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit string
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    vpcCidrBlock string
    The network segment corresponding to the VPC that requires service activation.
    vpcId string
    Deploy resource vpcId.
    auto_renew_flag float
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidr_block str
    Subnet segments that require service activation.
    dasb_resource_id str
    ID of the resource.
    deploy_region str
    Deploy region.
    deploy_zone str
    Deploy zone.
    package_bandwidth float
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    resource_edition str
    Resource type.Value:standard/pro.
    resource_node float
    Number of resource nodes.
    subnet_id str
    Deploy resource subnetId.
    time_span float
    Billing time. This field is mandatory, with a minimum value of 1.
    time_unit str
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    vpc_cidr_block str
    The network segment corresponding to the VPC that requires service activation.
    vpc_id str
    Deploy resource vpcId.
    autoRenewFlag Number
    Automatic renewal. 1 is auto renew flag, 0 is not.
    cidrBlock String
    Subnet segments that require service activation.
    dasbResourceId String
    ID of the resource.
    deployRegion String
    Deploy region.
    deployZone String
    Deploy zone.
    packageBandwidth Number
    Number of bandwidth expansion packets (4M), The set value is an integer multiple of 4.
    resourceEdition String
    Resource type.Value:standard/pro.
    resourceNode Number
    Number of resource nodes.
    subnetId String
    Deploy resource subnetId.
    timeSpan Number
    Billing time. This field is mandatory, with a minimum value of 1.
    timeUnit String
    Billing cycle, only support m: month. This field is mandatory, fill in m.
    vpcCidrBlock String
    The network segment corresponding to the VPC that requires service activation.
    vpcId String
    Deploy resource vpcId.

    Import

    dasb resource can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/dasbResource:DasbResource example bh-saas-kgckynrt
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack