Domain name for API request: sqlserver.intl.tencentcloudapi.com.
This API is used to create basic edition instances (cloud disk).
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: CreateBasicDBInstances. |
| Version | Yes | String | Common Params. The value used for this API: 2018-03-28. |
| Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. This API only supports: ap-bangkok, ap-beijing, ap-chengdu, ap-chongqing, ap-guangzhou, ap-hongkong, ap-jakarta, ap-nanjing, ap-seoul, ap-shanghai, ap-shanghai-fsi, ap-shenzhen-fsi, ap-singapore, ap-tokyo, eu-frankfurt, na-ashburn, na-siliconvalley, sa-saopaulo. |
| Zone | Yes | String | Instance AZ, such as ap-guangzhou-1 (Guangzhou Zone 1). Purchasable AZs for an instance can be obtained through the DescribeZones API. |
| Cpu | Yes | Integer | Number of CPU cores. |
| Memory | Yes | Integer | Instance memory size in GB. |
| Storage | Yes | Integer | Instance storage capacity in GB. |
| SubnetId | Yes | String | VPC subnet ID in the format of subnet-bdoe83fa. |
| VpcId | Yes | String | VPC ID in the format of vpc-dsp338hz. |
| MachineType | Yes | String | Host type of purchased instances. CLOUD_PREMIUM: Premium Disk for virtual machines; CLOUD_SSD: Cloud SSD for virtual machines; CLOUD_HSSD: Enhanced SSD for virtual machines; CLOUD_BSSD: Balanced SSD for virtual machines. |
| InstanceChargeType | No | String | Billing mode. Valid value: POSTPAID (pay-as-you-go). |
| ProjectId | No | Integer | Project ID. |
| GoodsNum | No | Integer | Number of instances purchased this time. Default value: 1. Maximum value: 10. |
| DBVersion | No | String | SQL Server version. Valid values: 2008R2 (SQL Server 2008 R2 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 201202 (SQL Server 2012 Standard), 2014SP2 (SQL Server 2014 Enterprise), 201402 (SQL Server 2014 Standard), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise), 201702 (SQL Server 2017 Standard), 2019 (SQL Server 2019 Enterprise), 201902 (SQL Server 2019 Standard). Default value: 2008R2. The available version varies by region, and you can pull the version information by calling the DescribeProductConfig API. |
| Period | No | Integer | Length of purchase of instance. The default value is 1, indicating one month. The value cannot exceed 48. |
| SecurityGroupList.N | No | Array of String | Security group list, which contains security group IDs in the format of sg-xxx. |
| AutoRenewFlag | No | Integer | Auto-renewal flag. 0: normal renewal, 1: auto-renewal. Default value: 1. |
| AutoVoucher | No | Integer | Whether to automatically use voucher. 0: no, 1: yes. Default value: no. |
| VoucherIds.N | No | Array of String | Array of voucher IDs (currently, only one voucher can be used per order). |
| Weekly.N | No | Array of Integer | Configuration of the maintenance window, which specifies the day of the week when maintenance can be performed. Valid values: 1 (Monday), 2 (Tuesday), 3 (Wednesday), 4 (Thursday), 5 (Friday), 6 (Saturday), 7 (Sunday). |
| StartTime | No | String | Configuration of the maintenance window, which specifies the start time of daily maintenance. |
| Span | No | Integer | Configuration of the maintenance window, which specifies the maintenance duration in hours. |
| ResourceTags.N | No | Array of ResourceTag | Tags associated with the instances to be created. |
| Collation | No | String | Collation of system character sets. Default value: Chinese_PRC_CI_AS. |
| TimeZone | No | String | System time zone. Default value: China Standard Time. |
| DiskEncryptFlag | No | Integer | Disk encryption identifier, 0-unencrypted, 1-encrypted. |
| Parameter Name | Type | Description |
|---|---|---|
| DealName | String | Order name. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
Create a Basic Edition instance
POST / HTTP/1.1
Host: sqlserver.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: CreateBasicDBInstances
<Common request parameters>
{
"VpcId": "vpc-huew581t",
"AutoRenewFlag": "0",
"Zone": "ap-guangzhou-3",
"GoodsNum": "1",
"TimeZone": "China Standard Time",
"DBVersion": "2008R2",
"Storage": "20",
"Period": "1",
"MachineType": "CLOUD_PREMIUM",
"Collation": "Chinese_PRC_CI_AS",
"InstanceChargeType": "PREPAID",
"StartTime": "00:00",
"Memory": "2",
"SubnetId": "subnet-pudyecyk",
"Span": "6",
"Cpu": "1",
"Weekly": [
"1"
]
}{
"Response": {
"DealName": "20200713383000001111250",
"RequestId": "d84adfca-3ff0-46d2-b400-b5527446df72"
}
}
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.CreateOrderFailed | Failed to create order. |
| FailedOperation.DBError | Database error. |
| FailedOperation.GetVpcFailed | Failed to get VPC information. |
| InternalError.DBError | Database error |
| InternalError.VPCError | VPC error |
| InvalidParameter.InputIllegal | Input error. |
| InvalidParameter.ParamsAssertFailed | An error occurred while converting parameter assertion. |
| InvalidParameter.PayOrderFailed | Failed to make order payment. |
| InvalidParameterValue.IllegalSpec | Incorrect instance specification information. |
| InvalidParameterValue.ParameterTypeError | Incorrect parameter type. |
| InvalidParameterValue.SecurityGroupIdIsIllegal | Invalid security group ID. |
| ResourceNotFound.VpcNotExist | The VPC does not exist. |
| ResourceUnavailable.VpcNotExist | VPC not found. |
| UnauthorizedOperation.PermissionDenied | CAM authentication error. |
Feedback