Sha256: f9aa4df1375cdd005b14d646321117dba9aef4b5c502f6243c3df2e7d58f8062
Contents?: true
Size: 727 Bytes
Versions: 2
Compression:
Stored size: 727 Bytes
Contents
module Fog module Parsers module AWS module IAM require 'fog/aws/parsers/iam/base_instance_profile' class ListInstanceProfiles < Fog::Parsers::AWS::IAM::BaseInstanceProfile def reset super @response = {'InstanceProfiles' => []} end def finished_instance_profile(profile) @response['InstanceProfiles'] << profile end def end_element(name) case name when 'RequestId', 'Marker' @response[name] = value when 'IsTruncated' @response[name] = (value == 'true') end super end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-1.22.0 | lib/fog/aws/parsers/iam/list_instance_profiles.rb |
fog-1.21.0 | lib/fog/aws/parsers/iam/list_instance_profiles.rb |