Package org.jclouds.abiquo.domain.infrastructure

Source Code of org.jclouds.abiquo.domain.infrastructure.Blade

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.abiquo.domain.infrastructure;

import static com.google.common.base.Preconditions.checkNotNull;

import org.jclouds.abiquo.AbiquoApi;
import org.jclouds.abiquo.reference.ValidationErrors;
import org.jclouds.abiquo.reference.rest.ParentLinkName;
import org.jclouds.http.HttpResponse;
import org.jclouds.http.functions.ParseXMLWithJAXB;
import org.jclouds.rest.ApiContext;

import com.abiquo.model.rest.RESTLink;
import com.abiquo.server.core.infrastructure.BladeLocatorLedDto;
import com.abiquo.server.core.infrastructure.LogicServerDto;
import com.abiquo.server.core.infrastructure.MachineDto;
import com.abiquo.server.core.infrastructure.UcsRackDto;
import com.google.inject.TypeLiteral;

/**
* Adds high level functionality to a {@link MachineDto} managed in a UCS rack.
* This resource allows you to access blades in managed racks in the cloud
* infrastructure.
*
* @author Ignasi Barrera
* @author Francesc Montserrat
* @see API: <a
*      href="http://community.abiquo.com/display/ABI20/MachineResource">
*      http://community.abiquo.com/display/ABI20/MachineResource</a>
*/
public class Blade extends AbstractPhysicalMachine {
   /** The rack where the machine belongs. */
   protected UcsRackDto rack;

   /**
    * Constructor to be used only by the builder.
    */
   protected Blade(final ApiContext<AbiquoApi> context, final MachineDto target) {
      super(context, target);
   }

   // Parent access

   /**
    * Retrieve the UCS rack where the blade is.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/RackResource#RackResource-RetrieveaUCSRack"
    *      >
    *      http://community.abiquo.com/display/ABI20/RackResource#RackResource-
    *      RetrieveaUCSRack</a>
    */
   public ManagedRack getRack() {
      RESTLink link = checkNotNull(target.searchLink(ParentLinkName.RACK), ValidationErrors.MISSING_REQUIRED_LINK + " "
            + ParentLinkName.RACK);

      HttpResponse response = context.getApi().get(link);

      ParseXMLWithJAXB<UcsRackDto> parser = new ParseXMLWithJAXB<UcsRackDto>(context.utils().xml(),
            TypeLiteral.get(UcsRackDto.class));

      return wrap(context, ManagedRack.class, parser.apply(response));
   }

   /**
    * Retrieve the logic server associated with this machine in the Cisco UCS
    * rack.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource#MachineResource-RetrieveslogicserverassociatedwithamachineinaCiscoUCS"
    *      > http://community.abiquo.com/display/ABI20/MachineResource#
    *      MachineResource-
    *      RetrieveslogicserverassociatedwithamachineinaCiscoUCS</a>
    */
   public LogicServer getLogicServer() {
      LogicServerDto server = context.getApi().getInfrastructureApi().getLogicServer(target);

      return wrap(context, LogicServer.class, server);
   }

   // Actions

   /**
    * Turn the blade associated to the provided logic server off. The blade must
    * belong to a Logic Server. This action sets the state of a given machine to
    * STOPPED. Also sends a stop request to Cisco UCS to shut down the machine.
    * The given machine must be a Physical Machine inside a Cisco UCS.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource#MachineResource-PoweroffanexistingmachineinCiscoUCS"
    *      > http://community.abiquo.com/display/ABI20/MachineResource#
    *      MachineResource- PoweroffanexistingmachineinCiscoUCS</a>
    */
   public void powerOff() {
      context.getApi().getInfrastructureApi().powerOff(target);
   }

   /**
    * Turn the blade associated to the provided logic server on. The machine
    * must belong to an UCS Rack. The blade must belong to a Logic Server.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource#MachineResource-PoweronanexistingmachineinCiscoUCS"
    *      > http://community.abiquo.com/display/ABI20/MachineResource#
    *      MachineResource- PoweronanexistingmachineinCiscoUCS</a>
    */
   public void powerOn() {
      context.getApi().getInfrastructureApi().powerOn(target);
   }

   /**
    * Turn blade led on. The machine must belong to an UCS Rack. The blade must
    * belong to a Logic Server.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource#MachineResource-LightoffthelocatorledofanexistingmachineinaCiscoUCS"
    *      > http://community.abiquo.com/display/ABI20/MachineResource#
    *      MachineResource-
    *      LightoffthelocatorledofanexistingmachineinaCiscoUCS</a>
    */
   public void ledOn() {
      context.getApi().getInfrastructureApi().ledOn(target);
   }

   /**
    * Turn blade led off. The machine must belong to an UCS Rack. The blade must
    * belong to a Logic Server.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource-LightoffthelocatorledofanexistingmachineinaCiscoUCS"
    *      > http://community.abiquo.com/display/ABI20/MachineResource-
    *      LightoffthelocatorledofanexistingmachineinaCiscoUCS</a>
    */
   public void ledOff() {
      context.getApi().getInfrastructureApi().ledOff(target);
   }

   /**
    * Retrieve the led locator information as a {@link BladeLocatorLed}.
    *
    * @return Blade locator led representation.
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/MachineResource#MachineResource-Retrievethelocatorledoftheblade"
    *      > http://community.abiquo.com/display/ABI20/MachineResource#
    *      MachineResource- Retrievethelocatorledoftheblade</a>
    */
   public BladeLocatorLed getLocatorLed() {
      BladeLocatorLedDto led = context.getApi().getInfrastructureApi().getLocatorLed(target);

      return wrap(context, BladeLocatorLed.class, led);
   }
}
TOP

Related Classes of org.jclouds.abiquo.domain.infrastructure.Blade

TOP
Copyright © 2018 www.massapi.com. 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.