def start_instance(instance_id)
        response = @conn.servers.get(instance_id)
        abort "InstanceId Not found :#{instance_id}" unless response
        abort 'Instance should be stopped to start it' if response.state != 'stopped'
        response.start