Sha256: 6ef8d54fe0e1a93f49aa1141492ec7aa9a9505434c8d0df2e4bbde0376515eb7

Contents?: true

Size: 1.19 KB

Versions: 98

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module AWS
    class CloudWatch
      class Real

        require 'fog/aws/parsers/cloud_watch/describe_alarm_history'

        # Retrieves history for the specified alarm
        # ==== Options
        # * AlarmName<~String>: The name of the alarm
        # * EndDate<~DateTime>: The ending date to retrieve alarm history
        # * HistoryItemType<~String>: The type of alarm histories to retrieve
        # * MaxRecords<~Integer>: The maximum number of alarm history records to retrieve
        # * NextToken<~String> The token returned by a previous call to indicate that there is more data available
        # * StartData<~DateTime>: The starting date to retrieve alarm history
        # 
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/index.html?API_DescribeAlarmHistory.html
        #

        def describe_alarm_history(options={})
          request({
              'Action'    => 'DescribeAlarmHistory',
              :parser     => Fog::Parsers::AWS::CloudWatch::DescribeAlarmHistory.new
            }.merge(options))
        end
      end       
    end
  end
end

Version data entries

98 entries across 98 versions & 17 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-1.20.0 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-1.19.0 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb