Sha256: 7dd480ffe855676489961e3b58c79144835c8395d8297276deb2f4e0bdf05a01
Contents?: true
Size: 864 Bytes
Versions: 35
Compression:
Stored size: 864 Bytes
Contents
module Fog module HP class BlockStorageV2 class Real # Delete an existing block storage snapshot # # ==== Parameters # * 'snapshot_id'<~String> - UUId of the snapshot to delete # def delete_snapshot(snapshot_id) response = request( :expects => 202, :method => 'DELETE', :path => "snapshots/#{snapshot_id}" ) response end end class Mock # :nodoc:all def delete_snapshot(snapshot_id) response = Excon::Response.new if self.data[:snapshots][snapshot_id] self.data[:snapshots].delete(snapshot_id) response.status = 202 else raise Fog::HP::BlockStorageV2::NotFound end response end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems