Class: Fog::Compute::Aliyun::Image
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::Aliyun::Image
- Defined in:
- lib/fog/aliyun/models/compute/image.rb
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes) ⇒ Image
constructor
A new instance of Image.
- #ready? ⇒ Boolean
- #save(options = {}) ⇒ Object
- #snapshot ⇒ Object
Constructor Details
#initialize(attributes) ⇒ Image
Returns a new instance of Image.
31 32 33 34 35 36 |
# File 'lib/fog/aliyun/models/compute/image.rb', line 31 def initialize(attributes) unless attributes['DiskDeviceMappings']['DiskDeviceMapping'].empty? self.snapshot_id = attributes['DiskDeviceMappings']['DiskDeviceMapping'][0]['SnapshotId'] end super end |
Instance Method Details
#destroy ⇒ Object
47 48 49 50 51 |
# File 'lib/fog/aliyun/models/compute/image.rb', line 47 def destroy requires :id service.delete_image(id) true end |
#ready? ⇒ Boolean
53 54 55 |
# File 'lib/fog/aliyun/models/compute/image.rb', line 53 def ready? state == 'Available' end |
#save(options = {}) ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/fog/aliyun/models/compute/image.rb', line 38 def save( = {}) requires :snapshot_id [:name] = name if name [:description] = description if description data = Fog::JSON.decode(service.create_image(snapshot_id, ).body) merge_attributes(data) true end |