/** * @since SDK5.0 */ public Task rectifyDvsOnHost_Task(HostSystem[] hosts) throws DvsFault, RuntimeFault, RemoteException { ManagedObjectReference[] hostMors = MorUtil.createMORs(hosts); ManagedObjectReference taskMor = getVimService().rectifyDvsOnHost_Task(getMOR(), hostMors); return new Task(getServerConnection(), taskMor); }
/** * Create an instance of {@link JAXBElement }{@code <}{@link DvsFault }{@code >}} * */ @XmlElementDecl(namespace = "urn:pbm", name = "DvsFaultFault") public JAXBElement<DvsFault> createDvsFaultFault(DvsFault value) { return new JAXBElement<DvsFault>(_DvsFaultFault_QNAME, DvsFault.class, null, value); }
public Task updateDVSLacpGroupConfig_Task(VMwareDvsLacpGroupSpec[] lacpGroupSpec) throws DvsFault, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().updateDVSLacpGroupConfig_Task(this.getMOR(), lacpGroupSpec); return new Task(this.getServerConnection(), mor); }
public Task reconfigureDVPortgroup_Task(DVPortgroupConfigSpec spec) throws DvsFault, ConcurrentAccess, DuplicateName, InvalidName, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().reconfigureDVPortgroup_Task(getMOR(), spec); return new Task(getServerConnection(), mor); }
/** @since SDK5.1 */ public Task dVPortgroupRollback_Task(EntityBackupConfig entityBackup) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().dVPortgroupRollback_Task(getMOR(), entityBackup); return new Task(getServerConnection(), mor); }
/** @since SDK5.1 */ public Task dVSManagerImportEntity_Task(EntityBackupConfig[] entityBackup, String importType) throws DvsFault, NotFound, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().dVSManagerImportEntity_Task(getMOR(), entityBackup, importType); return new Task(getServerConnection(), taskMor); }
public Task addDVPortgroup_Task(DVPortgroupConfigSpec[] spec) throws DvsFault, DuplicateName, InvalidName, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().addDVPortgroup_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }
/** @since SDK5.1 */ public Task createDVPortgroup_Task(DVPortgroupConfigSpec spec) throws DvsFault, DuplicateName, InvalidName, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().createDVPortgroup_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }
/** @since SDK5.1 */ public Task dVSRollback_Task(EntityBackupConfig spec) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().dVSRollback_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }
/** @since SDK5.1 */ public Task updateDVSHealthCheckConfig_Task(DVSHealthCheckConfig[] healthCheckConfig) throws DvsFault, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().updateDVSHealthCheckConfig_Task(getMOR(), healthCheckConfig); return new Task(getServerConnection(), taskMor); }
/** * @since SDK5.0 */ public void addNetworkResourcePool(DVSNetworkResourcePoolConfigSpec[] configSpec) throws DvsFault, InvalidName, RuntimeFault, RemoteException { getVimService().addNetworkResourcePool(getMOR(), configSpec); }
/** @since SDK4.1 */ public void enableNetworkResourceManagement(boolean enable) throws DvsFault, RuntimeFault, RemoteException { getVimService().enableNetworkResourceManagement(getMOR(), enable); }
public Task mergeDvs_Task(DistributedVirtualSwitch dvs) throws InvalidHostState, DvsFault, NotFound, ResourceInUse, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().mergeDvs_Task(getMOR(), dvs.getMOR()); return new Task(getServerConnection(), taskMor); }
public Task moveDVPort_Task(String[] portKey, String destinationPortgroupKey) throws DvsFault, NotFound, ConcurrentAccess, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().moveDVPort_Task(getMOR(), portKey, destinationPortgroupKey); return new Task(getServerConnection(), taskMor); }
public Task performDvsProductSpecOperation_Task(String operation, DistributedVirtualSwitchProductSpec productSpec) throws TaskInProgress, InvalidState, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().performDvsProductSpecOperation_Task(getMOR(), operation, productSpec); return new Task(getServerConnection(), taskMor); }
public Task reconfigureDvs_Task(DVSConfigSpec spec) throws DvsNotAuthorized, DvsFault, ConcurrentAccess, DuplicateName, InvalidState, InvalidName, NotFound, AlreadyExists, LimitExceeded, ResourceInUse, ResourceNotAvailable, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().reconfigureDvs_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }
public Task rectifyDvsHost_Task(HostSystem[] hosts) throws DvsFault, NotFound, RuntimeFault, RemoteException { ManagedObjectReference[] mors = MorUtil.createMORs(hosts); ManagedObjectReference mor = getVimService().rectifyDvsHost_Task(getMOR(), mors); return new Task(getServerConnection(), mor); }
public void refreshDVPortState(String[] portKeys) throws DvsFault, NotFound, RuntimeFault, RemoteException { getVimService().refreshDVPortState(getMOR(), portKeys); }
/** * @since SDK5.0 */ public void removeNetworkResourcePool(String[] key) throws DvsFault, NotFound, InvalidName, ResourceInUse, RuntimeFault, RemoteException { getVimService().removeNetworkResourcePool(getMOR(), key); }
/** @since SDK4.1 */ public void updateNetworkResourcePool(DVSNetworkResourcePoolConfigSpec[] configSpec) throws DvsFault, NotFound, InvalidName, RuntimeFault, RemoteException { getVimService().updateNetworkResourcePool(getMOR(), configSpec); }
public Task reconfigureDVPort_Task(DVPortConfigSpec[] port) throws DvsFault, NotFound, ResourceInUse, ConcurrentAccess, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().reconfigureDVPort_Task(getMOR(), port); return new Task(getServerConnection(), mor); }
/** * @since SDK5.0 */ Task rectifyDvsOnHostTask(List<HostSystem> hosts) throws DvsFault, RuntimeFault, RemoteException;
/** * @since SDK5.1 */ Task dVSManagerImportEntityTask(List<EntityBackupConfig> entityBackup, String importType) throws DvsFault, NotFound, RuntimeFault, RemoteException;