Class: Fog::Compute::Brightbox::DatabaseSnapshots

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/brightbox/models/compute/database_snapshots.rb

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
# File 'lib/fog/brightbox/models/compute/database_snapshots.rb', line 9

def all
  data = service.list_database_snapshots
  load(data)
end

#get(identifier) ⇒ Object



14
15
16
17
18
19
# File 'lib/fog/brightbox/models/compute/database_snapshots.rb', line 14

def get(identifier)
  data = service.get_database_snapshot(identifier)
  new(data)
rescue Excon::Errors::NotFound
  nil
end