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