Sha256: 292ce83c10b9a28ebf4956ecc42ff88eebf3393e633b9d179e72edec73242f8f

Contents?: true

Size: 1.63 KB

Versions: 65

Compression:

Stored size: 1.63 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class AWS

      class Image < Fog::Model

        identity :id,                     :aliases => 'imageId'

        attribute :architecture
        attribute :block_device_mapping,  :aliases => 'blockDeviceMapping'
        attribute :description
        attribute :location,              :aliases => 'imageLocation'
        attribute :owner_id,              :aliases => 'imageOwnerId'
        attribute :owner_alias,           :aliases => 'imageOwnerAlias'
        attribute :state,                 :aliases => 'imageState'
        attribute :type,                  :aliases => 'imageType'
        attribute :is_public,             :aliases => 'isPublic'
        attribute :kernel_id,             :aliases => 'kernelId'
        attribute :platform
        attribute :product_codes,         :aliases => 'productCodes'
        attribute :ramdisk_id,            :aliases => 'ramdiskId'
        attribute :root_device_type,      :aliases => 'rootDeviceType'
        attribute :root_device_name,      :aliases => 'rootDeviceName'
        attribute :tags,                  :aliases => 'tagSet'
        attribute :name

        def deregister(delete_snapshot = false)
          service.deregister_image(id)

          if(delete_snapshot && root_device_type == "ebs")
            block_device = block_device_mapping.detect {|block_device| block_device['deviceName'] == root_device_name}
            service.snapshots.new(:id => block_device['snapshotId']).destroy
          else
            true
          end
        end

        def ready?
          state == 'available'
        end

      end

    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-1.22.0 lib/fog/aws/models/compute/image.rb
fog-1.21.0 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/models/compute/image.rb
fog-1.20.0 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/models/compute/image.rb
fog-1.19.0 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/models/compute/image.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/models/compute/image.rb