Sha256: 0d859298a024b6ca8c0e5dbf27a448506f0ed3161b84a30a24a506123b6c70c3

Contents?: true

Size: 1.96 KB

Versions: 3

Compression:

Stored size: 1.96 KB

Contents

module Fog
  module AWS
    class IAM
      class Real

        require 'fog/aws/parsers/iam/create_user'

        # Create a new user
        # 
        # ==== Parameters
        # * user_name<~String>: name of the user to create (do not include path)
        # * path<~String>: optional path to group, defaults to '/'
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'User'<~Hash>:
        #       * 'Arn'<~String> -
        #       * 'Path'<~String> -
        #       * 'UserId'<~String> -
        #       * 'UserName'<~String> -
        #     * 'RequestId'<~String> - Id of the request
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/IAM/latest/APIReference/API_CreateUser.html
        #
        def create_user(user_name, path = '/')
          request(
            'Action'    => 'CreateUser',
            'UserName'  => user_name,
            'Path'      => path,
            :parser     => Fog::Parsers::AWS::IAM::CreateUser.new
          )
        end

      end

      class Mock
        def create_user(user_name, path='/')
          if data[:users].has_key? user_name
            raise Fog::AWS::IAM::EntityAlreadyExists.new "User with name #{user_name} already exists."
          else
            data[:users][user_name][:path] = path
            Excon::Response.new.tap do |response|
              response.status = 200
              response.body = { 'User' => {
                                           "UserId"   => data[:users][user_name][:user_id],
                                           "Path"     => path,
                                           "UserName" => user_name,
                                           "Arn"      => data[:users][user_name][:arn]
                                           },
                                'RequestId' => Fog::AWS::Mock.request_id
                               }
            end
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/create_user.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/create_user.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/iam/create_user.rb