Source code for models_v2.hadoop_distribution_enum
# -*- coding: utf-8 -*-
[docs]class HadoopDistributionEnum(object):
"""Implementation of the 'HadoopDistribution' enum.
The hadoop distribution for this cluster. This can be either 'CDH' or
'HDP'
Attributes:
CDH: TODO: type description here.
HDP: TODO: type description here.
"""
CDH = 'CDH'
HDP = 'HDP'