Sha256: 93102dd58fb08d83c8f19a9a50178ec561d96f5415fe49f34501f49e577efc97

Contents?: true

Size: 1.04 KB

Versions: 81

Compression:

Stored size: 1.04 KB

Contents

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

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

        attribute :filters

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

        def all(filters_arg = filters)
          data = []
          next_token = nil
          filters = filters_arg
          loop do
            result = service.describe_auto_scaling_groups(filters.merge('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

81 entries across 79 versions & 3 rubygems

Version Path
fog-aws-0.0.5 lib/fog/aws/models/auto_scaling/groups.rb