Domain name for API request: cdb.tencentcloudapi.com.
This API is used to create a database proxy address.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: CreateCdbProxyAddress. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-20. |
Region | No | String | Common Params. This parameter is not required for this API. |
ProxyGroupId | Yes | String | Proxy group ID |
WeightMode | Yes | String | Assignment mode of weights. Valid values: system (auto-assigned), custom . |
IsKickOut | Yes | Boolean | Whether to remove delayed read-only instances from the proxy group. Valid values: true , false . |
MinCount | Yes | Integer | Least read-only instances. Minimum value: 0 |
MaxDelay | Yes | Integer | The delay threshold. Minimum value: 0 |
FailOver | Yes | Boolean | Whether to enable failover. Valid values: true , false . |
AutoAddRo | Yes | Boolean | Whether to automatically add newly created read-only instances. Valid values: true , false . |
ReadOnly | Yes | Boolean | Whether it is read-only. Valid values: true , false . |
TransSplit | Yes | Boolean | Whether to enable transaction splitting. Valid values: true , false . |
ProxyAllocation.N | Yes | Array of ProxyAllocation | Assignment of read/write weights |
UniqVpcId | Yes | String | VPC ID |
UniqSubnetId | Yes | String | VPC subnet ID |
ConnectionPool | No | Boolean | Whether to enable the connection pool. Valid values: |
Desc | No | String | Description |
Vip | No | String | IP address |
VPort | No | Integer | Port |
SecurityGroup.N | No | Array of String | Security group |
ConnectionPoolType | No | String | Connection pool type, which will take effect only when ConnectionPool is true . Valid values: transaction (transaction-level), connection (session-level). |
Parameter Name | Type | Description |
---|---|---|
AsyncRequestId | String | Async task ID Note: This field may return null, indicating that no valid values can be obtained. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows you how to create a database proxy address.
POST / HTTP/1.1Host: cdb.tencentcloudapi.comContent-Type: application/jsonX-TC-Action: CreateCdbProxyAddress<common request parameters>{ "ProxyGroupId": "proxy-il2nlsdn", "UniqVpcId": "vpc-ixw3ll2d", "UniqSubnetId": "subnet-0z3r56vq", "IsKickOut": true, "MinCount": 1, "MaxDelay": 10, "WeightMode": "custom", "FailOver": true, "AutoAddRo": true, "ReadOnly": false, "TransSplit": false, "ConnectionPool": true, "ProxyAllocation": [ { "Region": "ap-guangzhou", "Zone": "ap-guangzhou-2", "ProxyInstance": [ { "InstanceId": "cdb-aykuksx3", "Weight": 100 } ] } ]}
{
"Response": {
"RequestId": "111-1314-333-2321212",
"AsyncRequestId": "test"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
FailedOperation.DescribeProxyGroupError | Failed to query database proxy. |
FailedOperation.VpcIpInUseError | The IP has been occupied. |
FailedOperation.VpcIpInvalidError | Invalid IP address |
InternalError.UnknownError | Unknown error |
InvalidParameterValue.DataConvertError | Data conversion failed. |
OperationDenied.ProxyAddressLimitError | The number of the proxy addresses exceeds the limit. |
OperationDenied.ProxyUpgradeTaskStatusError | This operation is not allowed during database proxy upgrade task. |
Was this page helpful?