mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
17 lines
439 B
Ruby
17 lines
439 B
Ruby
|
require 'fog/aws/models/cloud_watch/alarm_history'
|
||
|
|
||
|
module Fog
|
||
|
module AWS
|
||
|
class CloudWatch
|
||
|
class AlarmHistories < Fog::Collection
|
||
|
model Fog::AWS::CloudWatch::AlarmHistory
|
||
|
|
||
|
def all(conditions={})
|
||
|
data = service.describe_alarm_history(conditions).body['DescribeAlarmHistoryResult']['AlarmHistoryItems']
|
||
|
load(data) # data is an array of attribute hashes
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|