Class/Module Index [+]

Quicksearch

Fog::Terremark::Shared::Tasks

Public Instance Methods

all() click to toggle source
# File lib/fog/terremark/models/shared/tasks.rb, line 24
def all
  data = service.get_tasks_list(task_list_id).body['Tasks']
  load(data)
end
get(task_id) click to toggle source
# File lib/fog/terremark/models/shared/tasks.rb, line 29
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_id() click to toggle source
# File lib/fog/terremark/models/shared/tasks.rb, line 39
def task_list_id
  @task_list_id ||=
    if service.default_organization_id && organization = service.get_organization(service.default_organization_id).body
      organization['Links'].detect {|link| link['type'] == 'application/vnd.vmware.vcloud.tasksList+xml'}['href'].split('/').last.to_i
    else
      nil
    end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.