toMinimumHealthyHostsType method
Implementation
MinimumHealthyHostsType toMinimumHealthyHostsType() {
switch (this) {
case 'HOST_COUNT':
return MinimumHealthyHostsType.hostCount;
case 'FLEET_PERCENT':
return MinimumHealthyHostsType.fleetPercent;
}
throw Exception('$this is not known in enum MinimumHealthyHostsType');
}