nav-img
Advanced

Querying the Password Complexity Policy Detection Report

Function

This API is used to query the password complexity policy detection report.

URI

GET /v5/{project_id}/baseline/password-complexity

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

enterprise_project_id

No

String

Enterprise project ID. To query all enterprise projects, set this parameter to all_granted_eps.

host_name

No

String

Server name

host_ip

No

String

Server IP address

host_id

No

String

Server ID. If this parameter is not specified, all the servers of the user are queried.

limit

No

Integer

Number of records on each page

offset

No

Integer

Offset, which specifies the start position of the record to be returned.

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token.

It can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is the user token.

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

total_num

Long

Total number of password complexity policies

data_list

Array of PwdPolicyInfoResponseInfo objects

List of password complexity policy detection

Table 5 PwdPolicyInfoResponseInfo

Parameter

Type

Description

host_id

String

Server ID

host_name

String

Server name

host_ip

String

Server IP address (private IP address). This field is not deleted for compatibility with users.

private_ip

String

Server private IP address

public_ip

String

Server public IP address

min_length

Boolean

Indicates whether the minimum password length meets the requirements. If the value is true, the minimum password length meets the requirements. If the value is false, the minimum password length does not meet the requirements.

uppercase_letter

Boolean

Indicates whether the uppercase letters meet the requirements. If the value is true, the uppercase letters meet the requirements. If the value is false, the uppercase letters do not meet the requirements.

lowercase_letter

Boolean

Indicates whether the lowercase letters meet the requirements. If the value is true, the lowercase letters meet the requirements. If the value is false, the lowercase letters do not meet the requirements.

number

Boolean

Indicates whether the number meets the requirements. If the value is true, the number meets the requirements. If the value is false, the number does not meet the requirements.

special_character

Boolean

Indicates whether the special character meets the requirements. If the value is true, the special character meets the requirements. If the value is false, the special character does not meet the requirements.

suggestion

String

Modification suggestion

Example Requests

Query the password complexity of the server whose enterprise project ID is xxx. Data on the first page (the first 10 records) is returned by default.

GET https://{endpoint}/v5/{project_id}/baseline/password-complexity?enterprise_project_id=xxx

Example Responses

Status code: 200

Request succeeded.

{
"total_num" : 1,
"data_list" : [ {
"host_id" : "76fa440a-5a08-43fa-ac11-d12183ab3a14",
"host_ip" : "192.168.0.59",
"private_ip" : "192.168.0.8",
"public_ip" : "100.85.85.85",
"host_name" : "ecs-6b96",
"lowercase_letter" : false,
"min_length" : true,
"number" : false,
"special_character" : false,
"suggestion" : "The password should contain at least 3 of the following character types: uppercase letters, lowercase letters, digits, and special characters. ",
"uppercase_letter" : false
} ]
}

Status Codes

Status Code

Description

200

Request succeeded.

Error Codes