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.
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: DescribeSecurityGroups. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-12. |
Region | Yes | String | Common Params. 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. Note: this field may return null , indicating that no valid values can be obtained. |
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. |
This example shows you how to query security groups using tag:tag-key
.
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",
"IsDefault": true,
"CreatedTime": "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. |
InvalidParameter.FilterNotDict | The specified filter condition should be a key-value pair. |
InvalidParameter.FilterValuesNotList | The specified filter value should be a list. |
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. |
UnsupportedOperation | Unsupported operation. |
本页内容是否解决了您的问题?