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
31 lines
666 B
Ruby
31 lines
666 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def live_migrate_server(server_id, host, block_migration, disk_over_commit)
|
|
body = {
|
|
'os-migrateLive' => {
|
|
'host' => host,
|
|
'block_migration' => block_migration,
|
|
'disk_over_commit' => disk_over_commit,
|
|
}
|
|
}
|
|
server_action(server_id, body)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def live_migrate_server(server_id, host, block_migration, disk_over_commit)
|
|
response = Excon::Response.new
|
|
response.status = 202
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|