Class: Fog::Compute::Cloudstack::Snapshot
- Defined in:
- lib/fog/cloudstack/models/compute/snapshot.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
38 39 40 41 42 |
# File 'lib/fog/cloudstack/models/compute/snapshot.rb', line 38 def destroy requires :id service.delete_snapshot('id' => id) true end |
#ready? ⇒ Boolean
30 31 32 |
# File 'lib/fog/cloudstack/models/compute/snapshot.rb', line 30 def ready? state == 'BackedUp' end |
#save ⇒ Object
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/fog/cloudstack/models/compute/snapshot.rb', line 19 def save requires :volume_id = { 'volumeid' => volume_id, 'domainid' => domain_id } data = service.create_snapshot() merge_attributes(data['createsnapshotresponse']) end |
#volume ⇒ Object
34 35 36 |
# File 'lib/fog/cloudstack/models/compute/snapshot.rb', line 34 def volume service.volumes.get(volume_id) if volume_id end |