Class: Fog::Compute::Brightbox::DatabaseSnapshot

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/brightbox/models/compute/database_snapshot.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

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

#destroyObject



38
39
40
41
42
# File 'lib/fog/brightbox/models/compute/database_snapshot.rb', line 38

def destroy
  requires :identity
  merge_attributes(service.destroy_database_snapshot(identity))
  true
end

#ready?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/fog/brightbox/models/compute/database_snapshot.rb', line 34

def ready?
  state == "available"
end

#saveObject



24
25
26
27
28
29
30
31
32
# File 'lib/fog/brightbox/models/compute/database_snapshot.rb', line 24

def save
  options = {
    :name => name,
    :description => description
  }
  data = update_database_snapshot(options)
  merge_attributes(data)
  true
end