Domain name for API request: vpc.tencentcloudapi.com.
This API (DescribeSecurityGroups) is used to query security groups.
A maximum of 100 requests can be initiated per second for this API.
Note: This API supports Finance regions. If the common parameter Region is a Finance region, a domain name with the Finance region needs to be specified, for example: vpc.ap-shanghai-fsi.tencentcloudapi.com
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 parameter. The value used for this API: DescribeSecurityGroups. |
Version | Yes | String | Common parameter. The value used for this API: 2017-03-12. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
SecurityGroupIds.N | No | Array of String | The security group instance ID, such as sg-33ocnj9n . It can be obtained through DescribeSecurityGroups . Each request can have a maximum of 100 instances. SecurityGroupIds and Filters cannot be specified at the same time. |
Filters.N | No | Array of Filter | Filter conditions. SecurityGroupIds and Filters cannot be specified at the same time.tag:tag-key - String - Required: no - (Filter condition) Filters by tag key pair. For this parameter, tag-key will be replaced with a specific tag key. For more information, see Example 3. |
Offset | No | String | Offset. Default value: 0. |
Limit | No | String | Number of returned results. Default value: 20. Maximum value: 100. |
Parameter Name | Type | Description |
---|---|---|
SecurityGroupSet | Array of SecurityGroup | Security group object. |
TotalCount | Integer | The number of instances meeting the filter condition. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://vpc.tencentcloudapi.com/?Action=DescribeSecurityGroups
&Limit=1
&Filters.0.Name=project-id
&Filters.0.Values.0=0
&Filters.1.Name=security-group-name
&Filters.1.Values.0=TestGroup
&<Common request parameters>
{
"Response": {
"SecurityGroupSet": [
{
"SecurityGroupId": "sg-05bb4upy",
"SecurityGroupName": "TestGroup",
"SecurityGroupDesc": "test-group-desc",
"ProjectId": "0",
"CreateTime": "2017-04-18 21:02:30"
}
],
"TotalCount": 1,
"RequestId": "74883e1b-5901-46de-ae1e-d6e2cf591c5b"
}
}
This example shows you how to query security groups using tag:tag-key
.
https://vpc.tencentcloudapi.com/?Action=DescribeSecurityGroups
&Filters.0.Name=tag:Version
&Filters.0.Values.0=TEST
&<Common request parameters>
{
"Response": {
"SecurityGroupSet": [
{
"SecurityGroupId": "sg-2got2lcz",
"SecurityGroupName": "test",
"SecurityGroupDesc": "Opening all ports to the public and private networks may involve security risks",
"ProjectId": "0",
"IsDefault": false,
"CreatedTime": "2019-07-23 12:32:24",
"TagSet": [
{
"Key": "Tag key",
"Value": "Tag value"
},
{
"Key": "Version",
"Value": "TEST"
},
{
"Key": "Version",
"Value": "DEV"
}
]
}
],
"TotalCount": 1,
"RequestId": "85cda7d1-6608-4eca-8d02-19937c12dd84"
}
}
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 |
---|---|
InvalidParameter.Coexist | The parameters cannot be specified at the same time. |
InvalidParameter.FilterInvalidKey | The specified filter condition does not exist. |
InvalidParameterValue.LimitExceeded | The parameter value exceeds the limit. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
InvalidParameterValue.Range | The parameter value is not in the specified range. |
ResourceNotFound | The resource does not exist. |
Was this page helpful?