Source code for models_v2.source_type_2_enum

# -*- coding: utf-8 -*-

[docs]class SourceType2Enum(object): """Implementation of the 'SourceType2' enum. Specifies the source type for Universal Data Adapter source. Attributes: KSAPHANA: TODO: type description here. KSAPORACLE: TODO: type description here. KCOCKROACHDB: TODO: type description here. KOTHER: TODO: type description here. """ KSAPHANA = 'kSapHana' KSAPORACLE = 'kSapOracle' KCOCKROACHDB = 'kCockroachDB' KOTHER = 'kOther'