Methods

Class/Module Index [+]

Quicksearch

Fog::Compute::RackspaceV2::Flavors

Public Instance Methods

all() click to toggle source

Retrieves information for all available flavors @return [Fog::Compute::RackspaceV2::Flavors] list of flavors @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404 @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400 @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500 @raise [Fog::Compute::RackspaceV2::ServiceError] @note Fog's currentl implementation only returns 1000 flavors. @note Fog does not retrieve all flavor details. Please use get to retrieve all details for a specific flavor.

# File lib/fog/rackspace/models/compute_v2/flavors.rb, line 19
def all
  data = service.list_flavors.body['flavors']
  load(data)
end
get(flavor_id) click to toggle source

Retrieve image @param [String] flavor_id id of flavor @return [Fog::Compute::RackspaceV2::Flavor] flavor @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404 @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400 @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500 @raise [Fog::Compute::RackspaceV2::ServiceError] @see docs.rackspace.com/servers/api/v2/cs-devguide/content/Get_Flavor_Details-d1e4317.html

# File lib/fog/rackspace/models/compute_v2/flavors.rb, line 32
def get(flavor_id)          
  data = service.get_flavor(flavor_id).body['flavor']
  new(data)
rescue Fog::Compute::RackspaceV2::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.