subnetTypeText()

in src/ui/output/LogicOutputNetworkRow.js [29:38]


  subnetTypeText(type) {
    if (type === 'PRIMARY') {
      return 'Primary';
    } else if (type === 'SECONDARY') {
      return 'Secondary';
    } else if (type === 'MANAGED') {
      return 'Google Managed';
    }
    return 'N/A';
  }