Querying the WTP list
Function
This API is used to query the servers protected by web tamper protection (WTP).
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.
- If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
- If you are using identity policy-based authorization, no identity policy-based permission required for calling this API.
URI
GET /v5/{project_id}/webtamper/hosts
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Definition Project ID, which is used to specify the project that an asset belongs to. After the project ID is configured, you can query assets in the project using the project ID. For details about how to obtain it, see Obtaining a Project ID. Constraints N/A Range The value can contain 1 to 256 characters. Default Value N/A |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
enterprise_project_id |
No |
String |
Definition Enterprise project ID, which is used to filter assets in different enterprise projects. For details, see Obtaining an Enterprise Project ID. To query assets in all enterprise projects, set this parameter to all_granted_eps. Constraints You need to set this parameter only after the enterprise project function is enabled. Range The value can contain 1 to 256 characters. Default Value 0: default enterprise project. |
|
host_name |
No |
String |
Definition Server name. Constraints N/A Range The value contains 1 to 256 characters. Default Value N/A |
|
host_id |
No |
String |
Definition Unique ID of a server. Constraints N/A Range The value can contain 1 to 64 characters. Default Value N/A |
|
public_ip |
No |
String |
Definition Server EIP. Constraints N/A Range For IPv4, the value contains 7 to 15 characters. For IPv6, the value contains 15 to 39 characters. Default Value None |
|
private_ip |
No |
String |
Definition Server private IP address. Constraints N/A Range The value can contain 1 to 128 characters. Default Value N/A |
|
group_name |
No |
String |
Definition Server group name. Constraints N/A Range The value can contain 1 to 64 characters. Default Value None |
|
os_type |
No |
String |
Definition OS type. Constraints N/A Range Default Value None |
|
asset_value |
No |
String |
Definition Asset importance. Constraints N/A Range Default Value None |
|
offset |
No |
Integer |
Definition Offset, which specifies the start position of the record to be returned. Constraints N/A Range The value range is 0 to 2,000,000. Default Value The default value is 0. |
|
limit |
No |
Integer |
Definition Number of records displayed on each page. Constraints N/A Range Value range: 10-200 Default Value 10 |
|
protect_status |
No |
String |
Definition Web tamper protection status. Constraints N/A Range Default Value None |
|
wtp_status |
No |
String |
Definition Specific web tamper protection status. Constraints N/A Range Default Value None |
|
agent_status |
No |
String |
Definition Agent status. Constraints N/A Range Default Value None |
|
rasp_status |
No |
String |
Definition Dynamic WTP status. Constraints N/A Range Default Value None |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
X-Auth-Token |
Yes |
String |
Definition User token, which contains user identity and permissions. The token can be used for identity authentication when an API is called. For details about how to obtain the token, see Obtaining a User Token. Constraints N/A Range The value can contain 1 to 32,768 characters. Default Value N/A |
|
region |
No |
String |
Definition Region ID, which is used to query assets in the required region. For details about how to obtain a region ID, see Obtaining a Region ID. Constraints N/A Range The value can contain 1 to 128 characters. Default Value N/A |
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
data_list |
Array of WtpProtectHostResponseInfo objects |
Definition Web tamper protection list information. Range Minimum value: 0; maximum value: 200 |
|
total_num |
Integer |
Definition Total number. Range The value range is 0 to 2,147,483,647. |
|
Parameter |
Type |
Description |
|---|---|---|
|
host_name |
String |
Definition Server name. Range The value can contain 1 to 256 characters. |
|
host_id |
String |
Definition Unique ID of a server (host). Range The value can contain 1 to 64 characters. |
|
public_ip |
String |
Definition Elastic IP Address (EIP) Range The value is a string of 1 to 256 characters and can be an IPv4 or IPv6 address. (An IPv4 address can contain 7 to 15 characters. An IPv6 address can contain 15 to 39 characters.) |
|
private_ip |
String |
Definition Server private IP address. Range The value can contain 1 to 128 characters. |
|
group_id |
String |
Definition Policy group ID. Range Length: 36 to 64 characters |
|
group_name |
String |
Definition Server group name. Range The value can contain 0 to 256 characters. |
|
asset_value |
String |
Definition Asset importance. Range |
|
os_bit |
String |
Definition OS bit version. Range The value can contain 1 to 64 characters. |
|
os_type |
String |
Definition OS Type Range |
|
protect_status |
String |
Definition WTP status. Range |
|
charging_mode |
String |
Definition Billing mode. Range |
|
resource_id |
String |
Definition Resource ID. Range Length: 0 to 128 characters |
|
rasp_protect_status |
String |
Definition Dynamic WTP status. Range |
|
anti_tampering_times |
Long |
Definition Number of attacks blocked by static WTP in the last seven days. Range Minimum value: 0; maximum value: 2000000000 |
|
detect_tampering_times |
Long |
Definition Number of attacks blocked by dynamic WTP in the last seven days. Range Minimum value: 0; maximum value: 2000000000 |
|
os_name |
String |
Definition OS name. Range Length: 0 to 128 characters |
|
os_version |
String |
Definition OS version. Range Length: 0 to 256 characters |
|
host_status |
String |
Definition Server status. Constraints N/A Range |
|
agent_status |
String |
Definition Agent status. Range |
|
protect_dir_num |
Integer |
Definition Number of protected directories. Range Minimum value: 0; maximum value: 50 |
|
abnormal_dir_list |
Array of strings |
Definition Protected directories whose protection status is "Protection failed". This parameter is returned only if there are protected directories with such status. Range 0 to 50 items |
|
abnormal_reason |
Integer |
Definition Protection failure cause. This parameter is returned only when there are protected directories whose protection status is "Protection failed". Range |
|
backup_host_id |
String |
Definition ID of the remote backup server. This parameter is returned only if the remote backup function is enabled on a Linux server. Range Length: 0 to 64 characters |
|
interrupt_reason |
String |
Definition Protection interruption cause. This parameter is returned only if the protection status is "Protection interrupted". Range Length: 0 to 256 characters |
Example Requests
Query the servers protected by WTP.
GET https://{endpoint}/v5/{project_id}/webtamper/hosts
{
"protect_status" : "opened",
"limit" : 10,
"offset" : 0
}
Example Responses
Status code: 200
Request succeeded.
{
"total_num" : 1,
"data_list" : [ {
"host_name" : "test",
"host_id" : "000411f9-42a7-4acd-80e6-f7b9d3db895f",
"public_ip" : "192.168.0.71",
"private_ip" : "192.168.0.70,fe80::f816:3eff:fed4:c4d7",
"asset_value" : "important",
"group_name" : "testGroup",
"os_bit" : "64",
"os_type" : "Linux",
"protect_status" : "opened",
"rasp_protect_status" : "opened",
"anti_tampering_times" : 0,
"detect_tampering_times" : 0,
"os_name" : "EulerOS",
"os_version" : 2.3,
"host_status" : "ACTIVE",
"agent_status" : "online",
"protect_dir_num" : 10
} ]
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
Request succeeded. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot