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.
17 lines
566 B
17 lines
566 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
# A collection of constants pertinent to maintenance services used across the code base
|
|
|
|
MAINTENANCE_CALENDAR_OBJECT_TYPE = 'maintenance_calendar'
|
|
|
|
OPERATIVE_MAINTENANCE_RECORD_OBJECT_TYPE = 'operative_maintenance_record'
|
|
|
|
# The capability values defined here must match the ones exposed in authorize.conf
|
|
CAPABILITY_MATRIX = {
|
|
'maintenance_calendar': {
|
|
'read': 'read_maintenance_calendar',
|
|
'write': 'write_maintenance_calendar',
|
|
'delete': 'delete_maintenance_calendar'
|
|
}
|
|
}
|