Source code for models_v2.fleet_subnet_type_2_enum

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

[docs]class FleetSubnetType2Enum(object): """Implementation of the 'FleetSubnetType2' enum. Specifies the fleet type of the subnet. Attributes: KCLUSTER: TODO: type description here. KSOURCEVM: TODO: type description here. KCUSTOM: TODO: type description here. """ KCLUSTER = 'kCluster' KSOURCEVM = 'kSourceVM' KCUSTOM = 'kCustom'