toScalingPlanStatusCode method

ScalingPlanStatusCode toScalingPlanStatusCode()

Implementation

ScalingPlanStatusCode toScalingPlanStatusCode() {
  switch (this) {
    case 'Active':
      return ScalingPlanStatusCode.active;
    case 'ActiveWithProblems':
      return ScalingPlanStatusCode.activeWithProblems;
    case 'CreationInProgress':
      return ScalingPlanStatusCode.creationInProgress;
    case 'CreationFailed':
      return ScalingPlanStatusCode.creationFailed;
    case 'DeletionInProgress':
      return ScalingPlanStatusCode.deletionInProgress;
    case 'DeletionFailed':
      return ScalingPlanStatusCode.deletionFailed;
    case 'UpdateInProgress':
      return ScalingPlanStatusCode.updateInProgress;
    case 'UpdateFailed':
      return ScalingPlanStatusCode.updateFailed;
  }
  throw Exception('$this is not known in enum ScalingPlanStatusCode');
}