# File lib/fog/aws/models/auto_scaling/instances.rb, line 10 def all data = [] next_token = nil loop do result = service.describe_auto_scaling_instances('NextToken' => next_token).body['DescribeAutoScalingInstancesResult'] data += result['AutoScalingInstances'] next_token = result['NextToken'] break if next_token.nil? end load(data) end
Generated with the Darkfish Rdoc Generator 2.