Sha256: 88b99dfa13df864c460818e4c1fc2e40abfd258ad0e33c71f62f777e4c34a001
Contents?: true
Size: 537 Bytes
Versions: 39
Compression:
Stored size: 537 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' => data[:volumes].values}, :status => 200 ) end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems