Sha256: 680595ea92557abf1a7f93a1a3034374f417f1529771ae4a1fca136971a73f2b
Contents?: true
Size: 587 Bytes
Versions: 66
Compression:
Stored size: 587 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
66 entries across 66 versions & 4 rubygems