Class: Fog::Parsers::AWS::AutoScaling::DescribeAutoScalingGroups

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



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
154
155
156
157
158
159
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 68

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_target_groups
      @auto_scaling_group['TargetGroupARNs'] << value
    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 'TargetGroupARNs'
    @in_target_groups = 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

#resetObject



6
7
8
9
10
11
12
13
14
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 6

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_groupObject



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 16

def reset_auto_scaling_group
  @auto_scaling_group = {
    'AvailabilityZones' => [],
    'EnabledMetrics' => [],
    'Instances' => [],
    'LoadBalancerNames' => [],
    'SuspendedProcesses' => [],
    'Tags' => [],
    'TargetGroupARNs' => [],
    'TerminationPolicies' => []
  }
end

#reset_enabled_metricObject



29
30
31
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 29

def reset_enabled_metric
  @enabled_metric = {}
end

#reset_instanceObject



33
34
35
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 33

def reset_instance
  @instance = {}
end

#reset_suspended_processObject



37
38
39
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 37

def reset_suspended_process
  @suspended_process = {}
end

#reset_tagObject



41
42
43
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 41

def reset_tag
  @tag = {}
end

#start_element(name, attrs = []) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb', line 45

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 'TargetGroupARNs'
    @in_target_groups = true
  when 'TerminationPolicies'
    @in_termination_policies = true
  end
end