2011-06-12 16:07:42 -04:00
|
|
|
require 'fog/aws/models/auto_scaling/instance'
|
2011-06-21 17:15:33 -04:00
|
|
|
|
2011-06-12 16:07:42 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class AutoScaling
|
|
|
|
class Instances < Fog::Collection
|
2011-06-21 17:15:33 -04:00
|
|
|
|
2011-06-12 16:07:42 -04:00
|
|
|
model Fog::AWS::AutoScaling::Instance
|
|
|
|
|
|
|
|
def all
|
|
|
|
data = []
|
|
|
|
next_token = nil
|
|
|
|
loop do
|
|
|
|
result = connection.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
|
|
|
|
|
|
|
|
def get(identity)
|
|
|
|
data = connection.describe_auto_scaling_instances('InstanceIds' => identity).body['DescribeAutoScalingInstancesResult']['AutoScalingInstances'].first
|
|
|
|
new(data) unless data.nil?
|
|
|
|
end
|
2011-06-21 17:15:33 -04:00
|
|
|
|
2011-06-12 16:07:42 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|