Sha256: b218748fb1d0bb8e928f3024ee1bfff54459459015615674c7bc3b90110bc4f0
Contents?: true
Size: 763 Bytes
Versions: 22
Compression:
Stored size: 763 Bytes
Contents
module Fog module Brightbox class Compute class Real # Get full details of the API client. # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @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, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/api_clients/#{identifier}", [200], options) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems