Sha256: cf5b0b6ce06568a9a73c41c1f1ff607f7607f9441346efd74d2c9e1ed7fa8f17

Contents?: true

Size: 585 Bytes

Versions: 25

Compression:

Stored size: 585 Bytes

Contents

require 'fog/vcloud/models/compute/task'

module Fog
  module Vcloud
    class Compute

      class Tasks < Fog::Vcloud::Collection

        model Fog::Vcloud::Compute::Task

        attribute :href, :aliases => :Href

        def all
          self.href = connection.default_vdc_href unless self.href
          check_href!
          if data = connection.get_task_list(href).body[:Task]
            load(data)
          end
        end

        def get(uri)
          connection.get_task(uri)
        rescue Fog::Errors::NotFound
          nil
        end

      end
    end
  end
end

Version data entries

25 entries across 25 versions & 11 rubygems

Version Path
fog-1.2.0 lib/fog/vcloud/models/compute/tasks.rb
ktheory-fog-1.1.2 lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb