Sha256: d6e4121da794a6000b342cb7b198cef118b478a59d4d1e83974b531130923a1e

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

module Fog
  module Compute
    class Brightbox
      class Real
        # Update some details of your user profile.
        #
        # @param [String] identifier Unique reference to identify the resource
        # @param [Hash] options
        # @option options [String] :name
        # @option options [String] :email_address
        # @option options [String] :ssh_key
        # @option options [String] :password A password string that conforms to the minimum requirements
        # @option options [String] :password_confirmation A password string that conforms to the minimum requirements
        #
        # @return [Hash] if successful Hash version of JSON object
        # @return [NilClass] if no options were passed
        #
        # @see https://api.gb1.brightbox.com/1.0/#user_update_user
        #
        def update_user(identifier, options)
          return nil if identifier.nil? || identifier == ""
          return nil if options.empty? || options.nil?
          wrapped_request("put", "/1.0/users/#{identifier}", [200], options)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-brightbox-0.9.0/lib/fog/brightbox/requests/compute/update_user.rb
fog-brightbox-0.9.0 lib/fog/brightbox/requests/compute/update_user.rb
fog-brightbox-0.8.0 lib/fog/brightbox/requests/compute/update_user.rb
fog-brightbox-0.7.2 lib/fog/brightbox/requests/compute/update_user.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-brightbox-0.7.1/lib/fog/brightbox/requests/compute/update_user.rb
fog-brightbox-0.7.1 lib/fog/brightbox/requests/compute/update_user.rb
fog-brightbox-0.7.0 lib/fog/brightbox/requests/compute/update_user.rb