Sha256: cdff1d9e6dcab86d72e8d8eb81a9183d2ce447f03db6d51d82c302b5cab8b85c
Contents?: true
Size: 760 Bytes
Versions: 38
Compression:
Stored size: 760 Bytes
Contents
module Fog module Rackspace module Servers class Real # List all flavors # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'id'<~Integer> - Id of the flavor # * 'name'<~String> - Name of the flavor # * 'ram'<~Integer> - Amount of ram for the flavor # * 'disk'<~Integer> - Amount of diskspace for the flavor def list_flavors_detail request( :expects => [200, 203], :method => 'GET', :path => 'flavors/detail.json' ) end end class Mock def list_flavors_detail Fog::Mock.not_implemented end end end end end
Version data entries
38 entries across 38 versions & 2 rubygems