Class: Fog::Compute::Aliyun::Image

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aliyun/models/compute/image.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Image

Returns a new instance of Image.



30
31
32
33
# File 'lib/fog/aliyun/models/compute/image.rb', line 30

def initialize(attributes)
  self.snapshot_id=attributes["DiskDeviceMappings"]["DiskDeviceMapping"][0]["SnapshotId"]
  super
end

Instance Method Details

#destroyObject



44
45
46
47
48
# File 'lib/fog/aliyun/models/compute/image.rb', line 44

def destroy
  requires :id
  service.delete_image(id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


50
51
52
# File 'lib/fog/aliyun/models/compute/image.rb', line 50

def ready?
  state == 'Available'
end

#save(options = {}) ⇒ Object



35
36
37
38
39
40
41
42
# File 'lib/fog/aliyun/models/compute/image.rb', line 35

def save (options={})
  requires :snapshot_id
  options[:name] = name if name
  options[:description]=description if description
  data=Fog::JSON.decode(service.create_image(snapshot_id,options).body)
  merge_attributes(data)
  true
end

#snapshotObject



54
55
56
57
# File 'lib/fog/aliyun/models/compute/image.rb', line 54

def snapshot
  requires :snapshot_id
  Fog::Compute::Aliyun::Snapshots.new(:service=>service).all(:snapshotIds=>[snapshot_id])[0]
end