Sha256: 5f44f9ae565b8a7f39718d40b34f3ef914943ab4f5c845f85179cb4156092290
Contents?: true
Size: 1.15 KB
Versions: 39
Compression:
Stored size: 1.15 KB
Contents
module Fog module Compute class RackspaceV2 class Real # Retrieves a list of flavors # @return [Excon::Response] response: # * body [Hash]: # * flavors [Array]: # * [Hash]: # * id [String] - flavor id # * links [Array] - flavor links # * name [String] - flavor name # @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 http://docs.rackspace.com/servers/api/v2/cs-devguide/content/List_Flavors-d1e4188.html def list_flavors request( :expects => [200, 203], :method => 'GET', :path => 'flavors' ) end end class Mock def list_flavors flavors = self.data[:flavors].values.map { |f| Fog::Rackspace::MockData.keep(f, 'id', 'name', 'links') } response(:body => {"flavors" => flavors}) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems