GET – 虚拟介质属性
使用 GET 方法检索 Redfish 服务的虚拟介质资源中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/VirtualMedia/{Id}
请求正文
无
响应正文
字段 | 类型 | 描述 | |||
---|---|---|---|---|---|
Id | 字符串 | 此字段显示具有索引值的存储类型。 Id 值将是(Remote1、...、Remote4)、(RDOC1、RDOC2)或(EXT1、...、EXT4)中的任意值。 | |||
Description | 字符串 | “This resource is used to represent a virtual media service for a Redfish implementation” | |||
Name | 字符串 | “VirtualMedia” | |||
ImageName | 字符串 | 映像名称。 | |||
Image | 字符串 | 提供所选映像的位置的 URI。 | |||
MediaTypes | 数组 | 支持作为虚拟介质的介质类型。 | |||
MediaTypes[] | 字符串 | 虚拟磁盘设备的类型值。 | |||
ConnectedVia | 字符串 | 当前虚拟介质连接方法。 | |||
Inserted | 布尔 | 指示虚拟介质是否已插入虚拟设备。 | |||
WriteProtected | 布尔 | 指示介质是否有写保护 | |||
UserName | 字符串 | 用户名 | |||
Password | 字符串 | null | |||
TransferMethod | 字符串 | “Upload”或“Stream”。 | |||
TransferProtocolType | 字符串 | “HTTPS”、“NFS”或“CIFS”。对于 RDOC 类型,不显示此属性。 | |||
Certificates | 链接 | 证书资源集合的引用链接。 | |||
VerifyCertificate | 布尔 | 指示是否执行证书验证。默认值为 false。 |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"ConnectedVia": "NotConnected",
"Id": "RDOC1",
"@odata.etag": "\"3da38b2209e828a948b\"",
"MediaTypes": [
"CD",
"DVD",
"Floppy",
"USBStick"
],
"Image": null,
"@odata.id": "/redfish/v1/Systems/1/VirtualMedia/RDOC1",
"Certificates": {
"@odata.id": "/redfish/v1/Systems/1/VirtualMedia/RDOC1/Certificates"
},
"VerifyCertificate": false,
"Name": "VirtualMedia",
"Password": null,
"@odata.type": "#VirtualMedia.v1_5_1.VirtualMedia",
"WriteProtected": true,
"Description": "This resource shall be used to represent a virtual media service for a Redfish implementation.",
"Inserted": false,
"ImageName": null,
"UserName": null,
"TransferMethod": null,
"TransferProtocolType": null
}
提供反馈