Can REST get suppressed and maintenance alarms?
Release : 21.2
Component : Spectrum OneClick
Suppressed alarms are DISABLED by default. These should remain disabled as it would create hundreds of thousands of more alarms than normal thus causing performance issues.
Suppressed and Maintenance are also conditions. A REST call could be created to gather devices by condition.
XML Body:
<?xml version="1.0" encoding="UTF-8"?><!-- CA Technologies, Inc. One CA Plaza Islandia, NY 11749 USA Copyright (c) 2012 CA Technologies, Inc. All rights reserved. IN NO EVENT SHALL CA TECHNOLOGIES INCORPORATED BE LIABLE FOR ANY INCIDENTAL, INDIRECT, SPECIAL, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING BUT NOT LIMITED TO LOST PROFITS) ARISING OUT OF OR RELATED TO THIS SOFTWARE, EVEN IF CA TECHNOLOGIES INCORPORATED HAS BEEN ADVISED OF, KNOWN, OR SHOULD HAVE KNOWN, THE POSSIBILITY OF SUCH DAMAGES.-->
<rs:model-request throttlesize="1000" xmlns:rs="http://www.ca.com/spectrum/restful/schema/request" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ca.com/spectrum/restful/schema/request ../../../xsd/Request.xsd ">
<rs:target-models>
<rs:models-search>
<rs:search-criteria xmlns="http://www.ca.com/spectrum/restful/schema/filter">
<devices-only-search />
<filtered-models>
<equals>
<attribute id="0x1000a">
<value>5</value>
</attribute>
</equals>
</filtered-models>
</rs:search-criteria>
</rs:models-search>
</rs:target-models>
<rs:requested-attribute id="0x1006e" />
</rs:model-request>
Then Post http://<hostname><:portnumber>/spectrum/restful/models
You would have to use a REST application to do this. Its not possible in a browser.
Maintenance alarms could be retrieved using REST as well.