Class: Fog::AWS::AutoScaling::Configurations

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #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

#initialize(attributes = {}) ⇒ Configurations

Creates a new launch configuration



11
12
13
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 11

def initialize(attributes={})
  super
end

Instance Method Details

#allObject



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 15

def all
  data = []
  next_token = nil
  loop do
    result = service.describe_launch_configurations('NextToken' => next_token).body['DescribeLaunchConfigurationsResult']
    data += result['LaunchConfigurations']
    next_token = result['NextToken']
    break if next_token.nil?
  end
  load(data)
end

#get(identity) ⇒ Object



27
28
29
30
# File 'lib/fog/aws/models/auto_scaling/configurations.rb', line 27

def get(identity)
  data = service.describe_launch_configurations('LaunchConfigurationNames' => identity).body['DescribeLaunchConfigurationsResult']['LaunchConfigurations'].first
	  new(data) unless data.nil?
end