Sha256: 894aaefc694e22462228d20f29defaa3647213c458f96f5f691f8980287a7a44
Contents?: true
Size: 586 Bytes
Versions: 7
Compression:
Stored size: 586 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of the API client. # # @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/#api_client_get_api_client # def get_api_client(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/api_clients/#{identifier}", [200]) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems