Sha256: 0fb591ca3934b207c9f5043e4a31a1d477d5aa52b14b602a4d68976b3331457a
Contents?: true
Size: 1.01 KB
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-1.22.0 | lib/fog/aws/requests/cloud_watch/set_alarm_state.rb |
fog-1.21.0 | lib/fog/aws/requests/cloud_watch/set_alarm_state.rb |