Class: Fog::AWS::AutoScaling::Policies

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes = {}) ⇒ Policies

Creates a new scaling policy.



12
13
14
15
# File 'lib/fog/aws/models/auto_scaling/policies.rb', line 12

def initialize(attributes={})
  self.filters = attributes
  super(attributes)
end

Instance Method Details

#all(filters = filters) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/aws/models/auto_scaling/policies.rb', line 17

def all(filters = filters)
  data = []
  next_token = nil
  self.filters = filters
  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) ⇒ Object



30
31
32
33
# 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