class Duracloud::Commands::GetStorageReport

Public Instance Methods

call() click to toggle source
# File lib/duracloud/commands/get_storage_report.rb, line 4
def call
  delegate_to = if space_id
                  GetStorageReportForSpace
                elsif all_spaces
                  GetStorageReportForAllSpaces
                else
                  GetStorageReportForStore
                end
  delegate_to.call(cli)
end