Sha256: 64a9b3b650c8cb33b585e8b5f00f6e903472f2cdd1401041f9c5bef41dfd06fb
Contents?: true
Size: 547 Bytes
Versions: 19
Compression:
Stored size: 547 Bytes
Contents
module Fog module Compute class OpenStack class Real def list_volumes_detail(options = {}) request( :expects => 200, :method => 'GET', :path => 'os-volumes/detail', :query => options ) end end class Mock def list_volumes_detail(options = {}) Excon::Response.new( :body => { 'volumes' => self.data[:volumes].values }, :status => 200 ) end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems