Sha256: 7664dd71b1341021241b518f35f50cf4d37f3fef5253660478e3fa38783879e3
Contents?: true
Size: 869 Bytes
Versions: 96
Compression:
Stored size: 869 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve a screen ticket that you can use with the VMRC browser # plug-in to gain access to the console of a running VM. # # @param [String] id Object identifier of the VM. # @return [Excon::Response] # * body<~Hash>: # # @raise [Fog::Compute::VcloudDirector::Conflict] # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-AcquireTicket.html # @since vCloud API version 0.9 def post_acquire_ticket(id) request( :expects => 200, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/screen/action/acquireTicket" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems