Package org.jclouds.abiquo.domain.infrastructure.options

Examples of org.jclouds.abiquo.domain.infrastructure.options.DatacenterOptions$Builder


    * @return Hypervisor type of the remote machine.
    * @throws Exception
    *            If the hypervisor type information cannot be retrieved.
    */
   public HypervisorType getHypervisorType(final String ip) {
      DatacenterOptions options = DatacenterOptions.builder().ip(ip).build();

      String type = context.getApi().getInfrastructureApi().getHypervisorTypeFromMachine(target, options);

      return HypervisorType.valueOf(type);
   }
View Full Code Here


    * @return Hypervisor type of the remote machine.
    * @throws Exception
    *            If the hypervisor type information cannot be retrieved.
    */
   public HypervisorType getHypervisorType(final String ip) {
      DatacenterOptions options = DatacenterOptions.builder().ip(ip).build();

      String type = context.getApi().getInfrastructureApi().getHypervisorTypeFromMachine(target, options);

      return HypervisorType.valueOf(type);
   }
View Full Code Here

    * @return Hypervisor type of the remote machine.
    * @throws Exception
    *            If the hypervisor type information cannot be retrieved.
    */
   public HypervisorType getHypervisorType(final String ip) {
      DatacenterOptions options = DatacenterOptions.builder().ip(ip).build();

      String type = context.getApi().getInfrastructureApi().getHypervisorTypeFromMachine(target, options);

      return HypervisorType.valueOf(type);
   }
View Full Code Here

TOP

Related Classes of org.jclouds.abiquo.domain.infrastructure.options.DatacenterOptions$Builder

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.