1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/compute/image.rb

45 lines
1.5 KiB
Ruby
Raw Normal View History

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
identity :id, :aliases => 'imageId'
2010-01-10 16:35:20 -05:00
attribute :architecture
attribute :block_device_mapping, :aliases => 'blockDeviceMapping'
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
attribute :product_codes, :aliases => 'productCodes'
attribute :ramdisk_id, :aliases => 'ramdiskId'
attribute :root_device_type, :aliases => 'rootDeviceType'
attribute :root_device_name, :aliases => 'rootDeviceName'
def deregister(delete_snapshot = false)
connection.deregister_image(@id)
if(delete_snapshot && @root_device_type=="ebs")
@block_device_mapping.each do |block_device|
next if block_device["deviceName"] != @root_device_name
snapshot_id = block_device["snapshotId"]
snapshot = @connection.snapshots.get(snapshot_id)
return snapshot.destroy
end
end
return true
end
2010-01-10 16:35:20 -05:00
end
end
end
end