Sha256: d65c9c7865991fe4745a1e92a392d552adfa463211df21d45135a49dbe969b68
Contents?: true
Size: 466 Bytes
Versions: 22
Compression:
Stored size: 466 Bytes
Contents
module Fog module OpenStack class Volume 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
22 entries across 22 versions & 3 rubygems