Class: Fog::Parsers::AWS::AutoScaling::DescribePolicies
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::AWS::AutoScaling::DescribePolicies
show all
- Defined in:
- lib/fog/aws/parsers/auto_scaling/describe_policies.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Instance Method Details
#end_element(name) ⇒ Object
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_policies.rb', line 32
def end_element(name)
case name
when 'AlarmARN', 'AlarmName'
@alarm[name] = value
when 'AdjustmentType', 'AutoScalingGroupName', 'PolicyARN', 'PolicyName'
@scaling_policy[name] = value
when 'Cooldown', 'ScalingAdjustment'
@scaling_policy[name] = value.to_i
when 'NextToken'
@results[name] = value
when 'RequestId'
@response['ResponseMetadata'][name] = value
when 'DescribePoliciesResponse'
@response['DescribePoliciesResult'] = @results
when 'Alarms'
if @in_alarms == true
@scaling_policy['Alarms'] << @alarm
reset_alarm
end
when 'member'
@results['ScalingPolicies'] << @scaling_policy
reset_scaling_policy
end
end
|
#reset ⇒ Object
8
9
10
11
12
13
14
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_policies.rb', line 8
def reset
reset_scaling_policy
reset_alarm
@results = { 'ScalingPolicies' => [] }
@response = { 'DescribePoliciesResult' => {}, 'ResponseMetadata' => {} }
@in_alarms = false
end
|
#reset_alarm ⇒ Object
20
21
22
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_policies.rb', line 20
def reset_alarm
@alarm = {}
end
|
#reset_scaling_policy ⇒ Object
16
17
18
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_policies.rb', line 16
def reset_scaling_policy
@scaling_policy = { 'Alarms' => [] }
end
|
#start_element(name, attrs = []) ⇒ Object
24
25
26
27
28
29
30
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_policies.rb', line 24
def start_element(name, attrs = [])
super
case name
when 'Alarms'
@in_alarms = true
end
end
|