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

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

Instance Method Summary collapse

Methods included from Brightbox::Compute::ResourceLocking

#lock!, #locked?, #unlock!

Methods included from Brightbox::ModelHelper

#collection_name, #resource_name

Instance Method Details

#destroyObject



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

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

#ready?Boolean

Returns:

  • (Boolean)


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

def ready?
  state == "available"
end

#saveObject



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

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