Methods

Class/Module Index [+]

Quicksearch

Fog::AWS::AutoScaling::Groups

Public Class Methods

new(attributes={}) click to toggle source

Creates a new auto scaling group.

# File lib/fog/aws/models/auto_scaling/groups.rb, line 11
def initialize(attributes={})
  super
end

Public Instance Methods

all() click to toggle source
# File lib/fog/aws/models/auto_scaling/groups.rb, line 15
def all
  data = []
  next_token = nil
  loop do
    result = service.describe_auto_scaling_groups('NextToken' => next_token).body['DescribeAutoScalingGroupsResult']
    data += result['AutoScalingGroups']
    next_token = result['NextToken']
    break if next_token.nil?
  end
  load(data)
end
get(identity) click to toggle source
# File lib/fog/aws/models/auto_scaling/groups.rb, line 27
def get(identity)
  data = service.describe_auto_scaling_groups('AutoScalingGroupNames' => identity).body['DescribeAutoScalingGroupsResult']['AutoScalingGroups'].first
  new(data) unless data.nil?
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.