tencent cloud

文档反馈

DescribeDeployGroupList

最后更新时间:2022-01-19 11:36:31

1. API Description

Domain name for API request: cdb.tencentcloudapi.com.

This API is used to query the list of placement groups of a user. You can specify the placement group ID or name.

A maximum of 20 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
This document describes the parameters for Signature V1. It's recommended to use the V3 signature, which provides higher security. Note that for Signature V3, the common parameters need to be placed in the HTTP Header. See details.

Parameter Name Required Type Description
Action Yes String Common parameter. The value used for this API: DescribeDeployGroupList.
Version Yes String Common parameter. The value used for this API: 2017-03-20.
Region Yes String Common parameter. For more information, please see the list of regions supported by the product.
DeployGroupId No String ID of a placement group.
DeployGroupName No String Name of a placement group.
Limit No Integer Number of returned results. Default value: 20. Maximum value: 100.
Offset No Integer Offset. Default value: 0.

3. Output Parameters

Parameter Name Type Description
Total Integer Number of eligible entries.
Items Array of DeployGroupInfo List of returned results.
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.

4. Example

Example1 Querying the list of placement groups

Input Example

https://cdb.tencentcloudapi.com/?Action=DescribeDeployGroupList
&DeployGroupId=test
&DeployGroupName=test
&Limit=10
&Offset=0
&<Common request parameters>

Output Example

{
  "Response": {
    "Total": 100,
    "Items": [
      {
        "DeployGroupId": "test",
        "DeployGroupName": "test",
        "Description": "test",
        "Quota": 50,
        "CreateTime": "2019-09-10 13:14:15"
      }
    ],
    "RequestId": "b4a719b5-ffb34ab6-816c43c1-8c6a23eb"
  }
}

5. Developer Resources

SDK

TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

Command Line Interface

6. Error Code

The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

Error Code Description
InternalError.CdbError System error.
InvalidParameter Parameter error.
InvalidParameter.DeployGroupNotEmpty There are resources in the placement group.
InvalidParameter.OverDeployGroupQuota The quota of placement group resources has been exceeded.
InvalidParameter.ResourceExists The resource already exists.
InvalidParameter.ResourceNotFound The resource is not found.
OperationDenied.ActionNotSupport Unsupported operation.