# File lib/fog/joyent/requests/compute/start_machine.rb, line 5
        def start_machine(id)
          request(
            :method => "POST",
            :path => "/my/machines/#{id}",
            :query => {"action" => "start"},
            :expects => 202
          )
        end