Sha256: 3787154c44b4b53c0c68906252fe7ff7616eee90ccf016e28d3bf049051cef10
Contents?: true
Size: 794 Bytes
Versions: 76
Compression:
Stored size: 794 Bytes
Contents
module Fog module Compute class BareMetalCloud class Real # List available plans # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'plan'<~Array> # * '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
76 entries across 76 versions & 11 rubygems