Parent

Methods

Class/Module Index [+]

Quicksearch

Fog::Terremark::Shared::Task

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/fog/terremark/models/shared/task.rb, line 19
def initialize(attributes = {})
  new_owner  = attributes.delete('Owner')
  new_result = attributes.delete('Result')
  new_error = attributes.delete('Error')
  new_cancel_link = attributes.delete('Link')

  super
  self.owner = service.parse(new_owner)
  if new_result
    self.result = service.parse(new_result)
  end
  self.error = service.parse(new_error) if new_error
  @cancel_link = service.parse(new_cancel_link) if new_cancel_link
end

Public Instance Methods

ready?() click to toggle source
# File lib/fog/terremark/models/shared/task.rb, line 34
def ready?
  @status == 'success'
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.