Package org.ovirt.engine.sdk4.services
Interface DiskService.ConvertRequest
-
- All Superinterfaces:
Request<DiskService.ConvertRequest,DiskService.ConvertResponse>
- Enclosing interface:
- DiskService
public static interface DiskService.ConvertRequest extends Request<DiskService.ConvertRequest,DiskService.ConvertResponse>
Converts disk format and/or preallocation mode. For example, to convert the disk format from preallocated-cow to a sparse-raw image, send a request like the following: [source] ---- POST /ovirt-engine/api/disks/123/convert ---- With the following request body: [source,xml] ----true raw
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskService.ConvertRequest
disk(DiskBuilder disk)
The description of the disk.DiskService.ConvertRequest
disk(Disk disk)
DiskService.ConvertRequest
follow(String follow)
Indicates which inner links should be _followed_.
-
-
-
Method Detail
-
disk
DiskService.ConvertRequest disk(Disk disk)
-
disk
DiskService.ConvertRequest disk(DiskBuilder disk)
The description of the disk.
-
follow
DiskService.ConvertRequest follow(String follow)
Indicates which inner links should be _followed_. The objects referenced by these links will be fetched as part of the current request. See <> for details.
-
-