Source code for models.pkg_type_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class PkgTypeEnum(object): """Implementation of the 'pkgType' enum. TODO: type enum description here. Attributes: KSCRIPT: TODO: type description here. KRPM: TODO: type description here. KSUSERPM: TODO: type description here. KDEB: TODO: type description here. """ KSCRIPT = 'kScript' KRPM = 'kRPM' KSUSERPM = 'kSuseRPM' KDEB = 'kDEB'