mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
3f08cbf399
Add list_usages, get_console_output, live_migrate_server, migrate_server
28 lines
511 B
Ruby
28 lines
511 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def get_console_output(server_id, log_length)
|
|
body = {
|
|
'os-getConsoleOutput' => {
|
|
'length' => log_length
|
|
}
|
|
}
|
|
server_action(server_id, body)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_console_output(server_id, log_length)
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|