tencentcloud.CynosdbProxy
Explore with Pulumi AI
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:
- Cluster
Id string - Cluster ID.
- Cpu double
- Number of CPU cores.
- Mem double
- Memory.
- Connection
Pool doubleTime Out - Connection pool threshold: unit (second).
- Connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- Cynosdb
Proxy stringId - ID of the resource.
- Description string
- Description.
- Open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- Proxy
Count double - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - Proxy
Zones List<CynosdbProxy Proxy Zone> - Database node information.
- Security
Group List<string>Ids - Security Group ID Array.
- Unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- Unique
Vpc stringId - Private network ID, which is consistent with the cluster private network ID by default.
- Cluster
Id string - Cluster ID.
- Cpu float64
- Number of CPU cores.
- Mem float64
- Memory.
- Connection
Pool float64Time Out - Connection pool threshold: unit (second).
- Connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- Cynosdb
Proxy stringId - ID of the resource.
- Description string
- Description.
- Open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- Proxy
Count float64 - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - Proxy
Zones []CynosdbProxy Proxy Zone Args - Database node information.
- Security
Group []stringIds - Security Group ID Array.
- Unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- Unique
Vpc stringId - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id String - Cluster ID.
- cpu Double
- Number of CPU cores.
- mem Double
- Memory.
- connection
Pool DoubleTime Out - Connection pool threshold: unit (second).
- connection
Pool StringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cynosdb
Proxy StringId - ID of the resource.
- description String
- Description.
- open
Connection StringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count Double - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Zones List<CynosdbProxy Proxy Zone> - Database node information.
- security
Group List<String>Ids - Security Group ID Array.
- unique
Subnet StringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc StringId - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id string - Cluster ID.
- cpu number
- Number of CPU cores.
- mem number
- Memory.
- connection
Pool numberTime Out - Connection pool threshold: unit (second).
- connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cynosdb
Proxy stringId - ID of the resource.
- description string
- Description.
- open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count number - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Zones CynosdbProxy Proxy Zone[] - Database node information.
- security
Group string[]Ids - Security Group ID Array.
- unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc stringId - 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_ floattime_ out - Connection pool threshold: unit (second).
- connection_
pool_ strtype - Connection pool type: SessionConnectionPool (session level Connection pool).
- cynosdb_
proxy_ strid - ID of the resource.
- description str
- Description.
- open_
connection_ strpool - 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, theproxy_zones
parameter shall prevail. - proxy_
zones Sequence[CynosdbProxy Proxy Zone Args] - Database node information.
- security_
group_ Sequence[str]ids - Security Group ID Array.
- unique_
subnet_ strid - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique_
vpc_ strid - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id String - Cluster ID.
- cpu Number
- Number of CPU cores.
- mem Number
- Memory.
- connection
Pool NumberTime Out - Connection pool threshold: unit (second).
- connection
Pool StringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cynosdb
Proxy StringId - ID of the resource.
- description String
- Description.
- open
Connection StringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count Number - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Zones List<Property Map> - Database node information.
- security
Group List<String>Ids - Security Group ID Array.
- unique
Subnet StringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc StringId - 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.
- Proxy
Group stringId - Proxy Group Id.
- Ro
Instances List<CynosdbProxy Ro Instance> - Read only instance list.
- Id string
- The provider-assigned unique ID for this managed resource.
- Proxy
Group stringId - Proxy Group Id.
- Ro
Instances []CynosdbProxy Ro Instance - Read only instance list.
- id String
- The provider-assigned unique ID for this managed resource.
- proxy
Group StringId - Proxy Group Id.
- ro
Instances List<CynosdbProxy Ro Instance> - Read only instance list.
- id string
- The provider-assigned unique ID for this managed resource.
- proxy
Group stringId - Proxy Group Id.
- ro
Instances CynosdbProxy Ro Instance[] - Read only instance list.
- id str
- The provider-assigned unique ID for this managed resource.
- proxy_
group_ strid - Proxy Group Id.
- ro_
instances Sequence[CynosdbProxy Ro Instance] - Read only instance list.
- id String
- The provider-assigned unique ID for this managed resource.
- proxy
Group StringId - Proxy Group Id.
- ro
Instances 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.
- Cluster
Id string - Cluster ID.
- Connection
Pool doubleTime Out - Connection pool threshold: unit (second).
- Connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- Cpu double
- Number of CPU cores.
- Cynosdb
Proxy stringId - ID of the resource.
- Description string
- Description.
- Mem double
- Memory.
- Open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- Proxy
Count double - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - Proxy
Group stringId - Proxy Group Id.
- Proxy
Zones List<CynosdbProxy Proxy Zone> - Database node information.
- Ro
Instances List<CynosdbProxy Ro Instance> - Read only instance list.
- Security
Group List<string>Ids - Security Group ID Array.
- Unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- Unique
Vpc stringId - Private network ID, which is consistent with the cluster private network ID by default.
- Cluster
Id string - Cluster ID.
- Connection
Pool float64Time Out - Connection pool threshold: unit (second).
- Connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- Cpu float64
- Number of CPU cores.
- Cynosdb
Proxy stringId - ID of the resource.
- Description string
- Description.
- Mem float64
- Memory.
- Open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- Proxy
Count float64 - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - Proxy
Group stringId - Proxy Group Id.
- Proxy
Zones []CynosdbProxy Proxy Zone Args - Database node information.
- Ro
Instances []CynosdbProxy Ro Instance Args - Read only instance list.
- Security
Group []stringIds - Security Group ID Array.
- Unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- Unique
Vpc stringId - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id String - Cluster ID.
- connection
Pool DoubleTime Out - Connection pool threshold: unit (second).
- connection
Pool StringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cpu Double
- Number of CPU cores.
- cynosdb
Proxy StringId - ID of the resource.
- description String
- Description.
- mem Double
- Memory.
- open
Connection StringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count Double - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Group StringId - Proxy Group Id.
- proxy
Zones List<CynosdbProxy Proxy Zone> - Database node information.
- ro
Instances List<CynosdbProxy Ro Instance> - Read only instance list.
- security
Group List<String>Ids - Security Group ID Array.
- unique
Subnet StringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc StringId - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id string - Cluster ID.
- connection
Pool numberTime Out - Connection pool threshold: unit (second).
- connection
Pool stringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cpu number
- Number of CPU cores.
- cynosdb
Proxy stringId - ID of the resource.
- description string
- Description.
- mem number
- Memory.
- open
Connection stringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count number - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Group stringId - Proxy Group Id.
- proxy
Zones CynosdbProxy Proxy Zone[] - Database node information.
- ro
Instances CynosdbProxy Ro Instance[] - Read only instance list.
- security
Group string[]Ids - Security Group ID Array.
- unique
Subnet stringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc stringId - Private network ID, which is consistent with the cluster private network ID by default.
- cluster_
id str - Cluster ID.
- connection_
pool_ floattime_ out - Connection pool threshold: unit (second).
- connection_
pool_ strtype - Connection pool type: SessionConnectionPool (session level Connection pool).
- cpu float
- Number of CPU cores.
- cynosdb_
proxy_ strid - ID of the resource.
- description str
- Description.
- mem float
- Memory.
- open_
connection_ strpool - 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, theproxy_zones
parameter shall prevail. - proxy_
group_ strid - Proxy Group Id.
- proxy_
zones Sequence[CynosdbProxy Proxy Zone Args] - Database node information.
- ro_
instances Sequence[CynosdbProxy Ro Instance Args] - Read only instance list.
- security_
group_ Sequence[str]ids - Security Group ID Array.
- unique_
subnet_ strid - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique_
vpc_ strid - Private network ID, which is consistent with the cluster private network ID by default.
- cluster
Id String - Cluster ID.
- connection
Pool NumberTime Out - Connection pool threshold: unit (second).
- connection
Pool StringType - Connection pool type: SessionConnectionPool (session level Connection pool).
- cpu Number
- Number of CPU cores.
- cynosdb
Proxy StringId - ID of the resource.
- description String
- Description.
- mem Number
- Memory.
- open
Connection StringPool - Whether to enable Connection pool, yes - enable, no - do not enable.
- proxy
Count Number - Number of database proxy group nodes. If it is set at the same time as the
proxy_zones
field, theproxy_zones
parameter shall prevail. - proxy
Group StringId - Proxy Group Id.
- proxy
Zones List<Property Map> - Database node information.
- ro
Instances List<Property Map> - Read only instance list.
- security
Group List<String>Ids - Security Group ID Array.
- unique
Subnet StringId - The private network subnet ID is consistent with the cluster subnet ID by default.
- unique
Vpc StringId - Private network ID, which is consistent with the cluster private network ID by default.
Supporting Types
CynosdbProxyProxyZone, CynosdbProxyProxyZoneArgs
- Proxy
Node doubleCount - Number of proxy nodes.
- Proxy
Node stringZone - Proxy node availability zone.
- Proxy
Node float64Count - Number of proxy nodes.
- Proxy
Node stringZone - Proxy node availability zone.
- proxy
Node DoubleCount - Number of proxy nodes.
- proxy
Node StringZone - Proxy node availability zone.
- proxy
Node numberCount - Number of proxy nodes.
- proxy
Node stringZone - Proxy node availability zone.
- proxy_
node_ floatcount - Number of proxy nodes.
- proxy_
node_ strzone - Proxy node availability zone.
- proxy
Node NumberCount - Number of proxy nodes.
- proxy
Node StringZone - Proxy node availability zone.
CynosdbProxyRoInstance, CynosdbProxyRoInstanceArgs
- Instance
Id string - Weight double
- Instance
Id string - Weight float64
- instance
Id String - weight Double
- instance
Id string - weight number
- instance_
id str - weight float
- instance
Id String - weight Number
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.