Sha256: acaa5f99184ad712757b407cbfbb17df1cde7758f32ca333119fa622f5289b28
Contents?: true
Size: 549 Bytes
Versions: 132
Compression:
Stored size: 549 Bytes
Contents
module Fog module Compute class Clodo class Real def rebuild_server(id, image_id, vps_isp = nil) body = {'rebuild' => {'imageId' => image_id}} body['rebuild']['vps_isp'] = vps_isp if vps_isp server_action(id, body) end end class Mock def rebuild_server(id, image_id, vps_isp = nil) body = {'rebuild' => {'imageId' => image_id}} body['rebuild']['vps_isp'] = vps_isp if vps_isp server_action(id, body) end end end end end
Version data entries
132 entries across 130 versions & 21 rubygems