1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/iam/paged_collection.rb
2015-09-02 10:31:22 -07:00

56 lines
1.3 KiB
Ruby

module Fog
module AWS
class IAM
class PagedCollection < Fog::Collection
def self.inherited(klass)
klass.send(:attribute, :truncated, :aliases => 'IsTruncated', :type => :boolean)
klass.send(:attribute, :marker, :aliases => 'Marker')
super
end
def each_entry(*args, &block)
to_a.each(*args, &block)
end
def each(options={})
limit = options[:limit] || 100
if !block_given?
self
else
subset = dup.all
subset.each_entry { |f| yield f }
while subset.truncated
subset.
all(:marker => subset.marker, :limit => limit).
each_entry { |f| yield f }
end
self
end
end
protected
def page_params(options={})
marker = options.fetch(:marker) { options.fetch('Marker') { self.marker } }
limit = options.fetch(:limit) { options['MaxItems'] }
params = {}
if marker && !marker.empty?
params.merge!('Marker' => marker)
end
if limit
params.merge!('MaxItems' => limit)
end
params
end
end
end
end
end