Class: Fog::Compute::OpenStack::Snapshot

Inherits:
Model
  • Object
show all
Defined in:
lib/rackspace-fog/openstack/models/compute/snapshot.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

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/rackspace-fog/openstack/models/compute/snapshot.rb', line 20

def initialize(attributes)
  @connection = attributes[:connection]
  super
end

Instance Method Details

#destroyObject



32
33
34
35
36
# File 'lib/rackspace-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/rackspace-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