Sha256: b5073c07c45547ea5bee5dbab403d95b5ef7274e5a63c3f1b53fd78e701697fa
Contents?: true
Size: 792 Bytes
Versions: 43
Compression:
Stored size: 792 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
43 entries across 41 versions & 6 rubygems