2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/model'
|
2010-03-16 18:46:21 -04:00
|
|
|
|
2010-01-10 16:35:20 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Compute
|
2010-01-10 16:35:20 -05:00
|
|
|
|
|
|
|
class Image < Fog::Model
|
|
|
|
|
2010-09-07 14:30:02 -04:00
|
|
|
identity :id, :aliases => 'imageId'
|
2010-01-10 16:35:20 -05:00
|
|
|
|
|
|
|
attribute :architecture
|
2010-09-07 14:30:02 -04:00
|
|
|
attribute :block_device_mapping, :aliases => 'blockDeviceMapping'
|
2010-12-05 23:27:42 -05:00
|
|
|
attribute :description
|
2010-09-07 14:30:02 -04:00
|
|
|
attribute :location, :aliases => 'imageLocation'
|
|
|
|
attribute :owner_id, :aliases => 'imageOwnerId'
|
|
|
|
attribute :state, :aliases => 'imageState'
|
|
|
|
attribute :type, :aliases => 'imageType'
|
|
|
|
attribute :is_public, :aliases => 'isPublic'
|
|
|
|
attribute :kernel_id, :aliases => 'kernelId'
|
2010-01-10 16:35:20 -05:00
|
|
|
attribute :platform
|
2010-09-07 14:30:02 -04:00
|
|
|
attribute :product_codes, :aliases => 'productCodes'
|
|
|
|
attribute :ramdisk_id, :aliases => 'ramdiskId'
|
|
|
|
attribute :root_device_type, :aliases => 'rootDeviceType'
|
|
|
|
attribute :root_device_name, :aliases => 'rootDeviceName'
|
2010-10-12 14:00:59 -04:00
|
|
|
attribute :tags, :aliases => 'tagSet'
|
2010-07-25 12:24:08 -04:00
|
|
|
|
2010-07-25 16:22:56 -04:00
|
|
|
def deregister(delete_snapshot = false)
|
2010-11-19 16:45:45 -05:00
|
|
|
connection.deregister_image(id)
|
2010-07-25 16:22:56 -04:00
|
|
|
|
2010-11-19 16:45:45 -05:00
|
|
|
if(delete_snapshot && root_device_type == "ebs")
|
2010-12-03 13:26:17 -05:00
|
|
|
block_device = block_device_mapping.detect {|block_device| block_device['deviceName'] == root_device_name}
|
2010-11-19 16:45:45 -05:00
|
|
|
@connection.snapshots.new(:id => block_device['snapshotId']).destroy
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
2010-07-25 12:24:08 -04:00
|
|
|
end
|
2010-10-11 16:40:34 -04:00
|
|
|
|
2010-01-10 16:35:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
2010-07-25 12:24:08 -04:00
|
|
|
end
|