Sha256: e5f69da32e9ae5a8ddaf8c6b572a59607d4734aaa12ff890f3fb1c636ff9cf02
Contents?: true
Size: 613 Bytes
Versions: 20
Compression:
Stored size: 613 Bytes
Contents
module Fog module OpenStack class Volume module Real def list_snapshots_detailed(options = {}) request( :expects => 200, :method => 'GET', :path => 'snapshots/detail', :query => options ) end end module Mock def list_snapshots_detailed(_options = {}) response = Excon::Response.new response.status = 200 response.body = { 'snapshots' => [get_snapshot_details.body["snapshot"]] } response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems