Sha256: 8ca4eb99ae0470c418936b7cc1a0dc8962d44d641cf40d9f7587be8b7e4de907

Contents?: true

Size: 1.23 KB

Versions: 65

Compression:

Stored size: 1.23 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class Serverlove

      class Image < Fog::Model

        identity :id, :aliases => 'drive'

        attribute :name
        attribute :user
        attribute :size
        attribute :claimed
        attribute :status
        attribute :imaging
        attribute :encryption_cipher, :aliases => 'encryption:cipher'

        def save
          attributes = {}

          if(identity)
            attributes = service.update_image(identity, allowed_attributes).body
          else
            requires :name
            requires :size
            attributes = service.create_image(allowed_attributes).body
          end

          merge_attributes(attributes)
          self
        end

        def load_standard_image(standard_image_uuid)
          requires :identity
          service.load_standard_image(identity, standard_image_uuid)
        end

        def ready?
          status.upcase == 'ACTIVE'
        end

        def destroy
          requires :identity
          service.destroy_image(identity)
          self
        end

        def allowed_attributes
          allowed = [:name, :size]
          attributes.select {|k,v| allowed.include? k}
        end

      end
    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-1.10.0 lib/fog/serverlove/models/compute/image.rb
fog-1.9.0 lib/fog/serverlove/models/compute/image.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/serverlove/models/compute/image.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/serverlove/models/compute/image.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/serverlove/models/compute/image.rb