Package org.ovirt.engine.sdk4.services
Interface HostService.IscsiDiscoverRequest
-
- All Superinterfaces:
Request<HostService.IscsiDiscoverRequest,HostService.IscsiDiscoverResponse>
- Enclosing interface:
- HostService
public static interface HostService.IscsiDiscoverRequest extends Request<HostService.IscsiDiscoverRequest,HostService.IscsiDiscoverResponse>
Discovers iSCSI targets on the host, using the initiator details. For example, to discover iSCSI targets available in `myiscsi.example.com`, from host `123`, send a request like this: [source] ---- POST /ovirt-engine/api/hosts/123/iscsidiscover ---- With a request body like this: [source,xml] ----myiscsi.example.com 10.35.1.72 3260 10.35.1.72:3260,1 iqn.2015-08.com.tgt:444
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostService.IscsiDiscoverRequest
async(Boolean async)
Indicates if the discovery should be performed asynchronously.HostService.IscsiDiscoverRequest
iscsi(IscsiDetailsBuilder iscsi)
The target iSCSI device.HostService.IscsiDiscoverRequest
iscsi(IscsiDetails iscsi)
-
-
-
Method Detail
-
async
HostService.IscsiDiscoverRequest async(Boolean async)
Indicates if the discovery should be performed asynchronously.
-
iscsi
HostService.IscsiDiscoverRequest iscsi(IscsiDetails iscsi)
-
iscsi
HostService.IscsiDiscoverRequest iscsi(IscsiDetailsBuilder iscsi)
The target iSCSI device.
-
-