Sha256: 7eeba354fffd7dfa6dbf28fbfce85cc8a0f13abda1ebd66baa2381dd26a4a989

Contents?: true

Size: 1.29 KB

Versions: 14

Compression:

Stored size: 1.29 KB

Contents

require 'fog/core/collection'
require 'fog/terremark/models/shared/server'

module Fog
  module Terremark
    module Shared
      module Mock
        def tasks
          Fog::Terremark::Shared::Tasks.new(:service => self)
        end
      end

      module Real
        def tasks
          Fog::Terremark::Shared::Tasks.new(:service => self)
        end
      end

      class Tasks < Fog::Collection
        model Fog::Terremark::Shared::Task

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

        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

        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

        private

        def task_list_id=(new_task_list_id)
          @task_list_id = new_task_list_id
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/terremark/models/shared/tasks.rb
nsidc-fog-1.24.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.24.0 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.11 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.10 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.9 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.8 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.7 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.6 lib/fog/terremark/models/shared/tasks.rb
fog-1.23.0 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.4 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.3 lib/fog/terremark/models/shared/tasks.rb
ns-fog-1.22.2 lib/fog/terremark/models/shared/tasks.rb
fog-1.22.1 lib/fog/terremark/models/shared/tasks.rb