Sha256: 11eeb6b219bef92a302c7a4fbb598539b867af0280f5ae6ee304da64cbf0f5b4
Contents?: true
Size: 815 Bytes
Versions: 24
Compression:
Stored size: 815 Bytes
Contents
module Fog module Compute class NewServers class Real # List available plans # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'description'<~String> - Description of the plan # * 'id'<~String> - Id of the plan # * 'name'<~String> - Name of the plan # * 'rate'<~String> - Cost per hour of the plan # * 'os'<~String> - Operating system of the plan # * 'config'<~String> - Configuration of the plan # def list_plans request( :expects => 200, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => 'api/listPlans' ) end end end end end
Version data entries
24 entries across 24 versions & 6 rubygems