Package com.vmware.bdd.software.mgmt.thrift

Examples of com.vmware.bdd.software.mgmt.thrift.ClusterData$ClusterDataStandardScheme


   @Test(groups = { "software-management" })
   public void getOperationStatusWithDetail() {
      OperationStatusWithDetail status =
            client.getOperationStatusWithDetail(clusterName);
      Assert.assertNotNull(status);
      ClusterData clusterData = status.getClusterData();
      String clusterName = clusterData.getClusterName();
      System.out.println("clusterName : " + clusterName);
      Map<String, GroupData> groups = clusterData.getGroups();
      for (String groupName : groups.keySet()) {
         System.out.println("group name key: " + groupName);
         GroupData groupData = groups.get(groupName);
         System.out.println("group data name: " + groupData.getGroupName());
         List<ServerData> servers = groupData.getInstances();
View Full Code Here

TOP

Related Classes of com.vmware.bdd.software.mgmt.thrift.ClusterData$ClusterDataStandardScheme

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.