...
This API is used by a PCI Handler Microservice as envisioned in the solution for theĀ Casablanca 5G OOF-PCI Use Case
Table of Contents |
|
...
Interface Defintion | Description |
---|---|
URI | https://{host}:{port}/api/oof/pci/v1/pci |
Operation Type | POST |
Content-Type | application/json |
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
networkId | Y | 1 | String | Id of network requiring PCI optimization | |
cellIdList | Y | 1..N | List of Strings | List of cellIds triggering need for PCI optimization (e.g. potential confusion) | |
anrInputList | Y | 1..N | List of ANR Info objects | ANR inputs (list of 'removable' cells) | |
fixedPCICells | N | 1..N | List of Strings | List of cellIds whose PCI values are not allowed to be changed during PCI optimization | |
priorityTreatmentCells | N | 1..N | List of Strings | List of cellIds requiring priority/special treatment during PCI optimization | |
trigger | N | 1 | String | NbrListChange | Type of trigger causing need for PCI optimization |
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
CellId | Y | 1 | String | Cell identity |
ANRInfo Object
Attribute | Required? | Cardinality | Content | Values | Description | |
---|---|---|---|---|---|---|
CellId | Y | 1 | String | Cell Identity | ||
RemovableNeighbors | Y | 1..N | String | CellIds triggering need for PCI optimization (e.g. potential confusion)List of strings | List of removable neighbor cells |
Synchronous Response Body
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
networkId | Y | 1 | String | Id of network requiring PCI optimization | |
pciSolutionspciANRSolutions | Y | 1 | List of PCI Solutions PCIANRSolution Object contents | A list of cellIds in the networkId with modified PCI values, and optionally a list of neighbors to be blacklisted |
PCIANRSolution Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String |
...
cellId with modified PCI value | |||||
pciSolutions | Y | 1..N | List of pciSolution object | New PCI value for cellId | |
anrSolutions | Y | 1..N | List of ANRInfoobject | ANR solutions |
pciSolution Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String | cellId with modified PCI value | |
pci | Y | 1 | integerInteger | New PCI value for cellId |
ANRInfo Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String | cellId with modified PCI value | |
removableNeighbors | Y | 1..N | List of Strings | List of neighbors to be blacklisted |
HTTP Response Code
HTTP Code | Response Phrase | Description |
---|---|---|
201 | Created | An optimization solution is found. |
202 | Accepted | An optimization request is accepted. |
400 | Bad request | Bad request. |
401 | Unauthorized | Request body is not compliant with the API definition. |
404 | Not found | The server cannot find the requested URI. |
405 | Method not found | The requested method is not supported by a server. |
500 | Internal server error | The server encountered an internal server error or timed out. |
520 | Solver error | Requested number of solutions cannot be found. |
...
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
{ "requestInfo": { "transactionId": "xxx-xxx-xxxx", "requestId": "yyy-yyy-yyyy", "callbackUrl": "https://wiki.onap.org:5000/callbackUrl", "sourceId": "PCIHMS", "requestType": "create", "numSolutions": 1, "optimizers": ["pci"], "timeout": 600 }, "cellInfo": { "networkId": "NTWK005", "cellIdList": [ {"cellId": "EXP001"}, ] } |
Synchronous Response Example
...