Sha256: 82f93faf4916477d537a5be0ae0a2a8468d033923f791ef59cec3adaf10d513d
Contents?: true
Size: 586 Bytes
Versions: 82
Compression:
Stored size: 586 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) Fog::Mock.not_implemented end end end end end
Version data entries
82 entries across 82 versions & 4 rubygems