Class: Fog::Compute::Aliyun::Snapshot
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::Aliyun::Snapshot
- Defined in:
- lib/fog/aliyun/models/compute/snapshot.rb
Instance Method Summary collapse
Instance Method Details
#destroy ⇒ Object
21 22 23 24 25 |
# File 'lib/fog/aliyun/models/compute/snapshot.rb', line 21 def destroy requires :id service.delete_snapshot(id) true end |
#ready? ⇒ Boolean
27 28 29 |
# File 'lib/fog/aliyun/models/compute/snapshot.rb', line 27 def ready? state == 'accomplished' end |
#save(options = {}) ⇒ Object
31 32 33 34 35 36 37 38 39 |
# File 'lib/fog/aliyun/models/compute/snapshot.rb', line 31 def save( = {}) # raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted? requires :volume_id [:name] = name if name [:description] = description if description data = Fog::JSON.decode(service.create_snapshot(volume_id, ).body) merge_attributes(data) true end |