toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case IAMAuthMode.disabled:
      return 'DISABLED';
    case IAMAuthMode.required:
      return 'REQUIRED';
  }
}