Sha256: 0947c06eabad18f2b4a4e0448edd16b1f62702efc4f4a6de49e9911036b66347

Contents?: true

Size: 897 Bytes

Versions: 98

Compression:

Stored size: 897 Bytes

Contents

module Fog
  module AWS
    class CloudWatch
      class Real     

        require 'fog/aws/parsers/cloud_watch/enable_alarm_actions'

        # Enables actions for the specified alarms
        # ==== Options
        # * AlarmNames<~Array>: The names of the alarms to enable actions for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/API_EnableAlarmActions.html
        #

        def enable_alarm_actions(alarm_names)
          options = {}
          options.merge!(AWS.indexed_param('AlarmNames.member.%d', [*alarm_names]))
          request({
              'Action'    => 'EnableAlarmActions',
              :parser     => Fog::Parsers::AWS::CloudWatch::EnableAlarmActions.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/enable_alarm_actions.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-1.20.0 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-1.19.0 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb