1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bare_metal_cloud/requests/compute/get_server.rb
Diego Desani 49150c30d2 - Updated "@host" variable to "noc.newservers.com" which is the current host for API calls
- Added two calls: add_server_by_configuration.rb and list_configurations.rb
-- These calls should be used instead of add_server and list_plans, although we still support them.
- General comments were updated.
2012-08-24 00:17:43 -04:00

41 lines
1.3 KiB
Ruby

module Fog
module Compute
class BareMetalCloud
class Real
# List servers
#
# ==== Parameters
# * serverId<~String> - Id of the server
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Has>:
# * server<~Hash>:
# * 'id'<~String> - Id of the server
# * 'mac-address'<~String> - mac-address 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