Sha256: fe4f3bf0a1eb2a8c19a612ed221637a2f8626d0b08e355d4ac185d5dd46c9f0a
Contents?: true
Size: 1.06 KB
Versions: 43
Compression:
Stored size: 1.06 KB
Contents
module Fog module Compute class BareMetalCloud class Real # List servers # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * server<~Array>: # * 'id'<~String> - Id of the server # * 'ip'<~Hash>: # * 'address'<~String> - Address of the ip # * 'name'<~String> - Name of the ip # * 'login'<~Hash>: # * 'name'<~String> - Name of the login # * 'password'<~String> - Password of the login # * 'username'<~String> - Username of the login # * 'name'<~String> - Name of the server # * 'notes'<~String> - Notes about the server # * 'state'<~String> - State of the server # def list_servers request( :expects => 200, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => 'api/listServers' ) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems