/** * Create an instance of {@link JAXBElement }{@code <}{@link LogBundlingFailed }{@code >}} * */ @XmlElementDecl(namespace = "urn:pbm", name = "LogBundlingFailedFault") public JAXBElement<LogBundlingFailed> createLogBundlingFailedFault(LogBundlingFailed value) { return new JAXBElement<LogBundlingFailed>(_LogBundlingFailedFault_QNAME, LogBundlingFailed.class, null, value); }
public Task generateLogBundles_Task(boolean includeDefault, HostSystem[] hosts) throws LogBundlingFailed, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().generateLogBundles_Task(getMOR(), includeDefault, hosts==null? null : MorUtil.createMORs(hosts)); return new Task(getServerConnection(), mor); }
Task generateLogBundlesTask(boolean includeDefault, List<HostSystem> hosts) throws LogBundlingFailed, RuntimeFault, RemoteException;