Package org.ovirt.engine.sdk4.services
Interface HostService.CopyHostNetworksRequest
-
- All Superinterfaces:
Request<HostService.CopyHostNetworksRequest,HostService.CopyHostNetworksResponse>
- Enclosing interface:
- HostService
public static interface HostService.CopyHostNetworksRequest extends Request<HostService.CopyHostNetworksRequest,HostService.CopyHostNetworksResponse>
Copy the network configuration of the specified host to current host. IMPORTANT: Any network attachments that are not present on the source host will be erased from the target host by the copy operation. To copy networks from another host, send a request like this: [source] ---- POST /ovirt-engine/api/hosts/123/copyhostnetworks ---- With a request body like this: [source,xml] ----
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostService.CopyHostNetworksRequest
async(Boolean async)
Indicates if the action should be performed asynchronously.HostService.CopyHostNetworksRequest
sourceHost(HostBuilder sourceHost)
The host to copy networks from.HostService.CopyHostNetworksRequest
sourceHost(Host sourceHost)
-
-
-
Method Detail
-
async
HostService.CopyHostNetworksRequest async(Boolean async)
Indicates if the action should be performed asynchronously.
-
sourceHost
HostService.CopyHostNetworksRequest sourceHost(Host sourceHost)
-
sourceHost
HostService.CopyHostNetworksRequest sourceHost(HostBuilder sourceHost)
The host to copy networks from.
-
-