Sha256: 52c8c7052bb6be6f72e319ede116e9bcaf4d16806caf2f561fc7c79304bd55c8
Contents?: true
Size: 490 Bytes
Versions: 23
Compression:
Stored size: 490 Bytes
Contents
require "fog/brightbox/models/compute/database_type" module Fog module Brightbox class Compute class DatabaseTypes < Fog::Collection model Fog::Brightbox::Compute::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
23 entries across 23 versions & 1 rubygems