class Fog::Compute::Brightbox::DatabaseTypes
Public Instance Methods
all()
click to toggle source
# File lib/fog/brightbox/models/compute/database_types.rb, line 10 def all data = service.list_database_types load(data) end
get(identifier)
click to toggle source
# File lib/fog/brightbox/models/compute/database_types.rb, line 15 def get(identifier) data = service.get_database_type(identifier) new(data) rescue Excon::Errors::NotFound nil end