查询账号登录策略
功能介绍
该接口可以用于查询账号登录策略。
URI
GET /v3.0/OS-SECURITYPOLICY/domains/{domain_id}/login-policy
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
domain_id |
是 |
String |
待查询的账号ID。 |
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
X-Auth-Token |
是 |
String |
拥有Security Administrator权限的token。 |
响应参数
参数 |
参数类型 |
描述 |
---|---|---|
object |
登录策略。 |
参数 |
参数类型 |
描述 |
---|---|---|
account_validity_period |
Integer |
登录停用信息(天),取值范围[0,240]。账号在该值设置的有效期内未使用,则被停用。设置为0时,关闭该策略。 |
custom_info_for_login |
String |
登录提示信息。 |
lockout_duration |
Integer |
账号锁定时长(分钟)。 |
login_failed_times |
Integer |
限定时间内登录失败次数。 |
period_with_login_failures |
Integer |
限定时间长度(分钟)。 |
session_timeout |
Integer |
登录会话失效时间(分钟)。 |
show_recent_login_info |
Boolean |
是否显示最近一次的登录信息。 |
请求示例
GET https://sample.domain.com/v3.0/OS-SECURITYPOLICY/domains/{domain_id}/login-policy
响应示例
状态码为 200 时:
请求成功。
{ "login_policy" : { "custom_info_for_login" : "", "period_with_login_failures" : 15, "lockout_duration" : 15, "account_validity_period" : 99, "login_failed_times" : 3, "session_timeout" : 16, "show_recent_login_info" : true } }
状态码为 403 时:
没有操作权限。
- 示例 1
{ "error_msg" : "You are not authorized to perform the requested action.", "error_code" : "IAM.0002" }
- 示例 2
{ "error_msg" : "Policy doesn't allow %(actions)s to be performed.", "error_code" : "IAM.0003" }
状态码为 404 时:
未找到相应的资源。
{ "error_msg" : "Could not find %(target)s: %(target_id)s.", "error_code" : "IAM.0004" }
状态码为 500 时:
内部服务错误。
{ "error_msg" : "An unexpected error prevented the server from fulfilling your request.", "error_code" : "IAM.0006" }
状态码
状态码 |
描述 |
---|---|
200 |
请求成功。 |
401 |
认证失败。 |
403 |
没有操作权限。 |
404 |
未找到相应的资源。 |
500 |
内部服务错误。 |