def deploy_virtual_machine(options={})
options.merge!(
'command' => 'deployVirtualMachine'
)
if security_group_ids = options.delete('securitygroupids')
options.merge!('securitygroupids' => Array(security_group_ids).join(','))
end
if security_group_names = options.delete('securitygroupnames')
options.merge!('securitygroupnames' => Array(security_group_names).join(','))
end
if network_ids = options.delete('networkids')
options.merge!('networkids' => Array(network_ids).join(','))
end
request(options)
end