mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
532 B
Ruby
25 lines
532 B
Ruby
module Fog
|
|
module Compute
|
|
class GoGrid
|
|
class Real
|
|
|
|
# Get one or more servers by name
|
|
#
|
|
# ==== Parameters
|
|
# * 'server'<~String> - id or name of server(s) to lookup
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Array>:
|
|
# TODO: docs
|
|
def grid_server_get(servers)
|
|
request(
|
|
:path => 'grid/server/get',
|
|
:query => {'server' => [*servers]}
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|