Sha256: 73da582a318a9abbbfd764591328b1230a033f04ba826322c7d71aab4b39b29f
Contents?: true
Size: 466 Bytes
Versions: 44
Compression:
Stored size: 466 Bytes
Contents
module Fog module Volume class OpenStack module Real def delete_snapshot(snapshot_id) request( :expects => 202, :method => 'DELETE', :path => "snapshots/#{snapshot_id}" ) end end module Mock def delete_snapshot(_snapshot_id) response = Excon::Response.new response.status = 202 response end end end end end
Version data entries
44 entries across 42 versions & 3 rubygems