# File lib/fog/softlayer/models/compute/server.rb, line 331
        def shutdown
          # requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this

          if bare_metal?
            raise Fog::Errors::Error.new('Shutdown not supported on baremetal servers. Use #stop.')
          else
            service.power_off_vm(id, false)
          end
          true
        end