Sha256: a7b1f20b6e54f0235d30dee42ac49a8a466f72dec89f8e3411131d5839ccf231
Contents?: true
Size: 604 Bytes
Versions: 18
Compression:
Stored size: 604 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get details of the database server type. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#database_type_get_database_type # def get_database_type(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/database_types/#{identifier}", [200]) end end end end end
Version data entries
18 entries across 18 versions & 3 rubygems