Class: Fog::Terremark::Shared::Tasks
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Terremark::Shared::Tasks
- Defined in:
- lib/fog/terremark/models/shared/tasks.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
24 25 26 27 |
# File 'lib/fog/terremark/models/shared/tasks.rb', line 24 def all data = connection.get_tasks_list(task_list_id).body['Tasks'] load(data) end |
#get(task_id) ⇒ Object
29 30 31 32 33 34 35 36 37 |
# File 'lib/fog/terremark/models/shared/tasks.rb', line 29 def get(task_id) if task_id && task = connection.get_task(task_id).body new(task) elsif !task_id nil end rescue Excon::Errors::Forbidden nil end |
#task_list_id ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/fog/terremark/models/shared/tasks.rb', line 39 def task_list_id @task_list_id ||= if connection.default_organization_id && organization = connection.get_organization(connection.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 |