/** * Create an instance of {@link JAXBElement }{@code <}{@link HostConfigFailed }{@code >}} * */ @XmlElementDecl(namespace = "urn:pbm", name = "HostConfigFailedFault") public JAXBElement<HostConfigFailed> createHostConfigFailedFault(HostConfigFailed value) { return new JAXBElement<HostConfigFailed>(_HostConfigFailedFault_QNAME, HostConfigFailed.class, null, value); }
public Task applyHostConfig_Task(HostSystem host, HostConfigSpec configSpec) throws HostConfigFailed, InvalidState, RuntimeFault, RemoteException { return applyHostConfig_Task(host, configSpec, null); }
public Task applyHostConfig_Task(HostSystem host, HostConfigSpec configSpec, ProfileDeferredPolicyOptionParameter[] userInputs) throws HostConfigFailed, InvalidState, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().applyHostConfig_Task(getMOR(), host.getMOR(), configSpec, userInputs); return new Task(getServerConnection(), taskMor); }
/** * SDK4.1 signature for back compatibility */ Task applyHostConfigTask(HostSystem host, HostConfigSpec configSpec) throws HostConfigFailed, InvalidState, RuntimeFault, RemoteException;
/** * SDK5.0 signature */ Task applyHostConfigTask(HostSystem host, HostConfigSpec configSpec, List<ProfileDeferredPolicyOptionParameter> userInputs) throws HostConfigFailed, InvalidState, RuntimeFault, RemoteException;