toStackSetDriftDetectionStatus method
Implementation
StackSetDriftDetectionStatus toStackSetDriftDetectionStatus() {
switch (this) {
case 'COMPLETED':
return StackSetDriftDetectionStatus.completed;
case 'FAILED':
return StackSetDriftDetectionStatus.failed;
case 'PARTIAL_SUCCESS':
return StackSetDriftDetectionStatus.partialSuccess;
case 'IN_PROGRESS':
return StackSetDriftDetectionStatus.inProgress;
case 'STOPPED':
return StackSetDriftDetectionStatus.stopped;
}
throw Exception('$this is not known in enum StackSetDriftDetectionStatus');
}