mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
No EOL
481 B
Ruby
20 lines
No EOL
481 B
Ruby
module Fog
|
|
module Compute
|
|
class Brightbox
|
|
class Real
|
|
|
|
def get_server(identifier, options = {})
|
|
return nil if identifier.nil? || identifier == ""
|
|
request(
|
|
:expects => [200],
|
|
:method => 'GET',
|
|
:path => "/1.0/servers/#{identifier}",
|
|
:headers => {"Content-Type" => "application/json"},
|
|
:body => MultiJson.encode(options)
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |