1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud_director/models/compute/tasks.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

29 lines
667 B
Ruby

require 'fog/core/collection'
require 'fog/vcloud_director/models/compute/task'
module Fog
module Compute
class VcloudDirector
class Tasks < Collection
model Fog::Compute::VcloudDirector::Task
attribute :organization
def get(id)
data = service.get_task(id).body
return nil unless data
data[:id] = data[:href].split('/').last
data[:progress] ||= 0
new(data)
end
private
def item_list
data = service.get_task_list(organization.id).body
data[:Task].each {|task| service.add_id_from_href!(task)}
end
end
end
end
end