Sha256: 7bfdffb65207eef190fbf1e010e1ac3bcbcc90d339fda05d3a2742080f628b99
Contents?: true
Size: 680 Bytes
Versions: 4
Compression:
Stored size: 680 Bytes
Contents
module Fog module Compute class HuaweiCloud 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
Version data entries
4 entries across 4 versions & 1 rubygems