Sha256: f3ed06aa1e575fadfc80f990560036dd4a330a79aa542a07ed32e6938abd3d59

Contents?: true

Size: 673 Bytes

Versions: 23

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

23 entries across 23 versions & 1 rubygems

Version Path
fog-brightbox-1.1.0 lib/fog/brightbox/requests/compute/get_user.rb
fog-brightbox-1.0.0 lib/fog/brightbox/requests/compute/get_user.rb
fog-brightbox-1.0.0.rc2 lib/fog/brightbox/requests/compute/get_user.rb