Sha256: f3ed06aa1e575fadfc80f990560036dd4a330a79aa542a07ed32e6938abd3d59
Contents?: true
Size: 673 Bytes
Versions: 22
Compression:
Stored size: 673 Bytes
Contents
module Fog module Brightbox class Compute class Real # Get full details of the user. # # @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/#user_get_user # def get_user(identifier, options = {}) wrapped_request("get", "/1.0/users/#{identifier}", [200], options) end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems