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

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Configurations

Creates a new launch configuration



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

def initialize(attributes={})
  super
end

Instance Method Details

#allObject



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

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



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

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