toInstanceGroupStateChangeReasonCode method

InstanceGroupStateChangeReasonCode toInstanceGroupStateChangeReasonCode()

Implementation

InstanceGroupStateChangeReasonCode toInstanceGroupStateChangeReasonCode() {
  switch (this) {
    case 'INTERNAL_ERROR':
      return InstanceGroupStateChangeReasonCode.internalError;
    case 'VALIDATION_ERROR':
      return InstanceGroupStateChangeReasonCode.validationError;
    case 'INSTANCE_FAILURE':
      return InstanceGroupStateChangeReasonCode.instanceFailure;
    case 'CLUSTER_TERMINATED':
      return InstanceGroupStateChangeReasonCode.clusterTerminated;
  }
  throw Exception(
      '$this is not known in enum InstanceGroupStateChangeReasonCode');
}