Sha256: 2fa0271ca3df139c85b4b2dc0ec2b361ca188803c3905eae8e011ceacff6f1c8

Contents?: true

Size: 578 Bytes

Versions: 114

Compression:

Stored size: 578 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module IAM

        class LoginProfile < Fog::Parsers::Base

          def reset
            @response = { 'LoginProfile' => {} }
          end

          def end_element(name)
            case name
            when 'UserName'
              @response['LoginProfile']['UserName'] = value
            when 'CreateDate'
              @response['LoginProfile']['CreateDate'] = Time.parse(value)
            when 'RequestId'
              @response[name] = value
            end
          end

        end
      end
    end
  end
end

Version data entries

114 entries across 114 versions & 19 rubygems

Version Path
tag-fog-1.0.1 lib/fog/aws/parsers/iam/login_profile.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/iam/login_profile.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/iam/login_profile.rb
fog-1.0.0 lib/fog/aws/parsers/iam/login_profile.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/iam/login_profile.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/iam/login_profile.rb
fog-0.11.0 lib/fog/aws/parsers/iam/login_profile.rb
fog-0.10.0 lib/fog/aws/parsers/iam/login_profile.rb
fog4encbs-0.9.0.1 lib/fog/aws/parsers/iam/login_profile.rb
fog4encbs-0.9.0 lib/fog/aws/parsers/iam/login_profile.rb
fog-0.9.0 lib/fog/aws/parsers/iam/login_profile.rb
fog-0.8.2 lib/fog/aws/parsers/iam/login_profile.rb
fog-0.8.1 lib/fog/aws/parsers/iam/login_profile.rb
fog-0.8.0 lib/fog/aws/parsers/iam/login_profile.rb