Sha256: 1c4cca31cabf493eb38f3aad5074ea18fe5853bca0f6e6f4bdd880fe98102334

Contents?: true

Size: 1.01 KB

Versions: 98

Compression:

Stored size: 1.01 KB

Contents

module Fog
  module AWS
    class CloudWatch
      class Real     

        require 'fog/aws/parsers/cloud_watch/set_alarm_state'

        # Temporarily sets the state of an alarm
        # ==== Options
        # * AlarmName<~String>: The names of the alarm
        # * StateReason<~String>: The reason that this alarm is set to this specific state (in human-readable text format)
        # * StateReasonData<~String>: The reason that this alarm is set to this specific state (in machine-readable JSON format)
        # * StateValue<~String>: The value of the state
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/API_SetAlarmState.html
        #

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

Version data entries

98 entries across 98 versions & 17 rubygems

Version Path
fog-1.15.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
gapinc-fog-1.14.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.14.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.13.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
gapinc-fog-1.12.1.2 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
gapinc-fog-1.12.1.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
gapinc-fog-1.12.1a lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
gapinc-fog-1.12.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.12.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.12.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
hpfog-0.0.20 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-nirvanix-1.8.2 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.11.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.11.0 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-nirvanix-1.8.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-1.10.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
fog-parser-fix-1.6.1 lib/fog/aws/requests/cloud_watch/set_alarm_state.rb