5.96. HostStorage
호스트 스토리지를 관리하는 서비스입니다.
이름 | 요약 |
---|---|
| 스토리지 목록을 가져옵니다. |
5.96.1. GET나열
스토리지 목록을 가져옵니다.
GET /ovirt-engine/api/hosts/123/storage
얻을 수 있는 XML 응답은 다음과 같습니다.
<host_storages> <host_storage id="123"> ... </host_storage> ... </host_storages>
이름 | 유형 | direction | 요약 |
---|---|---|---|
| in | 스토리지의 LUN 상태를 확인해야 하는지 여부를 나타냅니다. | |
| out | 스토리지 목록을 검색합니다. |
5.96.1.1. report_status
스토리지의 LUN 상태를 확인해야 하는지 여부를 나타냅니다. LUN 상태를 확인하는 것은 과도한 가중치 작업이며 이 데이터가 사용자에게 항상 필요한 것은 아닙니다. 이 매개 변수는 LUN의 상태 확인을 수행하지 않는 옵션을 제공합니다.
이전 버전과의 호환성을 위해 기본값은 true
입니다.
LUN 상태가 있는 예는 다음과 같습니다.
<host_storage id="123"> <logical_units> <logical_unit id="123"> <lun_mapping>0</lun_mapping> <paths>1</paths> <product_id>lun0</product_id> <serial>123</serial> <size>10737418240</size> <status>used</status> <vendor_id>LIO-ORG</vendor_id> <volume_group_id>123</volume_group_id> </logical_unit> </logical_units> <type>iscsi</type> <host id="123"/> </host_storage>
LUN 상태가 없는 예는 다음과 같습니다.
<host_storage id="123"> <logical_units> <logical_unit id="123"> <lun_mapping>0</lun_mapping> <paths>1</paths> <product_id>lun0</product_id> <serial>123</serial> <size>10737418240</size> <vendor_id>LIO-ORG</vendor_id> <volume_group_id>123</volume_group_id> </logical_unit> </logical_units> <type>iscsi</type> <host id="123"/> </host_storage>