Source code for models_v2.app_type_enum
# -*- coding: utf-8 -*-
[docs]class AppTypeEnum(object):
"""Implementation of the 'AppType' enum.
Specifies the app from which protection must be enabled.
Attributes:
KSQL: TODO: type description here.
KORACLE: TODO: type description here.
KAD: TODO: type description here.
KEXCHANGE: TODO: type description here.
"""
KSQL = 'kSQL'
KORACLE = 'kOracle'
KAD = 'kAD'
KEXCHANGE = 'kExchange'