tencentcloud.TseCngwGroup
Explore with Pulumi AI
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:
- Gateway
Id string - gateway IDonly postpaid gateway supported.
- Node
Config TseCngw Group Node Config - group node configration.
- Subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- Description string
- description information of group.
- Internet
Config TseCngw Group Internet Config - internet configration.
- Internet
Max doubleBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- Name string
- gateway group name.
- Tse
Cngw stringGroup Id - ID of the resource.
- Gateway
Id string - gateway IDonly postpaid gateway supported.
- Node
Config TseCngw Group Node Config Args - group node configration.
- Subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- Description string
- description information of group.
- Internet
Config TseCngw Group Internet Config Args - internet configration.
- Internet
Max float64Bandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- Name string
- gateway group name.
- Tse
Cngw stringGroup Id - ID of the resource.
- gateway
Id String - gateway IDonly postpaid gateway supported.
- node
Config TseCngw Group Node Config - group node configration.
- subnet
Id String - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- description String
- description information of group.
- internet
Config TseCngw Group Internet Config - internet configration.
- internet
Max DoubleBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name String
- gateway group name.
- tse
Cngw StringGroup Id - ID of the resource.
- gateway
Id string - gateway IDonly postpaid gateway supported.
- node
Config TseCngw Group Node Config - group node configration.
- subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- description string
- description information of group.
- internet
Config TseCngw Group Internet Config - internet configration.
- internet
Max numberBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name string
- gateway group name.
- tse
Cngw stringGroup Id - ID of the resource.
- gateway_
id str - gateway IDonly postpaid gateway supported.
- node_
config TseCngw Group Node Config Args - 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 TseCngw Group Internet Config Args - internet configration.
- internet_
max_ floatbandwidth_ out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name str
- gateway group name.
- tse_
cngw_ strgroup_ id - ID of the resource.
- gateway
Id String - gateway IDonly postpaid gateway supported.
- node
Config Property Map - group node configration.
- subnet
Id String - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- description String
- description information of group.
- internet
Config Property Map - internet configration.
- internet
Max NumberBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name String
- gateway group name.
- tse
Cngw StringGroup Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TseCngwGroup resource produces the following output properties:
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.
- Description string
- description information of group.
- Gateway
Id string - gateway IDonly postpaid gateway supported.
- Group
Id string - gateway group id.
- Internet
Config TseCngw Group Internet Config - internet configration.
- Internet
Max doubleBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- Name string
- gateway group name.
- Node
Config TseCngw Group Node Config - group node configration.
- Subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- Tse
Cngw stringGroup Id - ID of the resource.
- Description string
- description information of group.
- Gateway
Id string - gateway IDonly postpaid gateway supported.
- Group
Id string - gateway group id.
- Internet
Config TseCngw Group Internet Config Args - internet configration.
- Internet
Max float64Bandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- Name string
- gateway group name.
- Node
Config TseCngw Group Node Config Args - group node configration.
- Subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- Tse
Cngw stringGroup Id - ID of the resource.
- description String
- description information of group.
- gateway
Id String - gateway IDonly postpaid gateway supported.
- group
Id String - gateway group id.
- internet
Config TseCngw Group Internet Config - internet configration.
- internet
Max DoubleBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name String
- gateway group name.
- node
Config TseCngw Group Node Config - group node configration.
- subnet
Id String - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- tse
Cngw StringGroup Id - ID of the resource.
- description string
- description information of group.
- gateway
Id string - gateway IDonly postpaid gateway supported.
- group
Id string - gateway group id.
- internet
Config TseCngw Group Internet Config - internet configration.
- internet
Max numberBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name string
- gateway group name.
- node
Config TseCngw Group Node Config - group node configration.
- subnet
Id string - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- tse
Cngw stringGroup Id - 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 TseCngw Group Internet Config Args - internet configration.
- internet_
max_ floatbandwidth_ out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name str
- gateway group name.
- node_
config TseCngw Group Node Config Args - 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_ strgroup_ id - ID of the resource.
- description String
- description information of group.
- gateway
Id String - gateway IDonly postpaid gateway supported.
- group
Id String - gateway group id.
- internet
Config Property Map - internet configration.
- internet
Max NumberBandwidth Out - public network outbound traffic bandwidth,[1,2048]Mbps.
- name String
- gateway group name.
- node
Config Property Map - group node configration.
- subnet
Id String - subnet ID. Assign an IP address to the engine in the VPC subnet. Reference value:- subnet-ahde9me9.
- tse
Cngw StringGroup Id - ID of the resource.
Supporting Types
TseCngwGroupInternetConfig, TseCngwGroupInternetConfigArgs
- Description string
- description of clb.
- Internet
Address stringVersion - internet type. Reference value:- IPV4 (default value)- IPV6.
- Internet
Max doubleBandwidth Out - public network bandwidth.
- Internet
Pay stringMode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- Master
Zone stringId - primary availability zone.
- Multi
Zone boolFlag - Whether load balancing has multiple availability zones.
- Sla
Type string - specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
- Slave
Zone stringId - alternate availability zone.
- Description string
- description of clb.
- Internet
Address stringVersion - internet type. Reference value:- IPV4 (default value)- IPV6.
- Internet
Max float64Bandwidth Out - public network bandwidth.
- Internet
Pay stringMode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- Master
Zone stringId - primary availability zone.
- Multi
Zone boolFlag - Whether load balancing has multiple availability zones.
- Sla
Type string - specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
- Slave
Zone stringId - alternate availability zone.
- description String
- description of clb.
- internet
Address StringVersion - internet type. Reference value:- IPV4 (default value)- IPV6.
- internet
Max DoubleBandwidth Out - public network bandwidth.
- internet
Pay StringMode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- master
Zone StringId - primary availability zone.
- multi
Zone BooleanFlag - Whether load balancing has multiple availability zones.
- sla
Type String - specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
- slave
Zone StringId - alternate availability zone.
- description string
- description of clb.
- internet
Address stringVersion - internet type. Reference value:- IPV4 (default value)- IPV6.
- internet
Max numberBandwidth Out - public network bandwidth.
- internet
Pay stringMode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- master
Zone stringId - primary availability zone.
- multi
Zone booleanFlag - Whether load balancing has multiple availability zones.
- sla
Type string - specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
- slave
Zone stringId - alternate availability zone.
- description str
- description of clb.
- internet_
address_ strversion - internet type. Reference value:- IPV4 (default value)- IPV6.
- internet_
max_ floatbandwidth_ out - public network bandwidth.
- internet_
pay_ strmode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- master_
zone_ strid - primary availability zone.
- multi_
zone_ boolflag - 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_ strid - alternate availability zone.
- description String
- description of clb.
- internet
Address StringVersion - internet type. Reference value:- IPV4 (default value)- IPV6.
- internet
Max NumberBandwidth Out - public network bandwidth.
- internet
Pay StringMode - trade type of internet. Reference value:- BANDWIDTH- TRAFFIC (default value).
- master
Zone StringId - primary availability zone.
- multi
Zone BooleanFlag - Whether load balancing has multiple availability zones.
- sla
Type String - specification type of clb. Default shared type when this parameter is empty. Reference value:- SLA LCU-supported.
- slave
Zone StringId - 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.