Sha256: 9e706c6af68d7392a27872422edf0382eab3a17e9e1d30ed0a8f6b459ff63f5c
Contents?: true
Size: 615 Bytes
Versions: 20
Compression:
Stored size: 615 Bytes
Contents
module Fog module Terremark module Shared module Real # Shutdown a vapp # # ==== Parameters # * vapp_id<~Integer> - Id of vapp to shutdown # # ==== Returns # Nothing def power_shutdown(vapp_id) request( :expects => 204, :method => 'POST', :path => "vApp/#{vapp_id}/power/action/shutdown" ) end end module Mock def power_shutdown(vapp_id) raise MockNotImplemented.new("Contributions welcome!") end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems