com.vmware.vim25.mo.ResourcePool 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
/*================================================================================
Copyright (c) 2008 VMware, Inc. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/
package com.vmware.vim25.mo;
import com.vmware.vim25.*;
import com.vmware.vim25.mo.util.MorUtil;
import java.rmi.RemoteException;
/**
* The managed object class corresponding to the one defined in VI SDK API reference.
*
* @author Steve JIN (http://www.doublecloud.org)
*/
public class ResourcePool extends ManagedEntity {
public ResourcePool(ServerConnection serverConnection, ManagedObjectReference mor) {
super(serverConnection, mor);
}
public ResourceConfigSpec[] getChildConfiguration() {
return (ResourceConfigSpec[]) this.getCurrentProperty("childConfiguration");
}
public ResourceConfigSpec getConfig() {
return (ResourceConfigSpec) this.getCurrentProperty("config");
}
public ComputeResource getOwner() throws InvalidProperty, RuntimeFault, RemoteException {
return (ComputeResource) this.getManagedObject("owner");
}
public ResourcePool[] getResourcePools() throws InvalidProperty, RuntimeFault, RemoteException {
return getResourcePools("resourcePool");
}
public ResourcePoolRuntimeInfo getRuntime() {
return (ResourcePoolRuntimeInfo) this.getCurrentProperty("runtime");
}
public ResourcePoolSummary getSummary() {
return (ResourcePoolSummary) this.getCurrentProperty("summary");
}
public VirtualMachine[] getVMs() throws InvalidProperty, RuntimeFault, RemoteException {
return getVms("vm");
}
/**
* @since SDK4.0
*/
public Task createChildVM_Task(VirtualMachineConfigSpec config, HostSystem host) throws VmConfigFault, FileFault, OutOfBounds, InvalidName, InvalidDatastore, InsufficientResourcesFault, RuntimeFault, RemoteException {
ManagedObjectReference taskMor = getVimService().createChildVM_Task(getMOR(), config,
host == null ? null : host.getMOR());
return new Task(getServerConnection(), taskMor);
}
/**
* @since SDK4.0
*/
public VirtualApp createVApp(String name, ResourceConfigSpec resSpec, VAppConfigSpec configSpec, Folder vmFolder) throws InvalidName, DuplicateName, InsufficientResourcesFault, InvalidState, VmConfigFault, RuntimeFault, RemoteException {
ManagedObjectReference vaMor = getVimService().createVApp(getMOR(), name, resSpec, configSpec, vmFolder == null ? null : vmFolder.getMOR());
return new VirtualApp(getServerConnection(), vaMor);
}
/**
* @since SDK4.0
*/
public HttpNfcLease importVApp(ImportSpec spec, Folder folder, HostSystem host) throws VmConfigFault, FileFault, OutOfBounds, DuplicateName, InvalidName, InvalidDatastore, InsufficientResourcesFault, RuntimeFault, RemoteException {
ManagedObjectReference mor = getVimService().importVApp(getMOR(), spec,
folder == null ? null : folder.getMOR(), host == null ? null : host.getMOR());
return new HttpNfcLease(getServerConnection(), mor);
}
/**
* @since SDK4.1
*/
public void refreshRuntime() throws RuntimeFault, RemoteException {
getVimService().refreshRuntime(getMOR());
}
/**
* @since SDK4.0
*/
public Task registerChildVM_Task(String path, String name, HostSystem host) throws OutOfBounds, AlreadyExists, InvalidDatastore, NotFound, InvalidName, VmConfigFault, InsufficientResourcesFault, FileFault, RuntimeFault, RemoteException {
ManagedObjectReference mor = getVimService().registerChildVM_Task(getMOR(), path, name, host == null ? null : host.getMOR());
return new Task(getServerConnection(), mor);
}
public ResourcePool createResourcePool(String name, ResourceConfigSpec spec) throws InvalidName, DuplicateName, InsufficientResourcesFault, RuntimeFault, RemoteException {
ManagedObjectReference rpMor = getVimService().createResourcePool(getMOR(), name, spec);
return new ResourcePool(getServerConnection(), rpMor);
}
public void destroyChildren() throws RuntimeFault, RemoteException {
getVimService().destroyChildren(getMOR());
}
public void moveIntoResourcePool(ManagedEntity[] entities) throws DuplicateName, InsufficientResourcesFault, RuntimeFault, RemoteException {
if (entities == null) {
throw new IllegalArgumentException("entities must not be null.");
}
getVimService().moveIntoResourcePool(getMOR(), MorUtil.createMORs(entities));
}
/**
* @since SDK4.1
*/
public ResourceConfigOption queryResourceConfigOption() throws RuntimeFault, RemoteException {
return getVimService().queryResourceConfigOption(getMOR());
}
public void updateChildResourceConfiguration(ResourceConfigSpec[] spec) throws InvalidState, InsufficientResourcesFault, RuntimeFault, RemoteException {
getVimService().updateChildResourceConfiguration(getMOR(), spec);
}
public void updateConfig(String name, ResourceConfigSpec spec) throws InvalidName, DuplicateName, ConcurrentAccess, InsufficientResourcesFault, RuntimeFault, RemoteException {
getVimService().updateConfig(getMOR(), name, spec);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy