Class: Fog::AWS::AutoScaling::Instances

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/aws/models/auto_scaling/instances.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



10
11
12
13
14
15
16
17
18
19
20
# 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

#get(identity) ⇒ Object



22
23
24
25
# File 'lib/fog/aws/models/auto_scaling/instances.rb', line 22

def get(identity)
  data = service.describe_auto_scaling_instances('InstanceIds' => identity).body['DescribeAutoScalingInstancesResult']['AutoScalingInstances'].first
  new(data) unless data.nil?
end