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/task.rb
2013-08-27 11:19:54 +02:00

48 lines
No EOL
1.1 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class VcloudDirector
class Task < Fog::Model
identity :id
attribute :name
attribute :type
attribute :href
attribute :status
attribute :operation
attribute :operation_name, :aliases => :operationName
attribute :expirity_time, :aliases => :expiryTime, :type => :time
attribute :end_time, :aliases => :endTime, :type => :time
attribute :error, :aliases => :Error
attribute :result, :aliases => :Result
attribute :progress, :aliases => :Progress
def ready?
status == 'success'
end
def success?
status == 'success'
end
def non_running?
if status == 'running'
if progress.to_i == 0
printf '.'
else
print " #{progress} %\r"
end
else
puts " #{status}"
end
status != 'running'
end
end
end
end
end