Sha256: 7151f3c48d65376a187dd22c87bc92d7fc64f55b65c92e78c8bac82cac566690

Contents?: true

Size: 1.17 KB

Versions: 98

Compression:

Stored size: 1.17 KB

Contents

module Fog
  module Parsers
    module AWS
      module IAM
        class RoleParser < Fog::Parsers::Base
          def reset
            @role = {}
            @stack = []
          end

          def start_element(name,attrs = [])
            case name
            when 'Roles'
              @stack << name
            when 'Role'
              @role = {}
            when 'member'
              if @stack.last == 'Roles'
                @role = {}
              end
            end
            super
          end

          def end_element(name)
            case name
            when 'Arn', 'AssumeRolePolicyDocument', 'Path', 'RoleId','RoleName'
              @role[name] = value if @role
            when 'CreateDate'
              @role[name] = Time.parse(value) if @role
            when 'Role'
              finished_role(@role)
              @role = nil
            when 'Roles'
              if @stack.last == 'Roles'
                @stack.pop
              end
            when 'member'
              if @stack.last == 'Roles'
                finished_role(@role)
                @role = nil
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

98 entries across 96 versions & 6 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.29.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.28.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.27.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.26.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.25.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.24.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.23.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.22.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.21.1 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.21.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.20.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.19.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.18.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.17.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.16.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.15.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.14.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.13.0 lib/fog/aws/parsers/iam/role_parser.rb
fog-aws-3.12.0 lib/fog/aws/parsers/iam/role_parser.rb