toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ResolverQueryLogConfigStatus.creating:
      return 'CREATING';
    case ResolverQueryLogConfigStatus.created:
      return 'CREATED';
    case ResolverQueryLogConfigStatus.deleting:
      return 'DELETING';
    case ResolverQueryLogConfigStatus.failed:
      return 'FAILED';
  }
}