toAutoRollbackEvent method

AutoRollbackEvent toAutoRollbackEvent()

Implementation

AutoRollbackEvent toAutoRollbackEvent() {
  switch (this) {
    case 'DEPLOYMENT_FAILURE':
      return AutoRollbackEvent.deploymentFailure;
    case 'DEPLOYMENT_STOP_ON_ALARM':
      return AutoRollbackEvent.deploymentStopOnAlarm;
    case 'DEPLOYMENT_STOP_ON_REQUEST':
      return AutoRollbackEvent.deploymentStopOnRequest;
  }
  throw Exception('$this is not known in enum AutoRollbackEvent');
}