Class: Fog::Compute::OpenStack::Snapshot
- Defined in:
- lib/fog/openstack/models/compute/snapshot.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #destroy ⇒ Object
-
#initialize(attributes) ⇒ Snapshot
constructor
A new instance of Snapshot.
- #save(force = false) ⇒ Object
Methods inherited from Model
#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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes) ⇒ Snapshot
Returns a new instance of Snapshot.
20 21 22 23 |
# File 'lib/fog/openstack/models/compute/snapshot.rb', line 20 def initialize(attributes) @connection = attributes[:connection] super end |
Instance Method Details
#destroy ⇒ Object
32 33 34 35 36 |
# File 'lib/fog/openstack/models/compute/snapshot.rb', line 32 def destroy requires :id connection.delete_snapshot(id) true end |
#save(force = false) ⇒ Object
25 26 27 28 29 30 |
# File 'lib/fog/openstack/models/compute/snapshot.rb', line 25 def save(force=false) requires :volume_id, :name, :description data = connection.create_volume_snapshot(volume_id, name, description, force) merge_attributes(data.body['snapshot']) true end |