File: create_user.rb

package info (click to toggle)
ruby-fog-aws 3.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,816 kB
  • sloc: ruby: 68,587; makefile: 6
file content (59 lines) | stat: -rw-r--r-- 1,808 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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].key?(user_name)
            raise Fog::AWS::IAM::EntityAlreadyExists.new "User with name #{user_name} already exists."
          end

          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]).strip,
            },
            'RequestId' => Fog::AWS::Mock.request_id
            }
          end
        end
      end
    end
  end
end