Package org.ovirt.engine.sdk4.services
Interface VmNicsService.AddRequest
-
- All Superinterfaces:
Request<VmNicsService.AddRequest,VmNicsService.AddResponse>
- Enclosing interface:
- VmNicsService
public static interface VmNicsService.AddRequest extends Request<VmNicsService.AddRequest,VmNicsService.AddResponse>
Adds a NIC to the virtual machine. The following example adds to the virtual machine `123` a network interface named `mynic` using `virtio` and the NIC profile `456`. [source] ---- POST /ovirt-engine/api/vms/123/nics ---- [source,xml] ----mynic virtio mynic virtio
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VmNicsService.AddRequest
nic(NicBuilder nic)
VmNicsService.AddRequest
nic(Nic nic)
-
-
-
Method Detail
-
nic
VmNicsService.AddRequest nic(Nic nic)
-
nic
VmNicsService.AddRequest nic(NicBuilder nic)
-
-