Sha256: 24919b041f14783c68bf9a8b806e140b08e4f59d73c5c808d1afd89192f66529

Contents?: true

Size: 907 Bytes

Versions: 2

Compression:

Stored size: 907 Bytes

Contents

module Fog
  module VcloudDirector
    class Compute
      class Real
        # Removes all user created snapshots for a vApp or virtual machine.
        #
        # 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 virtual machine.
        # @return [Excon::Response]
        #   * body<~Hash>:
        #
        # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-RemoveAllSnapshots.html
        # @since vCloud API version 5.1
        def post_remove_all_snapshots(id)
          request(
            :expects => 202,
            :method  => 'POST',
            :parser  => Fog::ToHashDocument.new,
            :path    => "vApp/#{id}/action/removeAllSnapshots"
          )
        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_remove_all_snapshots.rb
fog-vcloud-director-0.3.0 lib/fog/vcloud_director/requests/compute/post_remove_all_snapshots.rb