Sha256: edbe44b65a3297cb9cd7dbe66617bb8e595087b4fe45357e5971219b55e30417

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

module Fog
  module VcloudDirector
    class Compute
      class Real
        # Reboot a vApp or VM.
        #
        # If used on a vApp, reboots all VMs in the vApp. If used on a VM,
        # reboots the VM. This operation is available only for a vApp or VM
        # that is powered on.
        #
        # This operation is asynchronous and returns a task that you can
        # monitor to track the progress of the request.
        #
        # @param [String] id Object identifier of the vApp or VM.
        # @return [Excon::Response]
        #   * body<~Hash>:
        #
        # @raise [Fog::VcloudDirector::Compute::BadRequest]
        #
        # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-RebootVApp.html
        # @since vCloud API version 0.9
        def post_reboot_vapp(id)
          request(
            :expects => 202,
            :method  => 'POST',
            :parser  => Fog::ToHashDocument.new,
            :path    => "vApp/#{id}/power/action/reboot"
          )
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-vcloud-director-0.3.1 lib/fog/vcloud_director/requests/compute/post_reboot_vapp.rb
fog-vcloud-director-0.3.0 lib/fog/vcloud_director/requests/compute/post_reboot_vapp.rb