Sha256: 7da157201ab6a0664a0dc2897e90144395f4deada7ef17152094f9f066eeb966

Contents?: true

Size: 636 Bytes

Versions: 13

Compression:

Stored size: 636 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)
          if data = connection.get_task(uri)
            new(data.body)
          end
        rescue Fog::Errors::NotFound
          nil
        end

      end
    end
  end
end

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
fog-1.1.2 lib/fog/vcloud/models/compute/tasks.rb
fog_tractical-1.1.4 lib/fog/vcloud/models/compute/tasks.rb
fog_tractical-1.1.3 lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
fog-1.1.1 lib/fog/vcloud/models/compute/tasks.rb
fog-1.1.0 lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
tag-fog-1.0.1 lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/vcloud/models/compute/tasks.rb
fog-1.0.0 lib/fog/vcloud/models/compute/tasks.rb