# File lib/fog/brightbox/models/compute/database_snapshots.rb, line 10 def all data = service.list_database_snapshots load(data) end
# File lib/fog/brightbox/models/compute/database_snapshots.rb, line 15 def get(identifier) data = service.get_database_snapshot(identifier) new(data) rescue Excon::Errors::NotFound nil end