com.vmware.vim25.mo.HostKernelModuleSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yavijava Show documentation
Show all versions of yavijava Show documentation
Java library for VMware vSphere
package com.vmware.vim25.mo;
import com.vmware.vim25.KernelModuleInfo;
import com.vmware.vim25.ManagedObjectReference;
import com.vmware.vim25.NotFound;
import com.vmware.vim25.RuntimeFault;
import java.rmi.RemoteException;
public class HostKernelModuleSystem extends ManagedObject {
public HostKernelModuleSystem(ServerConnection sc, ManagedObjectReference mor) {
super(sc, mor);
}
public String queryConfiguredModuleOptionString(String name) throws NotFound, RuntimeFault, RemoteException {
return getVimService().queryConfiguredModuleOptionString(getMOR(), name);
}
public KernelModuleInfo[] queryModules() throws RemoteException, RuntimeFault {
return getVimService().queryModules(getMOR());
}
public void updateModuleOptionString(String name, String options) throws NotFound, RuntimeFault, RemoteException {
getVimService().updateModuleOptionString(getMOR(), name, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy