class Fog::AWS::AutoScaling::Policies

Public Class Methods

new(attributes={}) click to toggle source

Creates a new scaling policy.

Calls superclass method
# File lib/fog/aws/models/auto_scaling/policies.rb, line 12
def initialize(attributes={})
  self.filters = attributes
  super(attributes)
end

Public Instance Methods

all(filters_arg = filters) click to toggle source
# File lib/fog/aws/models/auto_scaling/policies.rb, line 17
def all(filters_arg = filters)
  data = []
  next_token = nil
  self.filters = filters_arg
  loop do
    result = service.describe_policies(filters.merge('NextToken' => next_token)).body['DescribePoliciesResult']
    data += result['ScalingPolicies']
    next_token = result['NextToken']
    break if next_token.nil?
  end
  load(data)
end
get(identity, auto_scaling_group = nil) click to toggle source
# File lib/fog/aws/models/auto_scaling/policies.rb, line 30
def get(identity, auto_scaling_group = nil)
  data = service.describe_policies('PolicyNames' => identity, 'AutoScalingGroupName' => auto_scaling_group).body['DescribePoliciesResult']['ScalingPolicies'].first
  new(data) unless data.nil?
end