本文整理匯總了Java中com.vmware.vim25.ClusterConfigSpec類的典型用法代碼示例。如果您正苦於以下問題:Java ClusterConfigSpec類的具體用法?Java ClusterConfigSpec怎麽用?Java ClusterConfigSpec使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ClusterConfigSpec類屬於com.vmware.vim25包,在下文中一共展示了ClusterConfigSpec類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: main
import com.vmware.vim25.ClusterConfigSpec; //導入依賴的package包/類
public static void main(String[] args) throws Exception
{
if(args.length!=4)
{
System.out.println("Usage: DrsModeChanger url username password mode");
System.exit(-1);
}
URL url = new URL(args[0]);
String username = args[1];
String password = args[2];
String mode = args[3];
String drs_obj_id = "domain-c5";
ServiceInstance si = new ServiceInstance(url, username, password, true);
ManagedObjectReference mref_drs = new ManagedObjectReference();
mref_drs.set_value(drs_obj_id);
mref_drs.setType("ClusterComputeResource");
ClusterComputeResource ccr = (ClusterComputeResource )MorUtil.createExactManagedEntity(si.getServerConnection(), mref_drs);
ClusterConfigSpec ccs = new ClusterConfigSpec();
ClusterDrsConfigInfo cdci = new ClusterDrsConfigInfo();
if("manual".equals(mode))
cdci.setDefaultVmBehavior(DrsBehavior.manual);
else
cdci.setDefaultVmBehavior(DrsBehavior.fullyAutomated);
cdci.setVmotionRate(new Integer(5));
ccs.setDrsConfig(cdci);
ccr.reconfigureCluster_Task(ccs, true);
si.getServerConnection().logout();
System.out.println("End of changing DRS config to " + args[3]);
}
示例2: main
import com.vmware.vim25.ClusterConfigSpec; //導入依賴的package包/類
public static void main(String[] args) throws Exception
{
if(args.length!=3)
{
System.out.println("Usage: DrsAffRule url username password");
System.exit(-1);
}
URL url = null;
try
{
url = new URL(args[0]);
} catch ( MalformedURLException urlE)
{
System.out.println("The URL provided is NOT valid. Please check it.");
System.exit(-1);
}
String username = args[1];
String password = args[2];
String drs_obj_id = "domain-c5"; // The reference ID for cluster
String vm1_oid = "vm-26"; // The reference ID for VM 1
String vm2_oid = "vm-28"; // The reference ID for VM 2
// initialize the system, set up web services
ServiceInstance si = new ServiceInstance(url, username, password, true);
//create the MOR object for DRS cluster
ManagedObjectReference mref_drs = createMOR("ClusterComputeResource", drs_obj_id);
ClusterComputeResource ccr = (ClusterComputeResource )
MorUtil.createExactManagedEntity(si.getServerConnection(), mref_drs);
// create a new ClusterConfigSpec and populate it with related data for affinity rule
ClusterConfigSpec ccs = new ClusterConfigSpec();
ClusterAffinityRuleSpec cars = new ClusterAffinityRuleSpec();
cars.setName("App and DB Appliance Bundle");
cars.setEnabled(Boolean.TRUE);
ManagedObjectReference vm1 = createMOR("VirtualMachine", vm1_oid);
ManagedObjectReference vm2 = createMOR("VirtualMachine", vm2_oid);
cars.setVm(new ManagedObjectReference[] {vm1, vm2});
ClusterRuleSpec crs = new ClusterRuleSpec();
//*NOTE*: the following setOperation has to be called since operation must be set.
crs.setOperation(ArrayUpdateOperation.add);
crs.setInfo(cars);
ccs.setRulesSpec(new ClusterRuleSpec[] {crs});
// make a call to set the configuration.
ccr.reconfigureCluster_Task(ccs, true);
si.getServerConnection().logout();
System.out.println("Done with setting affinity rule for DRS cluster.");
}