Sha256: abbe4188ccb0fd99b8584b5fb1a6ba4bef05c93299431dd1bdf5fcdac0f4d4fd
Contents?: true
Size: 868 Bytes
Versions: 4
Compression:
Stored size: 868 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve a MKS screen ticket that you can use # 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] # # https://pubs.vmware.com/vcd-80/index.jsp?topic=%2Fcom.vmware.vcloud.api.reference.doc_90%2Fdoc%2Foperations%2FPOST-AcquireMksTicket.html # @since vCloud API version 5.5 def post_acquire_mks_ticket(id) request( :expects => 200, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/screen/action/acquireMksTicket" ) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems