Sha256: a2c8bb1d16f724a09edd3c45ebc58c27f177ff0cde0582f594a0f929d235b800
Contents?: true
Size: 1.07 KB
Versions: 24
Compression:
Stored size: 1.07 KB
Contents
module Fog module Compute class NewServers class Real # List servers # # ==== Returns # * response<~Excon::Response>: # * server<~Hash>: # * '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 get_server(server_id) request( :expects => 200, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => 'api/getServer', :query => {'serverId' => server_id} ) end end end end end
Version data entries
24 entries across 24 versions & 6 rubygems