Sha256: ec7ef869f5093ed73af972694880ec34da2becdcbf334ff49e77ea49ac493d5a

Contents?: true

Size: 1.15 KB

Versions: 43

Compression:

Stored size: 1.15 KB

Contents

require 'fog/model'

module Fog
  module Terremark
    module Shared

      class Task < Fog::Model

        identity :id

        attribute :end_time,    'endTime'
        attribute :owner,       'Owner'
        attribute :result,      'Result'
        attribute :start_time,  'startTime'
        attribute :status
        attribute :link,         'Link'
        attribute :error,        'Error'

        def initialize(attributes = {})
          new_owner  = attributes.delete('Owner')
          new_result = attributes.delete('Result')
          new_error = attributes.delete('Error')
          new_cancel_link = attributes.delete('Link')

          super
          @owner  = connection.parse(new_owner)
          if new_result
            @result = connection.parse(new_result)
          end
          @error = connection.parse(new_error) if new_error
          @cancel_link = connection.parse(new_cancel_link) if new_cancel_link
        end

        def ready?
          @status == 'success'
        end

        private

        def href=(new_href)
          @id = new_href.split('/').last.to_i
        end

        def type=(new_type); end

      end

    end
  end
end

Version data entries

43 entries across 43 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/terremark/models/shared/task.rb
fog-0.2.28 lib/fog/terremark/models/shared/task.rb
fog-0.2.27 lib/fog/terremark/models/shared/task.rb
fog-0.2.26 lib/fog/terremark/models/shared/task.rb
fog-0.2.25 lib/fog/terremark/models/shared/task.rb
fog-0.2.24 lib/fog/terremark/models/shared/task.rb
tecnh-fog-0.2.23.vpc lib/fog/terremark/models/shared/task.rb
fog-0.2.23 lib/fog/terremark/models/shared/task.rb
fog-0.2.22 lib/fog/terremark/models/shared/task.rb
fog-0.2.21 lib/fog/terremark/models/shared/task.rb
fog-0.2.20 lib/fog/terremark/models/shared/task.rb
fog-0.2.19 lib/fog/terremark/models/shared/task.rb
fog-0.2.18 lib/fog/terremark/models/shared/task.rb
fog-0.2.17 lib/fog/terremark/models/shared/task.rb
fog-0.2.16 lib/fog/terremark/models/shared/task.rb
fog-0.2.15 lib/fog/terremark/models/shared/task.rb
fog-0.2.14 lib/fog/terremark/models/shared/task.rb
fog-0.2.13 lib/fog/terremark/models/shared/task.rb
fog-0.2.12 lib/fog/terremark/models/shared/task.rb
fog-0.2.11 lib/fog/terremark/models/shared/task.rb