Sha256: 604c2fc7ea485e00f661d5acbeccb3704e4d461ffd138d6967fd15d0f78d2d96
Contents?: true
Size: 411 Bytes
Versions: 80
Compression:
Stored size: 411 Bytes
Contents
module Fog module Compute class Libvirt class Real def list_pool_volumes(uuid) pool = client.lookup_storage_pool_by_uuid uuid pool.list_volumes.map do |volume_name| volume_to_attributes(pool.lookup_volume_by_name(volume_name)) end end end class Mock def list_pool_volumes(uuid) end end end end end
Version data entries
80 entries across 80 versions & 13 rubygems