/** * Create an instance of {@link JAXBElement }{@code <}{@link AlreadyExists }{@code >}} * */ @XmlElementDecl(namespace = "urn:pbm", name = "AlreadyExistsFault") public JAXBElement<AlreadyExists> createAlreadyExistsFault(AlreadyExists value) { return new JAXBElement<AlreadyExists>(_AlreadyExistsFault_QNAME, AlreadyExists.class, null, value); }
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 void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException { getVimService().assignUserToGroup(getMOR(), user, group); }
public void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException { getVimService().createGroup(getMOR(), group); }
public void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException { getVimService().createUser(getMOR(), user); }
public void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException { getVimService().updateUser(getMOR(), user); }
void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException;
void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException;
void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
void createCustomizationSpec(CustomizationSpecItem item) throws CustomizationFault, AlreadyExists, RuntimeFault, RemoteException;
void duplicateCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
void renameCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
int addAuthorizationRole(String name, List<String> privIds) throws InvalidName, AlreadyExists, RuntimeFault, RemoteException;
void updateAuthorizationRole(int roleId, String newName, List<String> privIds) throws InvalidName, AlreadyExists, NotFound, RuntimeFault, RemoteException;