You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
554 B
20 lines
554 B
from splunk.models.base import SplunkAppObjModel
|
|
from splunk.models.field import Field, BoolField, IntField
|
|
|
|
'''
|
|
Provides object mapping for the alerts overlays
|
|
'''
|
|
|
|
class AlertOverlay(SplunkAppObjModel):
|
|
|
|
resource = 'unix/alert_overlay'
|
|
description = Field()
|
|
business_impact = Field()
|
|
remediation = Field()
|
|
escalation = Field()
|
|
threshold_max = IntField()
|
|
threshold_min = IntField()
|
|
threshold_type = Field()
|
|
threshold_unit = Field()
|
|
|