Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request can contain the sub-net type. 1 request can be used to fetch capabilities of more than 1 subnet managed by the same NSSMF - for e.g., in case of Transport, a single request can fetch the capabilities of FH, MH and BH subnets managed by the same TN NSSMF.

MethodURL
POSTGET/api/rest/provMns/v1/NSS/subnetCapabilityQuery

REQ example(TN)

JSON Viewer
modeText
{
  "subnetCapabilityQuery": {
    "subnetTypes": [
      "AN","CN","TN-FH","TN-MH","TN-BH"
    ]
  },
    "esrInfo": {
        "vendor": "huawei/ONAP",
        "networkType": "core/access/transport"
    }
}

Response example:(TN)

JSON Viewer
modeText
{
"AN":{
  "latency": "",
  "maxNumberofUEs": "",
  "maxThroughput": "",
  "terminalDensity": ""
},
"CN":{
  "latency": "",
  "maxThroughput": "",
  "maxNumberofConns": ""
},
"TN-FH":{
  "latency": "",
  "maxThroughput": ""
},
"TN-MH":{
  "latency": "",
  "maxThroughput": ""
},
"TN-BH":{
  "latency": "",
  "maxThroughput": ""
}
}

...