Source code for models_v2.client_type_enum
# -*- coding: utf-8 -*-
[docs]class ClientTypeEnum(object):
"""Implementation of the 'ClientType' enum.
Specifies the client type of the externally triggered backup job.
Attributes:
GENERIC: TODO: type description here.
SBT: TODO: type description here.
"""
GENERIC = 'Generic'
SBT = 'SBT'