fog--fog/lib/fog/cloudstack/requests/compute/list_luns_on_filer.rb

22 lines
458 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# List LUN
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/listLunsOnFiler.html]
def list_luns_on_filer(poolname, options={})
options.merge!(
'command' => 'listLunsOnFiler',
'poolname' => poolname
)
request(options)
end
end
end
end
end