Sha256: f33dbe232157ef052b2bfcf9edca7e1f17d3a5855aa1f1b89cbc0deafa9f1066
Contents?: true
Size: 842 Bytes
Versions: 42
Compression:
Stored size: 842 Bytes
Contents
require 'fog/aws/models/auto_scaling/instance' module Fog module AWS class AutoScaling class Instances < Fog::Collection 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 end end end end
Version data entries
42 entries across 42 versions & 13 rubygems