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

tencentcloud.CynosdbProxy

Explore with Pulumi AI

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

    Provides a resource to create a cynosdb proxy

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const proxy = new tencentcloud.CynosdbProxy("proxy", {
        clusterId: "cynosdbmysql-bws8h88b",
        connectionPoolTimeOut: 30,
        connectionPoolType: "SessionConnectionPool",
        cpu: 2,
        description: "desc sample",
        mem: 4000,
        openConnectionPool: "yes",
        proxyZones: [{
            proxyNodeCount: 2,
            proxyNodeZone: "ap-guangzhou-7",
        }],
        securityGroupIds: ["sg-baxfiao5"],
        uniqueSubnetId: "subnet-jdi5xn22",
        uniqueVpcId: "vpc-k1t8ickr",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    proxy = tencentcloud.CynosdbProxy("proxy",
        cluster_id="cynosdbmysql-bws8h88b",
        connection_pool_time_out=30,
        connection_pool_type="SessionConnectionPool",
        cpu=2,
        description="desc sample",
        mem=4000,
        open_connection_pool="yes",
        proxy_zones=[{
            "proxy_node_count": 2,
            "proxy_node_zone": "ap-guangzhou-7",
        }],
        security_group_ids=["sg-baxfiao5"],
        unique_subnet_id="subnet-jdi5xn22",
        unique_vpc_id="vpc-k1t8ickr")
    
    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.NewCynosdbProxy(ctx, "proxy", &tencentcloud.CynosdbProxyArgs{
    			ClusterId:             pulumi.String("cynosdbmysql-bws8h88b"),
    			ConnectionPoolTimeOut: pulumi.Float64(30),
    			ConnectionPoolType:    pulumi.String("SessionConnectionPool"),
    			Cpu:                   pulumi.Float64(2),
    			Description:           pulumi.String("desc sample"),
    			Mem:                   pulumi.Float64(4000),
    			OpenConnectionPool:    pulumi.String("yes"),
    			ProxyZones: tencentcloud.CynosdbProxyProxyZoneArray{
    				&tencentcloud.CynosdbProxyProxyZoneArgs{
    					ProxyNodeCount: pulumi.Float64(2),
    					ProxyNodeZone:  pulumi.String("ap-guangzhou-7"),
    				},
    			},
    			SecurityGroupIds: pulumi.StringArray{
    				pulumi.String("sg-baxfiao5"),
    			},
    			UniqueSubnetId: pulumi.String("subnet-jdi5xn22"),
    			UniqueVpcId:    pulumi.String("vpc-k1t8ickr"),
    		})
    		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 proxy = new Tencentcloud.CynosdbProxy("proxy", new()
        {
            ClusterId = "cynosdbmysql-bws8h88b",
            ConnectionPoolTimeOut = 30,
            ConnectionPoolType = "SessionConnectionPool",
            Cpu = 2,
            Description = "desc sample",
            Mem = 4000,
            OpenConnectionPool = "yes",
            ProxyZones = new[]
            {
                new Tencentcloud.Inputs.CynosdbProxyProxyZoneArgs
                {
                    ProxyNodeCount = 2,
                    ProxyNodeZone = "ap-guangzhou-7",
                },
            },
            SecurityGroupIds = new[]
            {
                "sg-baxfiao5",
            },
            UniqueSubnetId = "subnet-jdi5xn22",
            UniqueVpcId = "vpc-k1t8ickr",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CynosdbProxy;
    import com.pulumi.tencentcloud.CynosdbProxyArgs;
    import com.pulumi.tencentcloud.inputs.CynosdbProxyProxyZoneArgs;
    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 proxy = new CynosdbProxy("proxy", CynosdbProxyArgs.builder()
                .clusterId("cynosdbmysql-bws8h88b")
                .connectionPoolTimeOut(30)
                .connectionPoolType("SessionConnectionPool")
                .cpu(2)
                .description("desc sample")
                .mem(4000)
                .openConnectionPool("yes")
                .proxyZones(CynosdbProxyProxyZoneArgs.builder()
                    .proxyNodeCount(2)
                    .proxyNodeZone("ap-guangzhou-7")
                    .build())
                .securityGroupIds("sg-baxfiao5")
                .uniqueSubnetId("subnet-jdi5xn22")
                .uniqueVpcId("vpc-k1t8ickr")
                .build());
    
        }
    }
    
    resources:
      proxy:
        type: tencentcloud:CynosdbProxy
        properties:
          clusterId: cynosdbmysql-bws8h88b
          connectionPoolTimeOut: 30
          connectionPoolType: SessionConnectionPool
          cpu: 2
          description: desc sample
          mem: 4000
          openConnectionPool: yes
          proxyZones:
            - proxyNodeCount: 2
              proxyNodeZone: ap-guangzhou-7
          securityGroupIds:
            - sg-baxfiao5
          uniqueSubnetId: subnet-jdi5xn22
          uniqueVpcId: vpc-k1t8ickr
    

    Create CynosdbProxy Resource

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

    Constructor syntax

    new CynosdbProxy(name: string, args: CynosdbProxyArgs, opts?: CustomResourceOptions);
    @overload
    def CynosdbProxy(resource_name: str,
                     args: CynosdbProxyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CynosdbProxy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     mem: Optional[float] = None,
                     cpu: Optional[float] = None,
                     cluster_id: Optional[str] = None,
                     connection_pool_time_out: Optional[float] = None,
                     connection_pool_type: Optional[str] = None,
                     cynosdb_proxy_id: Optional[str] = None,
                     description: Optional[str] = None,
                     open_connection_pool: Optional[str] = None,
                     proxy_count: Optional[float] = None,
                     proxy_zones: Optional[Sequence[CynosdbProxyProxyZoneArgs]] = None,
                     security_group_ids: Optional[Sequence[str]] = None,
                     unique_subnet_id: Optional[str] = None,
                     unique_vpc_id: Optional[str] = None)
    func NewCynosdbProxy(ctx *Context, name string, args CynosdbProxyArgs, opts ...ResourceOption) (*CynosdbProxy, error)
    public CynosdbProxy(string name, CynosdbProxyArgs args, CustomResourceOptions? opts = null)
    public CynosdbProxy(String name, CynosdbProxyArgs args)
    public CynosdbProxy(String name, CynosdbProxyArgs args, CustomResourceOptions options)
    
    type: tencentcloud:CynosdbProxy
    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 CynosdbProxyArgs
    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 CynosdbProxyArgs
    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 CynosdbProxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CynosdbProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CynosdbProxyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ClusterId string
    Cluster ID.
    Cpu double
    Number of CPU cores.
    Mem double
    Memory.
    ConnectionPoolTimeOut double
    Connection pool threshold: unit (second).
    ConnectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    CynosdbProxyId string
    ID of the resource.
    Description string
    Description.
    OpenConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    ProxyCount double
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    ProxyZones List<CynosdbProxyProxyZone>
    Database node information.
    SecurityGroupIds List<string>
    Security Group ID Array.
    UniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    UniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    ClusterId string
    Cluster ID.
    Cpu float64
    Number of CPU cores.
    Mem float64
    Memory.
    ConnectionPoolTimeOut float64
    Connection pool threshold: unit (second).
    ConnectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    CynosdbProxyId string
    ID of the resource.
    Description string
    Description.
    OpenConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    ProxyCount float64
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    ProxyZones []CynosdbProxyProxyZoneArgs
    Database node information.
    SecurityGroupIds []string
    Security Group ID Array.
    UniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    UniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId String
    Cluster ID.
    cpu Double
    Number of CPU cores.
    mem Double
    Memory.
    connectionPoolTimeOut Double
    Connection pool threshold: unit (second).
    connectionPoolType String
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cynosdbProxyId String
    ID of the resource.
    description String
    Description.
    openConnectionPool String
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount Double
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyZones List<CynosdbProxyProxyZone>
    Database node information.
    securityGroupIds List<String>
    Security Group ID Array.
    uniqueSubnetId String
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId String
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId string
    Cluster ID.
    cpu number
    Number of CPU cores.
    mem number
    Memory.
    connectionPoolTimeOut number
    Connection pool threshold: unit (second).
    connectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cynosdbProxyId string
    ID of the resource.
    description string
    Description.
    openConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount number
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyZones CynosdbProxyProxyZone[]
    Database node information.
    securityGroupIds string[]
    Security Group ID Array.
    uniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    cluster_id str
    Cluster ID.
    cpu float
    Number of CPU cores.
    mem float
    Memory.
    connection_pool_time_out float
    Connection pool threshold: unit (second).
    connection_pool_type str
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cynosdb_proxy_id str
    ID of the resource.
    description str
    Description.
    open_connection_pool str
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxy_count float
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxy_zones Sequence[CynosdbProxyProxyZoneArgs]
    Database node information.
    security_group_ids Sequence[str]
    Security Group ID Array.
    unique_subnet_id str
    The private network subnet ID is consistent with the cluster subnet ID by default.
    unique_vpc_id str
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId String
    Cluster ID.
    cpu Number
    Number of CPU cores.
    mem Number
    Memory.
    connectionPoolTimeOut Number
    Connection pool threshold: unit (second).
    connectionPoolType String
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cynosdbProxyId String
    ID of the resource.
    description String
    Description.
    openConnectionPool String
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount Number
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyZones List<Property Map>
    Database node information.
    securityGroupIds List<String>
    Security Group ID Array.
    uniqueSubnetId String
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId String
    Private network ID, which is consistent with the cluster private network ID by default.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ProxyGroupId string
    Proxy Group Id.
    RoInstances List<CynosdbProxyRoInstance>
    Read only instance list.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProxyGroupId string
    Proxy Group Id.
    RoInstances []CynosdbProxyRoInstance
    Read only instance list.
    id String
    The provider-assigned unique ID for this managed resource.
    proxyGroupId String
    Proxy Group Id.
    roInstances List<CynosdbProxyRoInstance>
    Read only instance list.
    id string
    The provider-assigned unique ID for this managed resource.
    proxyGroupId string
    Proxy Group Id.
    roInstances CynosdbProxyRoInstance[]
    Read only instance list.
    id str
    The provider-assigned unique ID for this managed resource.
    proxy_group_id str
    Proxy Group Id.
    ro_instances Sequence[CynosdbProxyRoInstance]
    Read only instance list.
    id String
    The provider-assigned unique ID for this managed resource.
    proxyGroupId String
    Proxy Group Id.
    roInstances List<Property Map>
    Read only instance list.

    Look up Existing CynosdbProxy Resource

    Get an existing CynosdbProxy 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?: CynosdbProxyState, opts?: CustomResourceOptions): CynosdbProxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_id: Optional[str] = None,
            connection_pool_time_out: Optional[float] = None,
            connection_pool_type: Optional[str] = None,
            cpu: Optional[float] = None,
            cynosdb_proxy_id: Optional[str] = None,
            description: Optional[str] = None,
            mem: Optional[float] = None,
            open_connection_pool: Optional[str] = None,
            proxy_count: Optional[float] = None,
            proxy_group_id: Optional[str] = None,
            proxy_zones: Optional[Sequence[CynosdbProxyProxyZoneArgs]] = None,
            ro_instances: Optional[Sequence[CynosdbProxyRoInstanceArgs]] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            unique_subnet_id: Optional[str] = None,
            unique_vpc_id: Optional[str] = None) -> CynosdbProxy
    func GetCynosdbProxy(ctx *Context, name string, id IDInput, state *CynosdbProxyState, opts ...ResourceOption) (*CynosdbProxy, error)
    public static CynosdbProxy Get(string name, Input<string> id, CynosdbProxyState? state, CustomResourceOptions? opts = null)
    public static CynosdbProxy get(String name, Output<String> id, CynosdbProxyState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:CynosdbProxy    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:
    ClusterId string
    Cluster ID.
    ConnectionPoolTimeOut double
    Connection pool threshold: unit (second).
    ConnectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    Cpu double
    Number of CPU cores.
    CynosdbProxyId string
    ID of the resource.
    Description string
    Description.
    Mem double
    Memory.
    OpenConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    ProxyCount double
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    ProxyGroupId string
    Proxy Group Id.
    ProxyZones List<CynosdbProxyProxyZone>
    Database node information.
    RoInstances List<CynosdbProxyRoInstance>
    Read only instance list.
    SecurityGroupIds List<string>
    Security Group ID Array.
    UniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    UniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    ClusterId string
    Cluster ID.
    ConnectionPoolTimeOut float64
    Connection pool threshold: unit (second).
    ConnectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    Cpu float64
    Number of CPU cores.
    CynosdbProxyId string
    ID of the resource.
    Description string
    Description.
    Mem float64
    Memory.
    OpenConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    ProxyCount float64
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    ProxyGroupId string
    Proxy Group Id.
    ProxyZones []CynosdbProxyProxyZoneArgs
    Database node information.
    RoInstances []CynosdbProxyRoInstanceArgs
    Read only instance list.
    SecurityGroupIds []string
    Security Group ID Array.
    UniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    UniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId String
    Cluster ID.
    connectionPoolTimeOut Double
    Connection pool threshold: unit (second).
    connectionPoolType String
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cpu Double
    Number of CPU cores.
    cynosdbProxyId String
    ID of the resource.
    description String
    Description.
    mem Double
    Memory.
    openConnectionPool String
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount Double
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyGroupId String
    Proxy Group Id.
    proxyZones List<CynosdbProxyProxyZone>
    Database node information.
    roInstances List<CynosdbProxyRoInstance>
    Read only instance list.
    securityGroupIds List<String>
    Security Group ID Array.
    uniqueSubnetId String
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId String
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId string
    Cluster ID.
    connectionPoolTimeOut number
    Connection pool threshold: unit (second).
    connectionPoolType string
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cpu number
    Number of CPU cores.
    cynosdbProxyId string
    ID of the resource.
    description string
    Description.
    mem number
    Memory.
    openConnectionPool string
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount number
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyGroupId string
    Proxy Group Id.
    proxyZones CynosdbProxyProxyZone[]
    Database node information.
    roInstances CynosdbProxyRoInstance[]
    Read only instance list.
    securityGroupIds string[]
    Security Group ID Array.
    uniqueSubnetId string
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId string
    Private network ID, which is consistent with the cluster private network ID by default.
    cluster_id str
    Cluster ID.
    connection_pool_time_out float
    Connection pool threshold: unit (second).
    connection_pool_type str
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cpu float
    Number of CPU cores.
    cynosdb_proxy_id str
    ID of the resource.
    description str
    Description.
    mem float
    Memory.
    open_connection_pool str
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxy_count float
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxy_group_id str
    Proxy Group Id.
    proxy_zones Sequence[CynosdbProxyProxyZoneArgs]
    Database node information.
    ro_instances Sequence[CynosdbProxyRoInstanceArgs]
    Read only instance list.
    security_group_ids Sequence[str]
    Security Group ID Array.
    unique_subnet_id str
    The private network subnet ID is consistent with the cluster subnet ID by default.
    unique_vpc_id str
    Private network ID, which is consistent with the cluster private network ID by default.
    clusterId String
    Cluster ID.
    connectionPoolTimeOut Number
    Connection pool threshold: unit (second).
    connectionPoolType String
    Connection pool type: SessionConnectionPool (session level Connection pool).
    cpu Number
    Number of CPU cores.
    cynosdbProxyId String
    ID of the resource.
    description String
    Description.
    mem Number
    Memory.
    openConnectionPool String
    Whether to enable Connection pool, yes - enable, no - do not enable.
    proxyCount Number
    Number of database proxy group nodes. If it is set at the same time as the proxy_zones field, the proxy_zones parameter shall prevail.
    proxyGroupId String
    Proxy Group Id.
    proxyZones List<Property Map>
    Database node information.
    roInstances List<Property Map>
    Read only instance list.
    securityGroupIds List<String>
    Security Group ID Array.
    uniqueSubnetId String
    The private network subnet ID is consistent with the cluster subnet ID by default.
    uniqueVpcId String
    Private network ID, which is consistent with the cluster private network ID by default.

    Supporting Types

    CynosdbProxyProxyZone, CynosdbProxyProxyZoneArgs

    ProxyNodeCount double
    Number of proxy nodes.
    ProxyNodeZone string
    Proxy node availability zone.
    ProxyNodeCount float64
    Number of proxy nodes.
    ProxyNodeZone string
    Proxy node availability zone.
    proxyNodeCount Double
    Number of proxy nodes.
    proxyNodeZone String
    Proxy node availability zone.
    proxyNodeCount number
    Number of proxy nodes.
    proxyNodeZone string
    Proxy node availability zone.
    proxy_node_count float
    Number of proxy nodes.
    proxy_node_zone str
    Proxy node availability zone.
    proxyNodeCount Number
    Number of proxy nodes.
    proxyNodeZone String
    Proxy node availability zone.

    CynosdbProxyRoInstance, CynosdbProxyRoInstanceArgs

    InstanceId string
    Weight double
    InstanceId string
    Weight float64
    instanceId String
    weight Double
    instanceId string
    weight number
    instanceId String
    weight Number

    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