Java 类com.vmware.vim25.ProfileCreateSpec 实例源码

项目:vijava    文件:ProfileManager.java   
public Profile createProfile(ProfileCreateSpec createSpec) throws DuplicateName, RuntimeFault, RemoteException
{
    ManagedObjectReference profileMor = getVimService().createProfile(getMOR(), createSpec);
    return new Profile(getServerConnection(), profileMor); 
}
项目:jcloud-vsphere    文件:ClusterProfileManagerApi.java   
List<Profile> createProfile(ProfileCreateSpec createSpec) throws DuplicateName, RuntimeFault, RemoteException;