Sha256: 75271ee5b06cdaa82f1ee7c358ec2195de0e6c1e278ece1b9e361a43b6d1289e

Contents?: true

Size: 1.54 KB

Versions: 10

Compression:

Stored size: 1.54 KB

Contents

module Fog
  module Brightbox
    class Compute
      class Image < Fog::Brightbox::Model
        include Fog::Brightbox::Compute::ResourceLocking

        identity :id
        attribute :url
        attribute :resource_type

        attribute :name
        attribute :username
        attribute :status
        attribute :description

        attribute :source
        attribute :source_type
        attribute :arch
        attribute :virtual_size
        attribute :disk_size
        attribute :licence_name

        # Boolean flags
        attribute :public
        attribute :official
        attribute :compatibility_mode

        # Times
        attribute :created_at, :type => :time

        # Links - to be replaced
        attribute :ancestor_id, :aliases => "ancestor", :squash => "id"
        attribute :owner_id, :aliases => "owner", :squash => "id"

        def ready?
          status == "available"
        end

        def save
          raise Fog::Errors::Error.new("Resaving an existing object may create a duplicate") if persisted?
          requires :source, :arch
          options = {
            :source => source,
            :arch => arch,
            :name => name,
            :username => username,
            :description => description
          }.delete_if { |_k, v| v.nil? || v == "" }
          data = service.create_image(options)
          merge_attributes(data)
          true
        end

        def destroy
          requires :identity
          service.delete_image(identity)
          true
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fog-brightbox-1.6.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.5.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.5.0.rc1 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.4.2 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.4.1 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.4.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.3.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.2.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.1.0 lib/fog/brightbox/models/compute/image.rb
fog-brightbox-1.0.0 lib/fog/brightbox/models/compute/image.rb