Sha256: 096080809fae20e88d3e3f0fd0f644531be3140c96c9d7e57a2aeeb9ee45bbf0
Contents?: true
Size: 655 Bytes
Versions: 43
Compression:
Stored size: 655 Bytes
Contents
require 'fog/openstack/models/model' module Fog module Monitoring class OpenStack class AlarmState < Fog::OpenStack::Model identity :id attribute :alarm_id attribute :metrics attribute :old_state attribute :new_state attribute :reason attribute :reason_data attribute :timestamp attribute :sub_alarms def patch(options) requires :id merge_attributes( service.list_alarm_state_history_for_specific_alarm(id, options) ) self end def to_s name end end end end end
Version data entries
43 entries across 41 versions & 3 rubygems