Sha256: f24d5139e84f7a72da7e0d24c18aeb0bd1687dec913755f31b70d1052f6e250d
Contents?: true
Size: 490 Bytes
Versions: 16
Compression:
Stored size: 490 Bytes
Contents
require "fog/brightbox/models/compute/database_type" module Fog module Compute class Brightbox class DatabaseTypes < Fog::Collection model Fog::Compute::Brightbox::DatabaseType def all data = service.list_database_types load(data) end def get(identifier) data = service.get_database_type(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems