Retrieves configuration for automatic deletion periods of alarms
Since Product Version: 3.2
Resource Information
Rate Limiting? |
Yes |
Sorting? |
No |
Paging? |
No |
Filtering? |
No |
Aggregation? |
No |
Response Formats |
xml json |
User Group |
NBI Credential |
HTTP Methods |
GET |
DevNet Discussions
Resource URL
/webacs/api/v1/op/settings/alarms/alarmDeletionPeriodsResponse Parameters
Attribute | Description |
---|---|
activeAndCleared Integer |
Active and cleared alarms automatic deletion period (in days) |
allEvents Integer |
All events automatic deletion period (in days) |
clearedNonSecurityAlarms Integer |
Cleared non-security alarms automatic deletion period (in days) |
clearedSecurityAlarms Integer |
Cleared security alarms automatic deletion period (in days) |
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Response Payload
https://localhost/webacs/api/v1/op/settings/alarms/alarmDeletionPeriods
<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="https://localhost/webacs/api/v1/op/settings/alarms/alarmDeletionPeriods" rootUrl="https://localhost/webacs/api/v1/op">
<alarmDeletionPeriodsDto>
<activeAndCleared>15</activeAndCleared>
<allEvents>15</allEvents>
<clearedNonSecurityAlarms>15</clearedNonSecurityAlarms>
<clearedSecurityAlarms>15</clearedSecurityAlarms>
</alarmDeletionPeriodsDto>
</mgmtResponse>
Sample JSON Response Payload
https://localhost/webacs/api/v1/op/settings/alarms/alarmDeletionPeriods.json
{
"mgmtResponse" : {
"@responseType" : "operation",
"@requestUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op\/settings\/alarms\/alarmDeletionPeriods",
"@rootUrl" : "https : \/\/localhost\/webacs\/api\/v1\/op",
"alarmDeletionPeriodsDto" : {
"activeAndCleared" : 15,
"allEvents" : 15,
"clearedNonSecurityAlarms" : 15,
"clearedSecurityAlarms" : 15
}
}
}