1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 61 62 63 64 65 66 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
|
module Fog
module Parsers
module AWS
module CloudWatch
class DescribeAlarms < Fog::Parsers::Base
def reset
@response = { 'DescribeAlarmsResult' => {'MetricAlarms' => []}, 'ResponseMetadata' => {} }
reset_metric_alarms
end
def reset_metric_alarms
@metric_alarms = {
'Dimensions' => [],
'AlarmActions' => [],
'OKActions' => [],
'InsufficientDataActions' => []
}
end
def reset_dimension
@dimension = {}
end
def reset_alarm_actions
@alarm_actions = {}
end
def reset_ok_actions
@ok_actions = {}
end
def reset_insufficient_data_actions
@insufficient_data_actions = {}
end
def start_element(name, attrs = [])
super
case name
when 'Dimensions'
@in_dimensions = true
when 'AlarmActions'
@in_alarm_actions = true
when 'OKActions'
@in_ok_actions = true
when 'InsufficientDataActions'
@in_insufficient_data_actions = true
when 'member'
reset_dimension if @in_dimensions
reset_alarm_actions if @in_alarm_actions
reset_ok_actions if @in_ok_actions
reset_insufficient_data_actions if @in_insufficient_data_actions
end
end
def end_element(name)
case name
when 'Name', 'Value'
@dimension[name] = value
when 'AlarmConfigurationUpdatedTimestamp', 'StateUpdatedTimestamp'
@metric_alarms[name] = Time.parse value
when 'Period', 'EvaluationPeriods'
@metric_alarms[name] = value.to_i
when 'Threshold'
@metric_alarms[name] = value.to_f
when 'AlarmActions'
@in_alarm_actions = false
when 'OKActions'
@in_ok_actions = false
when 'InsufficientDataActions'
@in_insufficient_data_actions = false
when 'AlarmName', 'Namespace', 'MetricName', 'AlarmDescription', 'AlarmArn', 'Unit',
'StateValue', 'Statistic', 'ComparisonOperator', 'StateReason', 'ActionsEnabled'
@metric_alarms[name] = value
when 'StateUpdatedTimestamp', 'AlarmConfigurationUpdatedTimestamp'
@metric_alarms[name] = Time.parse value
when 'Dimensions'
@in_dimensions = false
when 'RequestId'
@response['ResponseMetadata'][name] = value
when 'NextToken'
@response['ResponseMetadata'][name] = value
when 'member'
if @in_dimensions
@metric_alarms['Dimensions'] << @dimension
elsif @in_alarm_actions
@metric_alarms['AlarmActions'] << value.to_s.strip
elsif @in_ok_actions
@metric_alarms['OKActions'] << value.to_s.strip
elsif @in_insufficient_data_actions
@metric_alarms['InsufficientDataActions'] << value.to_s.strip
elsif @metric_alarms.key?('AlarmName')
@response['DescribeAlarmsResult']['MetricAlarms'] << @metric_alarms
reset_metric_alarms
elsif @response['DescribeAlarmsResult']['MetricAlarms'].last != nil
@response['DescribeAlarmsResult']['MetricAlarms'].last.merge!( @metric_alarms)
end
end
end
end
end
end
end
end
|