Package org.ovirt.engine.sdk4.services
Interface AttachedStorageDomainDiskService.CopyRequest
-
- All Superinterfaces:
Request<AttachedStorageDomainDiskService.CopyRequest,AttachedStorageDomainDiskService.CopyResponse>
- Enclosing interface:
- AttachedStorageDomainDiskService
public static interface AttachedStorageDomainDiskService.CopyRequest extends Request<AttachedStorageDomainDiskService.CopyRequest,AttachedStorageDomainDiskService.CopyResponse>
Copies a disk to the specified storage domain. IMPORTANT: Since version 4.2 of the engine this operation is deprecated, and preserved only for backwards compatibility. It will be removed in the future. To copy a disk use the <> operation of the service that manages that disk.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachedStorageDomainDiskService.CopyRequest
disk(DiskBuilder disk)
Description of the resulting disk.AttachedStorageDomainDiskService.CopyRequest
disk(Disk disk)
AttachedStorageDomainDiskService.CopyRequest
storageDomain(StorageDomainBuilder storageDomain)
The storage domain where the new disk will be created.AttachedStorageDomainDiskService.CopyRequest
storageDomain(StorageDomain storageDomain)
-
-
-
Method Detail
-
disk
AttachedStorageDomainDiskService.CopyRequest disk(Disk disk)
-
disk
AttachedStorageDomainDiskService.CopyRequest disk(DiskBuilder disk)
Description of the resulting disk.
-
storageDomain
AttachedStorageDomainDiskService.CopyRequest storageDomain(StorageDomain storageDomain)
-
storageDomain
AttachedStorageDomainDiskService.CopyRequest storageDomain(StorageDomainBuilder storageDomain)
The storage domain where the new disk will be created.
-
-