# File lib/fog/aws/models/auto_scaling/groups.rb, line 17 def all(filters = filters) data = [] next_token = nil self.filters = filters loop do result = service.describe_auto_scaling_groups(filters.merge('NextToken' => next_token)).body['DescribeAutoScalingGroupsResult'] data += result['AutoScalingGroups'] next_token = result['NextToken'] break if next_token.nil? end load(data) end
Generated with the Darkfish Rdoc Generator 2.