Sha256: 1ac843e590b7e0bb23d5331911c9898c56364e750ec0b1d67e3d064caaeb2ea3

Contents?: true

Size: 930 Bytes

Versions: 22

Compression:

Stored size: 930 Bytes

Contents

require 'fog/aws/models/auto_scaling/group'

module Fog
  module AWS
    class AutoScaling
      class Groups < Fog::Collection

        model Fog::AWS::AutoScaling::Group

        # Creates a new auto scaling group.
        def initialize(attributes={})
          super
        end

        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

        def get(identity)
          data = service.describe_auto_scaling_groups('AutoScalingGroupNames' => identity).body['DescribeAutoScalingGroupsResult']['AutoScalingGroups'].first
          new(data) unless data.nil?
        end

      end
    end
  end
end

Version data entries

22 entries across 22 versions & 6 rubygems

Version Path
fog-maestrodev-1.8.0.20130111070250 lib/fog/aws/models/auto_scaling/groups.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/aws/models/auto_scaling/groups.rb