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

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

Instance Method Summary collapse

Methods included from ResourceLocking

#lock!, #locked?, #unlock!

Methods included from ModelHelper

#collection_name, #resource_name

Instance Method Details

#destroyObject



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

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

#ready?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/fog/brightbox/models/compute/database_snapshot.rb', line 36

def ready?
  state == "available"
end

#saveObject



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

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