Sha256: 0e3510624fe191e2172205fe224383c9207c1aeafb4487ee6427724fc6c6db89
Contents?: true
Size: 857 Bytes
Versions: 29
Compression:
Stored size: 857 Bytes
Contents
module Fog module HP class BlockStorage class Real # Delete an existing block storage snapshot # # ==== Parameters # * snapshot_id<~Integer> - Id of the snapshot to delete # def delete_snapshot(snapshot_id) response = request( :expects => 202, :method => 'DELETE', :path => "os-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::BlockStorage::NotFound end response end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems