Sha256: 839ce2896b763de1e7d117cc20ee90217a518dffa1b3027a682740c7018eb756
Contents?: true
Size: 1.41 KB
Versions: 8
Compression:
Stored size: 1.41 KB
Contents
require 'fog/core/model' module Fog module Compute class Brightbox class Image < Fog::Model identity :id attribute :url attribute :resource_type attribute :name attribute :status attribute :description attribute :source attribute :source_type attribute :arch attribute :virtual_size attribute :disk_size # 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 identity requires :source, :arch options = { :source => source, :arch => arch, :name => name, :description => description }.delete_if {|k,v| v.nil? || v == "" } data = connection.create_image(options) merge_attributes(data) true end def destroy requires :identity connection.destroy_image(identity) true end end end end end
Version data entries
8 entries across 8 versions & 3 rubygems