toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case StackSetOperationAction.create:
      return 'CREATE';
    case StackSetOperationAction.update:
      return 'UPDATE';
    case StackSetOperationAction.delete:
      return 'DELETE';
    case StackSetOperationAction.detectDrift:
      return 'DETECT_DRIFT';
  }
}