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

tencentcloud.TseCngwGroup

Explore with Pulumi AI

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

    Provides a resource to create a tse cngw_group

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const config = new pulumi.Config();
    const availabilityZone = config.get("availabilityZone") || "ap-guangzhou-4";
    const vpc = new tencentcloud.Vpc("vpc", {cidrBlock: "10.0.0.0/16"});
    const subnet = new tencentcloud.Subnet("subnet", {
        vpcId: vpc.vpcId,
        availabilityZone: availabilityZone,
        cidrBlock: "10.0.1.0/24",
    });
    const cngwGateway = new tencentcloud.TseCngwGateway("cngwGateway", {
        description: "terraform test1",
        enableCls: true,
        engineRegion: "ap-guangzhou",
        featureVersion: "STANDARD",
        gatewayVersion: "2.5.1",
        ingressClassName: "tse-nginx-ingress",
        internetMaxBandwidthOut: 0,
        tradeType: 0,
        type: "kong",
        nodeConfig: {
            number: 2,
            specification: "1c2g",
        },
        vpcConfig: {
            subnetId: subnet.subnetId,
            vpcId: vpc.vpcId,
        },
        tags: {
            createdBy: "terraform",
        },
    });
    const cngwGroup = new tencentcloud.TseCngwGroup("cngwGroup", {
        description: "terraform desc",
        gatewayId: cngwGateway.tseCngwGatewayId,
        subnetId: subnet.subnetId,
        nodeConfig: {
            number: 2,
            specification: "1c2g",
        },
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    config = pulumi.Config()
    availability_zone = config.get("availabilityZone")
    if availability_zone is None:
        availability_zone = "ap-guangzhou-4"
    vpc = tencentcloud.Vpc("vpc", cidr_block="10.0.0.0/16")
    subnet = tencentcloud.Subnet("subnet",
        vpc_id=vpc.vpc_id,
        availability_zone=availability_zone,
        cidr_block="10.0.1.0/24")
    cngw_gateway = tencentcloud.TseCngwGateway("cngwGateway",
        description="terraform test1",
        enable_cls=True,
        engine_region="ap-guangzhou",
        feature_version="STANDARD",
        gateway_version="2.5.1",
        ingress_class_name="tse-nginx-ingress",
        internet_max_bandwidth_out=0,
        trade_type=0,
        type="kong",
        node_config={
            "number": 2,
            "specification": "1c2g",
        },
        vpc_config={
            "subnet_id": subnet.subnet_id,
            "vpc_id": vpc.vpc_id,
        },
        tags={
            "createdBy": "terraform",
        })
    cngw_group = tencentcloud.TseCngwGroup("cngwGroup",
        description="terraform desc",
        gateway_id=cngw_gateway.tse_cngw_gateway_id,
        subnet_id=subnet.subnet_id,
        node_config={
            "number": 2,
            "specification": "1c2g",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		availabilityZone := "ap-guangzhou-4"
    		if param := cfg.Get("availabilityZone"); param != "" {
    			availabilityZone = param
    		}
    		vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
    			CidrBlock: pulumi.String("10.0.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
    			VpcId:            vpc.VpcId,
    			AvailabilityZone: pulumi.String(availabilityZone),
    			CidrBlock:        pulumi.String("10.0.1.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		cngwGateway, err := tencentcloud.NewTseCngwGateway(ctx, "cngwGateway", &tencentcloud.TseCngwGatewayArgs{
    			Description:             pulumi.String("terraform test1"),
    			EnableCls:               pulumi.Bool(true),
    			EngineRegion:            pulumi.String("ap-guangzhou"),
    			FeatureVersion:          pulumi.String("STANDARD"),
    			GatewayVersion:          pulumi.String("2.5.1"),
    			IngressClassName:        pulumi.String("tse-nginx-ingress"),
    			InternetMaxBandwidthOut: pulumi.Float64(0),
    			TradeType:               pulumi.Float64(0),
    			Type:                    pulumi.String("kong"),
    			NodeConfig: &tencentcloud.TseCngwGatewayNodeConfigArgs{
    				Number:        pulumi.Float64(2),
    				Specification: pulumi.String("1c2g"),
    			},
    			VpcConfig: &tencentcloud.TseCngwGatewayVpcConfigArgs{
    				SubnetId: subnet.SubnetId,
    				VpcId:    vpc.VpcId,
    			},
    			Tags: pulumi.StringMap{
    				"createdBy": pulumi.String("terraform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = tencentcloud.NewTseCngwGroup(ctx, "cngwGroup", &tencentcloud.TseCngwGroupArgs{
    			Description: pulumi.String("terraform desc"),
    			GatewayId:   cngwGateway.TseCngwGatewayId,
    			SubnetId:    subnet.SubnetId,
    			NodeConfig: &tencentcloud.TseCngwGroupNodeConfigArgs{
    				Number:        pulumi.Float64(2),
    				Specification: pulumi.String("1c2g"),
    			},
    		})
    		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 config = new Config();
        var availabilityZone = config.Get("availabilityZone") ?? "ap-guangzhou-4";
        var vpc = new Tencentcloud.Vpc("vpc", new()
        {
            CidrBlock = "10.0.0.0/16",
        });
    
        var subnet = new Tencentcloud.Subnet("subnet", new()
        {
            VpcId = vpc.VpcId,
            AvailabilityZone = availabilityZone,
            CidrBlock = "10.0.1.0/24",
        });
    
        var cngwGateway = new Tencentcloud.TseCngwGateway("cngwGateway", new()
        {
            Description = "terraform test1",
            EnableCls = true,
            EngineRegion = "ap-guangzhou",
            FeatureVersion = "STANDARD",
            GatewayVersion = "2.5.1",
            IngressClassName = "tse-nginx-ingress",
            InternetMaxBandwidthOut = 0,
            TradeType = 0,
            Type = "kong",
            NodeConfig = new Tencentcloud.Inputs.TseCngwGatewayNodeConfigArgs
            {
                Number = 2,
                Specification = "1c2g",
            },
            VpcConfig = new Tencentcloud.Inputs.TseCngwGatewayVpcConfigArgs
            {
                SubnetId = subnet.SubnetId,
                VpcId = vpc.VpcId,
            },
            Tags = 
            {
                { "createdBy", "terraform" },
            },
        });
    
        var cngwGroup = new Tencentcloud.TseCngwGroup("cngwGroup", new()
        {
            Description = "terraform desc",
            GatewayId = cngwGateway.TseCngwGatewayId,
            SubnetId = subnet.SubnetId,
            NodeConfig = new Tencentcloud.Inputs.TseCngwGroupNodeConfigArgs
            {
                Number = 2,
                Specification = "1c2g",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.Vpc;
    import com.pulumi.tencentcloud.VpcArgs;
    import com.pulumi.tencentcloud.Subnet;
    import com.pulumi.tencentcloud.SubnetArgs;
    import com.pulumi.tencentcloud.TseCngwGateway;
    import com.pulumi.tencentcloud.TseCngwGatewayArgs;
    import com.pulumi.tencentcloud.inputs.TseCngwGatewayNodeConfigArgs;
    import com.pulumi.tencentcloud.inputs.TseCngwGatewayVpcConfigArgs;
    import com.pulumi.tencentcloud.TseCngwGroup;
    import com.pulumi.tencentcloud.TseCngwGroupArgs;
    import com.pulumi.tencentcloud.inputs.TseCngwGroupNodeConfigArgs;
    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 config = ctx.config();
            final var availabilityZone = config.get("availabilityZone").orElse("ap-guangzhou-4");
            var vpc = new Vpc("vpc", VpcArgs.builder()
                .cidrBlock("10.0.0.0/16")
                .build());
    
            var subnet = new Subnet("subnet", SubnetArgs.builder()
                .vpcId(vpc.vpcId())
                .availabilityZone(availabilityZone)
                .cidrBlock("10.0.1.0/24")
                .build());
    
            var cngwGateway = new TseCngwGateway("cngwGateway", TseCngwGatewayArgs.builder()
                .description("terraform test1")
                .enableCls(true)
                .engineRegion("ap-guangzhou")
                .featureVersion("STANDARD")
                .gatewayVersion("2.5.1")
                .ingressClassName("tse-nginx-ingress")
                .internetMaxBandwidthOut(0)
                .tradeType(0)
                .type("kong")
                .nodeConfig(TseCngwGatewayNodeConfigArgs.builder()
                    .number(2)
                    .specification("1c2g")
                    .build())
                .vpcConfig(TseCngwGatewayVpcConfigArgs.builder()
                    .subnetId(subnet.subnetId())
                    .vpcId(vpc.vpcId())
                    .build())
                .tags(Map.of("createdBy", "terraform"))
                .build());
    
            var cngwGroup = new TseCngwGroup("cngwGroup", TseCngwGroupArgs.builder()
                .description("terraform desc")
                .gatewayId(cngwGateway.tseCngwGatewayId())
                .subnetId(subnet.subnetId())
                .nodeConfig(TseCngwGroupNodeConfigArgs.builder()
                    .number(2)
                    .specification("1c2g")
                    .build())
                .build());
    
        }
    }
    
    configuration:
      availabilityZone:
        type: string
        default: ap-guangzhou-4
    resources:
      vpc:
        type: tencentcloud:Vpc
        properties:
          cidrBlock: 10.0.0.0/16
      subnet:
        type: tencentcloud:Subnet
        properties:
          vpcId: ${vpc.vpcId}
          availabilityZone: ${availabilityZone}
          cidrBlock: 10.0.1.0/24
      cngwGateway:
        type: tencentcloud:TseCngwGateway
        properties:
          description: terraform test1
          enableCls: true
          engineRegion: ap-guangzhou
          featureVersion: STANDARD
          gatewayVersion: 2.5.1
          ingressClassName: tse-nginx-ingress
          internetMaxBandwidthOut: 0
          tradeType: 0
          type: kong
          nodeConfig:
            number: 2
            specification: 1c2g
          vpcConfig:
            subnetId: ${subnet.subnetId}
            vpcId: ${vpc.vpcId}
          tags:
            createdBy: terraform
      cngwGroup:
        type: tencentcloud:TseCngwGroup
        properties:
          description: terraform desc
          gatewayId: ${cngwGateway.tseCngwGatewayId}
          subnetId: ${subnet.subnetId}
          nodeConfig:
            number: 2
            specification: 1c2g
    

    Create TseCngwGroup Resource

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

    Constructor syntax

    new TseCngwGroup(name: string, args: TseCngwGroupArgs, opts?: CustomResourceOptions);
    @overload
    def TseCngwGroup(resource_name: str,
                     args: TseCngwGroupArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def TseCngwGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     gateway_id: Optional[str] = None,
                     node_config: Optional[TseCngwGroupNodeConfigArgs] = None,
                     subnet_id: Optional[str] = None,
                     description: Optional[str] = None,
                     internet_config: Optional[TseCngwGroupInternetConfigArgs] = None,
                     internet_max_bandwidth_out: Optional[float] = None,
                     name: Optional[str] = None,
                     tse_cngw_group_id: Optional[str] = None)
    func NewTseCngwGroup(ctx *Context, name string, args TseCngwGroupArgs, opts ...ResourceOption) (*TseCngwGroup, error)
    public TseCngwGroup(string name, TseCngwGroupArgs args, CustomResourceOptions? opts = null)
    public TseCngwGroup(String name, TseCngwGroupArgs args)
    public TseCngwGroup(String name, TseCngwGroupArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TseCngwGroup
    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 TseCngwGroupArgs
    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 TseCngwGroupArgs
    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 TseCngwGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TseCngwGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TseCngwGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    GatewayId string
    gateway IDonly postpaid gateway supported.
    NodeConfig TseCngwGroupNodeConfig
    group node configration.
    SubnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    Description string
    description information of group.
    InternetConfig TseCngwGroupInternetConfig
    internet configration.
    InternetMaxBandwidthOut double
    public network outbound traffic bandwidth,[1,2048]Mbps.
    Name string
    gateway group name.
    TseCngwGroupId string
    ID of the resource.
    GatewayId string
    gateway IDonly postpaid gateway supported.
    NodeConfig TseCngwGroupNodeConfigArgs
    group node configration.
    SubnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    Description string
    description information of group.
    InternetConfig TseCngwGroupInternetConfigArgs
    internet configration.
    InternetMaxBandwidthOut float64
    public network outbound traffic bandwidth,[1,2048]Mbps.
    Name string
    gateway group name.
    TseCngwGroupId string
    ID of the resource.
    gatewayId String
    gateway IDonly postpaid gateway supported.
    nodeConfig TseCngwGroupNodeConfig
    group node configration.
    subnetId String
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    description String
    description information of group.
    internetConfig TseCngwGroupInternetConfig
    internet configration.
    internetMaxBandwidthOut Double
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name String
    gateway group name.
    tseCngwGroupId String
    ID of the resource.
    gatewayId string
    gateway IDonly postpaid gateway supported.
    nodeConfig TseCngwGroupNodeConfig
    group node configration.
    subnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    description string
    description information of group.
    internetConfig TseCngwGroupInternetConfig
    internet configration.
    internetMaxBandwidthOut number
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name string
    gateway group name.
    tseCngwGroupId string
    ID of the resource.
    gateway_id str
    gateway IDonly postpaid gateway supported.
    node_config TseCngwGroupNodeConfigArgs
    group node configration.
    subnet_id str
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    description str
    description information of group.
    internet_config TseCngwGroupInternetConfigArgs
    internet configration.
    internet_max_bandwidth_out float
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name str
    gateway group name.
    tse_cngw_group_id str
    ID of the resource.
    gatewayId String
    gateway IDonly postpaid gateway supported.
    nodeConfig Property Map
    group node configration.
    subnetId String
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    description String
    description information of group.
    internetConfig Property Map
    internet configration.
    internetMaxBandwidthOut Number
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name String
    gateway group name.
    tseCngwGroupId String
    ID of the resource.

    Outputs

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

    GroupId string
    gateway group id.
    Id string
    The provider-assigned unique ID for this managed resource.
    GroupId string
    gateway group id.
    Id string
    The provider-assigned unique ID for this managed resource.
    groupId String
    gateway group id.
    id String
    The provider-assigned unique ID for this managed resource.
    groupId string
    gateway group id.
    id string
    The provider-assigned unique ID for this managed resource.
    group_id str
    gateway group id.
    id str
    The provider-assigned unique ID for this managed resource.
    groupId String
    gateway group id.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TseCngwGroup Resource

    Get an existing TseCngwGroup 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?: TseCngwGroupState, opts?: CustomResourceOptions): TseCngwGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            gateway_id: Optional[str] = None,
            group_id: Optional[str] = None,
            internet_config: Optional[TseCngwGroupInternetConfigArgs] = None,
            internet_max_bandwidth_out: Optional[float] = None,
            name: Optional[str] = None,
            node_config: Optional[TseCngwGroupNodeConfigArgs] = None,
            subnet_id: Optional[str] = None,
            tse_cngw_group_id: Optional[str] = None) -> TseCngwGroup
    func GetTseCngwGroup(ctx *Context, name string, id IDInput, state *TseCngwGroupState, opts ...ResourceOption) (*TseCngwGroup, error)
    public static TseCngwGroup Get(string name, Input<string> id, TseCngwGroupState? state, CustomResourceOptions? opts = null)
    public static TseCngwGroup get(String name, Output<String> id, TseCngwGroupState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TseCngwGroup    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:
    Description string
    description information of group.
    GatewayId string
    gateway IDonly postpaid gateway supported.
    GroupId string
    gateway group id.
    InternetConfig TseCngwGroupInternetConfig
    internet configration.
    InternetMaxBandwidthOut double
    public network outbound traffic bandwidth,[1,2048]Mbps.
    Name string
    gateway group name.
    NodeConfig TseCngwGroupNodeConfig
    group node configration.
    SubnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    TseCngwGroupId string
    ID of the resource.
    Description string
    description information of group.
    GatewayId string
    gateway IDonly postpaid gateway supported.
    GroupId string
    gateway group id.
    InternetConfig TseCngwGroupInternetConfigArgs
    internet configration.
    InternetMaxBandwidthOut float64
    public network outbound traffic bandwidth,[1,2048]Mbps.
    Name string
    gateway group name.
    NodeConfig TseCngwGroupNodeConfigArgs
    group node configration.
    SubnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    TseCngwGroupId string
    ID of the resource.
    description String
    description information of group.
    gatewayId String
    gateway IDonly postpaid gateway supported.
    groupId String
    gateway group id.
    internetConfig TseCngwGroupInternetConfig
    internet configration.
    internetMaxBandwidthOut Double
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name String
    gateway group name.
    nodeConfig TseCngwGroupNodeConfig
    group node configration.
    subnetId String
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    tseCngwGroupId String
    ID of the resource.
    description string
    description information of group.
    gatewayId string
    gateway IDonly postpaid gateway supported.
    groupId string
    gateway group id.
    internetConfig TseCngwGroupInternetConfig
    internet configration.
    internetMaxBandwidthOut number
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name string
    gateway group name.
    nodeConfig TseCngwGroupNodeConfig
    group node configration.
    subnetId string
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    tseCngwGroupId string
    ID of the resource.
    description str
    description information of group.
    gateway_id str
    gateway IDonly postpaid gateway supported.
    group_id str
    gateway group id.
    internet_config TseCngwGroupInternetConfigArgs
    internet configration.
    internet_max_bandwidth_out float
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name str
    gateway group name.
    node_config TseCngwGroupNodeConfigArgs
    group node configration.
    subnet_id str
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    tse_cngw_group_id str
    ID of the resource.
    description String
    description information of group.
    gatewayId String
    gateway IDonly postpaid gateway supported.
    groupId String
    gateway group id.
    internetConfig Property Map
    internet configration.
    internetMaxBandwidthOut Number
    public network outbound traffic bandwidth,[1,2048]Mbps.
    name String
    gateway group name.
    nodeConfig Property Map
    group node configration.
    subnetId String
    subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
    tseCngwGroupId String
    ID of the resource.

    Supporting Types

    TseCngwGroupInternetConfig, TseCngwGroupInternetConfigArgs

    Description string
    description of clb.
    InternetAddressVersion string
    internet type. Reference value:- IPV4 (default value)- IPV6.
    InternetMaxBandwidthOut double
    public network bandwidth.
    InternetPayMode string
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    MasterZoneId string
    primary availability zone.
    MultiZoneFlag bool
    Whether load balancing has multiple availability zones.
    SlaType string
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    SlaveZoneId string
    alternate availability zone.
    Description string
    description of clb.
    InternetAddressVersion string
    internet type. Reference value:- IPV4 (default value)- IPV6.
    InternetMaxBandwidthOut float64
    public network bandwidth.
    InternetPayMode string
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    MasterZoneId string
    primary availability zone.
    MultiZoneFlag bool
    Whether load balancing has multiple availability zones.
    SlaType string
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    SlaveZoneId string
    alternate availability zone.
    description String
    description of clb.
    internetAddressVersion String
    internet type. Reference value:- IPV4 (default value)- IPV6.
    internetMaxBandwidthOut Double
    public network bandwidth.
    internetPayMode String
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    masterZoneId String
    primary availability zone.
    multiZoneFlag Boolean
    Whether load balancing has multiple availability zones.
    slaType String
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    slaveZoneId String
    alternate availability zone.
    description string
    description of clb.
    internetAddressVersion string
    internet type. Reference value:- IPV4 (default value)- IPV6.
    internetMaxBandwidthOut number
    public network bandwidth.
    internetPayMode string
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    masterZoneId string
    primary availability zone.
    multiZoneFlag boolean
    Whether load balancing has multiple availability zones.
    slaType string
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    slaveZoneId string
    alternate availability zone.
    description str
    description of clb.
    internet_address_version str
    internet type. Reference value:- IPV4 (default value)- IPV6.
    internet_max_bandwidth_out float
    public network bandwidth.
    internet_pay_mode str
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    master_zone_id str
    primary availability zone.
    multi_zone_flag bool
    Whether load balancing has multiple availability zones.
    sla_type str
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    slave_zone_id str
    alternate availability zone.
    description String
    description of clb.
    internetAddressVersion String
    internet type. Reference value:- IPV4 (default value)- IPV6.
    internetMaxBandwidthOut Number
    public network bandwidth.
    internetPayMode String
    trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
    masterZoneId String
    primary availability zone.
    multiZoneFlag Boolean
    Whether load balancing has multiple availability zones.
    slaType String
    specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
    slaveZoneId String
    alternate availability zone.

    TseCngwGroupNodeConfig, TseCngwGroupNodeConfigArgs

    Number double
    group node number, 2-50.
    Specification string
    group specification, 1c2g|2c4g|4c8g|8c16g.
    Number float64
    group node number, 2-50.
    Specification string
    group specification, 1c2g|2c4g|4c8g|8c16g.
    number Double
    group node number, 2-50.
    specification String
    group specification, 1c2g|2c4g|4c8g|8c16g.
    number number
    group node number, 2-50.
    specification string
    group specification, 1c2g|2c4g|4c8g|8c16g.
    number float
    group node number, 2-50.
    specification str
    group specification, 1c2g|2c4g|4c8g|8c16g.
    number Number
    group node number, 2-50.
    specification String
    group specification, 1c2g|2c4g|4c8g|8c16g.

    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