Class: Fog::Terremark::Shared::Tasks

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/terremark/models/shared/tasks.rb

Instance Method Summary collapse

Instance Method Details

#allObject



22
23
24
25
# File 'lib/fog/terremark/models/shared/tasks.rb', line 22

def all
  data = service.get_tasks_list(task_list_id).body['Tasks']
  load(data)
end

#get(task_id) ⇒ Object



27
28
29
30
31
32
33
34
35
# File 'lib/fog/terremark/models/shared/tasks.rb', line 27

def get(task_id)
  if task_id && task = service.get_task(task_id).body
    new(task)
  elsif !task_id
    nil
  end
rescue Excon::Errors::Forbidden
  nil
end

#task_list_idObject



37
38
39
40
41
42
43
44
# File 'lib/fog/terremark/models/shared/tasks.rb', line 37

def task_list_id
  @task_list_id ||=
    if service.default_organization_id && organization = service.get_organization(service.default_organization_id).body
      organization['Links'].find {|link| link['type'] == 'application/vnd.vmware.vcloud.tasksList+xml'}['href'].split('/').last.to_i
    else
      nil
    end
end