Class: Fog::Parsers::AWS::AutoScaling::DescribeAutoScalingGroups
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::AWS::AutoScaling::DescribeAutoScalingGroups
show all
- Defined in:
- lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value
Instance Method Details
#end_element(name) ⇒ Object
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 67
def end_element(name)
case name
when 'member'
if @in_availability_zones
@auto_scaling_group['AvailabilityZones'] << value
elsif @in_enabled_metrics
@auto_scaling_group['EnabledMetrics'] << @enabled_metric
reset_enabled_metric
elsif @in_instances
@auto_scaling_group['Instances'] << @instance
reset_instance
elsif @in_load_balancer_names
@auto_scaling_group['LoadBalancerNames'] << value
elsif @in_suspended_processes
@auto_scaling_group['SuspendedProcesses'] << @suspended_process
reset_suspended_process
elsif @in_tags
@auto_scaling_group['Tags'] << @tag
reset_tag
elsif @in_termination_policies
@auto_scaling_group['TerminationPolicies'] << value
else
@results['AutoScalingGroups'] << @auto_scaling_group
reset_auto_scaling_group
end
when 'AvailabilityZones'
@in_availability_zones = false
when 'Granularity', 'Metric'
@enabled_metric[name] = value
when 'EnabledMetrics'
@in_enabled_metrics = false
when 'AvailabilityZone', 'HealthStatus', 'InstanceId', 'LifecycleState'
@instance[name] = value
when 'Instances'
@in_instances = false
when 'LoadBalancerNames'
@in_load_balancer_names = false
when 'ProcessName', 'SuspensionReason'
@suspended_process[name] = value
when 'SuspendedProcesses'
@in_suspended_processes = false
when 'Key', 'ResourceId', 'ResourceType', 'Value'
@tag[name] = value
when 'PropagateAtLaunch'
@tag[name] = (value == 'true')
when 'Tags'
@in_tags = false
when 'TerminationPolicies'
@in_termination_policies = false
when 'LaunchConfigurationName'
if @in_instances
@instance[name] = value
else
@auto_scaling_group[name] = value
end
when 'AutoScalingGroupARN', 'AutoScalingGroupName'
@auto_scaling_group[name] = value
when 'CreatedTime'
@auto_scaling_group[name] = Time.parse(value)
when 'DefaultCooldown', 'DesiredCapacity', 'HealthCheckGracePeriod'
@auto_scaling_group[name] = value.to_i
when 'HealthCheckType'
@auto_scaling_group[name] = value
when 'MaxSize', 'MinSize'
@auto_scaling_group[name] = value.to_i
when 'PlacementGroup', 'VPCZoneIdentifier'
@auto_scaling_group[name] = value
when 'NextToken'
@results[name] = value
when 'RequestId'
@response['ResponseMetadata'][name] = value
when 'DescribeAutoScalingGroupsResponse'
@response['DescribeAutoScalingGroupsResult'] = @results
end
end
|
#reset ⇒ Object
8
9
10
11
12
13
14
15
16
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 8
def reset
reset_auto_scaling_group
reset_enabled_metric
reset_instance
reset_suspended_process
reset_tag
@results = { 'AutoScalingGroups' => [] }
@response = { 'DescribeAutoScalingGroupsResult' => {}, 'ResponseMetadata' => {} }
end
|
#reset_auto_scaling_group ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 18
def reset_auto_scaling_group
@auto_scaling_group = {
'AvailabilityZones' => [],
'EnabledMetrics' => [],
'Instances' => [],
'LoadBalancerNames' => [],
'SuspendedProcesses' => [],
'Tags' => [],
'TerminationPolicies' => []
}
end
|
#reset_enabled_metric ⇒ Object
30
31
32
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 30
def reset_enabled_metric
@enabled_metric = {}
end
|
#reset_instance ⇒ Object
34
35
36
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 34
def reset_instance
@instance = {}
end
|
#reset_suspended_process ⇒ Object
38
39
40
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 38
def reset_suspended_process
@suspended_process = {}
end
|
#reset_tag ⇒ Object
42
43
44
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 42
def reset_tag
@tag = {}
end
|
#start_element(name, attrs = []) ⇒ Object
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 46
def start_element(name, attrs = [])
super
case name
when 'member'
when 'AvailabilityZones'
@in_availability_zones = true
when 'EnabledMetrics'
@in_enabled_metrics = true
when 'Instances'
@in_instances = true
when 'LoadBalancerNames'
@in_load_balancer_names = true
when 'SuspendedProcesses'
@in_suspended_processes = true
when 'Tags'
@in_tags = true
when 'TerminationPolicies'
@in_termination_policies = true
end
end
|