mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
require 'fog/core/model'
|
|
require 'fog/ibm/models/compute/instance-types'
|
|
|
|
module Fog
|
|
module Compute
|
|
class IBM
|
|
class Image < Fog::Model
|
|
|
|
STATES = {
|
|
0 => 'New',
|
|
1 => 'Available',
|
|
2 => 'Unavailable',
|
|
3 => 'Deleted',
|
|
4 => 'Capturing',
|
|
5 => 'Importing',
|
|
6 => 'Copying',
|
|
7 => 'Failed',
|
|
}
|
|
|
|
identity :id
|
|
|
|
attribute :architecture
|
|
attribute :created_at, :aliases => 'createdTime'
|
|
attribute :description
|
|
attribute :documentation
|
|
attribute :location
|
|
attribute :manifest
|
|
attribute :name
|
|
attribute :owner
|
|
attribute :platform
|
|
attribute :product_codes, :aliases => 'productCodes'
|
|
attribute :state
|
|
attribute :supported_instance_types, :aliases => 'supportedInstanceTypes'
|
|
attribute :visibility
|
|
|
|
attribute :volume_id
|
|
|
|
def initialize(new_attributes = {})
|
|
super(new_attributes)
|
|
attributes[:supported_instance_types] = Fog::Compute::IBM::InstanceTypes.new.load(attributes[:supported_instance_types]) if attributes[:supported_instance_types]
|
|
end
|
|
|
|
def save
|
|
requires :id, :volume_id
|
|
data = service.create_image(id, volume_id)
|
|
merge_attributes(data.body)
|
|
data.body['success']
|
|
end
|
|
|
|
def state
|
|
STATES[attributes[:state]]
|
|
end
|
|
|
|
def ready?
|
|
state == 'Available'
|
|
end
|
|
|
|
def clone(name, description)
|
|
service.clone_image(id, name, description).body['ImageID']
|
|
end
|
|
|
|
def destroy
|
|
requires :id
|
|
service.delete_image(id).body['success']
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|