跳到主要内容

GET – HostBootStrap 帐户属性

使用 GET 方法检索 Redfish 服务的 HostBootStrap Account 资源中的属性。HostBootStrap 帐户遵循 DMTF 定义的“Redfish 主机接口规范”进行实现,请参阅 DSP0270_1.3.0 以了解如何进行创建以及更多详细信息。

请求 URL

GET https://<BMC_IPADDR>/redfish/v1/AccountService/Accounts/HostBootStrap

请求正文

响应正文

字段类型描述

Name

字符串“Host Boot Strap Account”

Id

字符串“HostBootStrap”

Password

字符串帐户的密码。在 GET 中显示为 null。

RoleId

字符串此属性的值是为此帐户配置的 Role 资源的 ID。

Enabled

布尔指示是否启用此帐户。

PasswordChangeRequired

布尔

如果必须在授权进一步访问之前更改此帐户的密码,则此属性的值为 true。

始终设置为 false。

PasswordExpiration

字符串

此属性指示此帐户密码过期的日期和时间。如果值为 null,则帐户密码永不过期。

始终设置为 null。

UserName

字符串此属性的值是此帐户的用户名。

Locked

布尔此属性指示帐户服务已自动锁定此帐户,因为已超过锁定阈值。设置为 true 时,将锁定此帐户。锁定期过后,帐户服务将解锁帐户。

Description

字符串“This resource is used to represent an account for the manager for a Redfish implementation.”

Links

对象展开
 

Role

链接此帐户映射到的 Role 实例的链接。

AccountTypes

数组

此属性包含允许帐户访问的各种管理器服务的数组。

项:字符串

项数:5

 

AccountTypes[N]

字符串“Redfish”、“SNMP”、“ManagerConsole”、“IPMI”、“WebUI”

AccountTypes@Redfish. AllowableValues

数组

项:字符串

项数:5

 

AccountTypes@Redfish. AllowableValues[N]

字符串“Redfish”、“SNMP”、“ManagerConsole”、“IPMI”、“WebUI”

HostBootstrapAccount

布尔

指示此帐户是否为主机接口的引导程序帐户。

始终设置为 true。

状态代码

HTTP 状态代码错误消息 ID
500InternalError

示例

返回以下示例 JSON 响应:

{
"RoleId": "Administrator",
"PasswordChangeRequired": false,
"AccountTypes@Redfish.AllowableValues": [
"WebUI",
"Redfish",
"ManagerConsole",
"IPMI",
"SNMP"
],
"Description": "This resource is used to represent an account for the manager for a Redfish implementation.",
"PasswordExpiration": null,
"AccountTypes": [
"WebUI",
"Redfish",
"ManagerConsole",
"IPMI",
"SNMP"
],
"@odata.context": "/redfish/v1/$metadata#ManagerAccount.ManagerAccount",
"HostBootstrapAccount": true,
"Locked": false,
"Id": "HostBootStrap",
"Name": "Host Boot Strap Account",
"@odata.type": "#ManagerAccount.v1_8_1.ManagerAccount",
"@odata.id": "/redfish/v1/AccountService/Accounts/HostBootStrap",
"UserName": "wjNPLZankQvBQtY",
"Password": null,
"Links": {
"Role": {
"@odata.id": "/redfish/v1/AccountService/Roles/Administrator"
}
},
"@odata.etag": "\"5be9012edf46272eecc\"",
"Enabled": true
}