Sha256: e5fd8ba71afc24901e44c901577df47bdc4461c0f66c3ad4abb7a42cec661d5d
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
require 'rackspace-fog/core/model' module Fog module Compute class Brightbox class Image < Fog::Model 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 # 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, :username => username, :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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rackspace-fog-1.4.2 | lib/rackspace-fog/brightbox/models/compute/image.rb |