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.
12 lines
331 B
12 lines
331 B
from splunk.models.base import SplunkAppObjModel
|
|
from splunk.models.field import BoolField
|
|
|
|
''' Provides object mapping for app objects '''
|
|
|
|
class App(SplunkAppObjModel):
|
|
''' Represents a Splunk app '''
|
|
|
|
resource = 'apps/local'
|
|
is_disabled = BoolField('disabled')
|
|
is_configured = BoolField('configured')
|