...
//attributes/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"]/ancestor::NearRTRIC
...
{
"inputParameters": {
"sliceProfileId": "e75a8b68-0dee-4a9c-9a61-b0893e03ca45"
}
}
...
{
"inputParameters": {
"sliceProfileId": "e75a8b68-0dee-4a9c-9a61-b0893e03ca45"
}
}
...
Create the dataspace, schemaset and anchor using the below CPS-Core APIs:
Dataspace:
curl -k -H "Content-Type: application/json" -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST http://<ipaddress>:8883/cps/api/v1/dataspaces?dataspace-name='E2EDemo'
Schemaset:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"cps-cavsta-onap-internal@2021-01-28.yang"' --form 'schema-set-name="ran-coverage-area"' cps-cavsta-onap-internal@2021-01-28.yang
- RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"ran-network.zip"' --form 'schema-set-name="ran-network"' ran-network.zip
- RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://localhost:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"cps-ran-inventory.yang"' --form 'schema-set-name="ran-inventory"' cps-ran-inventory.yang
Anchor:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-coverage-area'&anchor-name='coverage-area-onap''
- RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-network'&anchor-name='11''
- RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://localhost:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-inventory'&anchor-name='ran-inventory-anchor''
Initial data:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/coverage-area-onap/nodes' \
--header 'Content-Type: application/json' -d @cavstareq.json cavstareq.json - RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request PUT 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/11/nodes' \
--header 'Content-Type: application/json' -d @ran-network-initial-data.json ran-network-initial-data.json - RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request PUT 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/ran-inventory-anchor/nodes' \
--header 'Content-Type: application/json' --data-raw '{
"ran-inventory":{
}
}'
Schemaset-anchor mapping:
cps-tbdmt/docker-compose/application.yml should have the below mapping under the section schemaToAnchor:
schemaToAnchor:
ran-coverage-area: coverage-area-onap
e2e-cavsta-schemaset: e2e-cavsta1
CSIT-SchemaSet: CSIT-Anchor
ns-schemaset: ns-anchor
ran-network: 11
ran-inventory: ran-inventory-anchor
TBDMT Templates:
Templates are uploaded and tested for this release. The templates can be preloaded in TBDMT during the deployment time itself. Refer the Demo at https://wiki.onap.org/download/attachments/117746417/2022-02-08%20E2E%20Network%20Slicing%20Weekly%20Meeting.mp4?api=v2 1:40-9:40 minutes
instantiateRANSlice - Allocate:
TBDMT Templates:
View file | ||||
---|---|---|---|---|
|
instantiateRANSlice - ModifyAllocate (Done in Istanbul Release)
View file name modifyallocate-CPs-templates.txt height 250
instantiateRANSlice - reconfigure
View file name Preload-instantiateRanSliceReconfigure.json height 250
activateRANSlice
View file name activation-CPS-templates.txt height 250
...
S.No
...
Config DB API
...
Template
...
Schema
...
id
...
JSON Payload
...
//attributes/ranNFNSSIIdList/element[text()="ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC
...
Create the dataspace, schemaset and anchor using the below CPS-Core APIs:
Dataspace:
curl -k -H "Content-Type: application/json" -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST http://<ipaddress>:8883/cps/api/v1/dataspaces?dataspace-name='E2EDemo'
Schemaset:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"cps-cavsta-onap-internal@2021-01-28.yang"' --form 'schema-set-name="ran-coverage-area"' cps-cavsta-onap-internal@2021-01-28.yang
- RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"ran-network.zip"' --form 'schema-set-name="ran-network"' ran-network.zip
- RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://localhost:8883/cps/api/v1/dataspaces/E2EDemo/schema-sets' --form 'file=@"cps-ran-inventory.yang"' --form 'schema-set-name="ran-inventory"' cps-ran-inventory.yang
Anchor:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-coverage-area'&anchor-name='coverage-area-onap''
- RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-network'&anchor-name='11''
- RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://localhost:8883/cps/api/v1/dataspaces/E2EDemo/anchors?schema-set-name='ran-inventory'&anchor-name='ran-inventory-anchor''
Initial data:
- CoverageArea: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request POST 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/coverage-area-onap/nodes' \
--header 'Content-Type: application/json' -d @cavstareq.json cavstareq.json - RAN Network: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request PUT 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/11/nodes' \
--header 'Content-Type: application/json' -d @ran-network-initial-data.json ran-network-initial-data.json - RAN inventory: curl -H "Authorization: Basic Y3BzdXNlcjpjcHNyMGNrcyE=" --request PUT 'http://<ipaddress>:8883/cps/api/v1/dataspaces/E2EDemo/anchors/ran-inventory-anchor/nodes' \
--header 'Content-Type: application/json' --data-raw '{
"ran-inventory":{
}
}'
Schemaset-anchor mapping:
cps-tbdmt/docker-compose/application.yml should have the below mapping under the section schemaToAnchor:
schemaToAnchor:
ran-coverage-area: coverage-area-onap
e2e-cavsta-schemaset: e2e-cavsta1
CSIT-SchemaSet: CSIT-Anchor
ns-schemaset: ns-anchor
ran-network: 11
ran-inventory: ran-inventory-anchor
TBDMT Templates:
Templates are uploaded and tested for this release. The templates can be preloaded in TBDMT during the deployment time itself. Refer the Demo at https://wiki.onap.org/download/attachments/117746417/2022-02-08%20E2E%20Network%20Slicing%20Weekly%20Meeting.mp4?api=v2 1:40-9:40 minutes
instantiateRANSlice - Allocate:
TBDMT Templates:
View file | ||||
---|---|---|---|---|
|
instantiateRANSlice - ModifyAllocate (Done in Istanbul Release)
View file name modifyallocate-CPs-templates.txt height 250
instantiateRANSlice - reconfigure
View file name Preload-instantiateRanSliceReconfigure.json height 250
activateRANSlice
View file name activation-CPS-templates.txt height 250
preload-activateRANSlice
View file name preload-activateRANSlice.json height 250
S.No | Config DB API | xPath | Template | Schema | id | JSON Payload |
---|---|---|---|---|---|---|
1 | api/sdnc-config-db/v4/nearrtric/{ranNFNSSIId} | //attributes/ranNFNSSIIdList/element[text()="ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC | { "templateId": "get-nearrtric-by-rannfnssi", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/rANNFNSSIList[text()='\''{{rANNFNSSIId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true } | ran-network | get-nearrtric-by-rannfnssi | { "inputParameters": { "rANNFNSSIId": "4039ce18-7f8f-44d7-9822-6cb6cb7227d4" } } |
2 | /api/sdnc-config-db/v4/plmn/{sliceProfileId}} | //attributes/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"]/ancestor::NearRTRIC | { "templateId": "get-plmnmccid-by-sliceprofileid", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/sliceProfilesList[@sliceProfileId='\''{{sliceProfileId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true, "transformParam":"attributes,pLMNInfoList,mcc" } | ran-network | get-plmnmccid-by-sliceprofileid | { "inputParameters": { |
3 | /api/sdnc-config-db/v4/plmn/{sliceProfileId} | //attributes/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"]/ancestor::NearRTRIC | { "templateId": "get-plmnmncid-by-sliceprofileid", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/sliceProfilesList[@sliceProfileId='\''{{sliceProfileId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true, "transformParam":"attributes,pLMNInfoList,mnc" } | ran-network | get-plmnmncid-by-sliceprofileid | { "inputParameters": { |
4 | /api/sdnc-config-db/v4/nearRTRIC | /ran-network/NearRTRIC[@idNearRTRIC="11"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"] | { "templateId": "put-status-nearrtric", "model": "ran-network", "requestType": "patch", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']", "includeDescendants": true } | ran-network | put-status-nearrtric | { "inputParameters":{ |
5 | /api/sdnc-config-db/v4/gNBCUUP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUUPFunction[@idGNBCUUPFunction="22"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"] | { "templateId": "put-status-gnbcuup", "model": "ran-network", "requestType": "patch", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUUPFunction[@idGNBCUUPFunction='\''{{idGNBCUUPFunction}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']", "includeDescendants": true } | ran-network | put-status-gnbcuup | { "inputParameters":{ |
6 | /api/sdnc-config-db/v4/gNBDU | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBDUFunction[@idGNBDUFunction="22"]/NRCellDU[@idNRCellDU="15299"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"] | { "templateId": "put-status-nrcelldu", "model": "ran-network", "requestType": "patch", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBDUFunction[@idGNBDUFunction='\''{{idGNBDUFunction}}'\'']/NRCellDU[@idNRCellDU='\''{{idNRCellDU}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']", "includeDescendants": true } | ran-network | put-status-nrcelldu | { "inputParameters":{ |
7 | /api/sdnc-config-db/v4/gNBCUCP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUCPFunction[@idGNBCUCPFunction="32"]/NRCellCU[@idNRCellCU="15199"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"] | { "templateId": "put-status-nrcellcu", "model": "ran-network", "requestType": "patch", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUCPFunction[@idGNBCUCPFunction='\''{{idGNBCUCPFunction}}'\'']/NRCellCU[@idNRCellCU='\''{{idNRCellCU}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']", "includeDescendants": true } | ran-network | put-status-nrcellcu | { "inputParameters":{ |
terminateRANSlice
preload-terminateRANSlice
View file name preload-terminateRANSlice.json height 250
S.No | Config DB API | xPath | Template | Schema | id | JSON Payload | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | api/sdnc-config-db/v4/nearrtric/{ranNFNSSIId} | //attributes/ranNFNSSIIdList/element[text()="ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC | { "templateId": "get-nearrtric-by-rannfnssi", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/rANNFNSSIList[text()='\''{{rANNFNSSIId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true } | ran-network | get-nearrtric-by-rannfnssi | { "inputParameters": { "rANNFNSSIId": "4039ce18-7f8f-44d7-9822-6cb6cb7227d4" } } | |||||||||||||||||
2 | /api/sdnc-config-db/v4/plmn/{sliceProfileId}} | //attributes/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"]/ancestor::NearRTRIC | { "templateId": "get-plmnmccid-by-sliceprofileid", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/sliceProfilesList[@sliceProfileId='\''{{sliceProfileId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true, "transformParam":"attributes,pLMNInfoList,mcc" } | ran-network | get-plmnmccid-by-sliceprofileid | { "inputParameters": { | |||||||||||||||||
3 | /api/sdnc-config-db/v4/plmn/{sliceProfileId} | //attributes/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"]/ancestor::NearRTRIC | { "templateId": "get-plmnmncid-by-sliceprofileid", "model": "ran-network", "requestType": "query-cps-path", "xpathTemplate": "//attributes/sliceProfilesList[@sliceProfileId='\''{{sliceProfileId}}'\'']/ancestor::NearRTRIC", "includeDescendants": true, "transformParam":"attributes,pLMNInfoList,mnc" } | ran-network | get-plmnmncid-by-sliceprofileid | { "inputParameters": { | |||||||||||||||||
4 | /api/sdnc-config-db/v4/nearRTRIC | /ran-network/NearRTRIC[@idNearRTRIC="11"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"]/sNSSAIList[@sNssai="1000-1012"] | { "templateId": "delete-nssai-from-rtric", "model": "ran-network", "requestType": "delete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']/sNSSAIList[@sNssai='\''{{sNSSAIList}}'\'']", "includeDescendants": true } | ran-network | delete-nssai-from-rtric | { "inputParameters": { | |||||||||||||||||
5 | /api/sdnc-config-db/v4/gNBCUCP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUCPFunction[@idGNBCUCPFunction="cucpserver1"]/NRCellCU[@idNRCellCU="15289"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"]/sNSSAIList[@sNssai=01-500004"] | { "templateId": "delete-nssai-from-cucp-plmninfo", "model": "ran-network", "requestType": "delete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUCPFunction[@idGNBCUCPFunction='\''{{idGNBCUCPFunction}}'\'']/NRCellCU[@idNRCellCU='\''{{idNRCellCU}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']/sNSSAIList[@sNssai='\''{{sNSSAIList}}'\'']", "includeDescendants": true } | ran-network | delete-nssai-from-cucp-plmninfo | { "inputParameters": { "idNearRTRIC": "11", "idGNBCUCPFunction":"cucpserver1", "idNRCellCU":"15289", "mcc":"310", "mnc":"410", "sNSSAIList":"01-500004" } } | |||||||||||||||||
6 | /api/sdnc-config-db/v4/gNBCUCP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUCPFunction[@idGNBCUCPFunction="cucpserver1"]/NRCellCU[@idNRCellCU="15289"]/attributes/RRMPolicyRatio[@id="55"]/attributes/rRMPolicyMemberList[@idx="8"] | { "templateId": "delete-nssai-from-cucp-rrmpolicy", "model": "ran-network", "requestType": "delete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUCPFunction[@idGNBCUCPFunction='\''{{idGNBCUCPFunction}}'\'']/NRCellCU[@idNRCellCU='\''{{idNRCellCU}}'\'']/attributes/RRMPolicyRatio[@id='\''{{id}}'\'']/attributes/rRMPolicyMemberList[@idx='\''{{idx}}'\'']", "includeDescendants": true } | ran-network | delete-nssai-from-cucp-rrmpolicy | { "inputParameters": { "idNearRTRIC": "11", "idGNBCUCPFunction":"cucpserver1", "idNRCellCU":"15289", "id":"55", "idx":"8" } } | |||||||||||||||||
7 | /api/sdnc-config-db/v4/gNBCUUP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUUPFunction[@idGNBCUUPFunction="1111"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"]/sNSSAIList[@sNssai="01-500004"] | { "templateId": "delete-nssai-from-cuup-plmninfo", "model": "ran-network", "requestType": "delete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUUPFunction[@idGNBCUUPFunction='\''{{idGNBCUUPFunction}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']/sNSSAIList[@sNssai='\''{{sNSSAIList}}'\'']", "includeDescendants": true } | ran-network | delete-nssai-from-cuup-plmninfo | { "inputParameters": { "idNearRTRIC": "11", "idGNBCUUPFunction":"1111", "mcc":"310", "mnc":"410", "sNSSAIList":"01-500004" } } | |||||||||||||||||
8 | /api/sdnc-config-db/v4/ | nearRTRICgNBCUUP | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUUPFunction[@idGNBCUUPFunction="1111"]/attributes/pLMNInfoListRRMPolicyRatio[@mcc@id="310" and @mnc35"]/attributes/rRMPolicyMemberList[@idx="41035"] | { "templateId": " | put-status-nearrtricdelete-nssai-from-cuup-rrmpolicy", "model": "ran-network", "requestType": " | patchdelete-list-node", "xpathTemplate": "/ran-network/NearRTRIC | [@idNearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBCUUPFunction[@idGNBCUUPFunction='\''{{ | idNearRTRICidGNBCUUPFunction}}'\'']/attributes/ | pLMNInfoListRRMPolicyRatio[ | @mcc@id='\''{{ | mccid}}'\'' | and @mnc]/attributes/rRMPolicyMemberList[@idx='\''{{ | mncidx}}'\'']", "includeDescendants": true } | ran-network | put-status-nearrtricdelete-nssai-from-cuup-rrmpolicy | { | "idNearRTRIC": "11", | " | mccidGNBCUUPFunction": " | 3101111", | 5 | "id": "35", "idx": "35" } } | |
9 | /api/sdnc-config-db/v4/gNBCUUPgNBDU | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUUPFunction[@idGNBCUUPFunctionGNBDUFunction[@idGNBDUFunction="110"]/NRCellDU[@idNRCellDU="2215289"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"]/sNSSAIList[@sNssai="01-500004"] | { "templateId": "put-status-gnbcuupdelete-nssai-from-du-plmninfo", "model": "ran-network", "requestType": "patchdelete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBDUFunction[@idGNBDUFunction='\''{{idNearRTRICidGNBDUFunction}}'\'']/GNBCUUPFunctionNRCellDU[@idGNBCUUPFunction@idNRCellDU='\''{{idGNBCUUPFunctionidNRCellDU}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']/sNSSAIList[@sNssai='\''{{sNSSAIList}}'\'']", "includeDescendants": true } | ran-networkput | -status-gnbcuupdelete-nssai-from-du-plmninfo | { "inputParameters": { "idNearRTRIC": "11", "mccidGNBDUFunction":"551110", "mncidNRCellDU":"55015289", "idGNBCUUPFunctionmcc":"22310" }, "payload": { "sNSSAIList": [{ "sNssai": "[01-3A4C16]mnc":"410", "statussNSSAIList":"ACTIVE01-500004" }] }} | |||||||||||||||||
10 | 6 | /api/sdnc-config-db/v4/gNBDU | /ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBDUFunction[@idGNBDUFunction="22110"]/NRCellDU[@idNRCellDU="1529915289"]/attributes/pLMNInfoListRRMPolicyRatio[@mcc@id="310" and @mnc34"]/attributes/rRMPolicyMemberList[@idx="4106"] | { "templateId": " | put-status-nrcelldudelete-nssai-from-du-rrmpolicy", "model": "ran-network", "requestType": " | patchdelete-list-node", "xpathTemplate": "/ran-network/NearRTRIC[@idNearRTRIC='\''{{idNearRTRIC}}'\'']/GNBDUFunction[@idGNBDUFunction='\''{{ | idNearRTRICidGNBDUFunction}}'\'']/ | GNBDUFunctionNRCellDU[ | @idGNBDUFunction@idNRCellDU='\''{{ | idGNBDUFunctionidNRCellDU}}'\'']/ | NRCellDUattributes/RRMPolicyRatio[ | @idNRCellDU@id='\''{{ | idNRCellDUid}}'\'']/attributes/ | pLMNInfoListrRMPolicyMemberList[ | @mcc@idx='\''{{ | mccidx}}'\' | ' and @mnc='\''{{mnc}}'\'']']", "includeDescendants": true } | ran-network | delete-nssai-from-du-rrmpolicy | { "inputParameters": { "idNearRTRIC": "11", "idGNBDUFunction":"110", "idNRCellDU":"15289", "id":"34", " | includeDescendants": trueran-network | put-status-nrcellduidx":"6" } } | |
11 | /api/sdnc-config-db/v4/ranslice-details | /ran-inventory/ran-slices[@rannfnssiid="ac8ca1a9-e1ec-4480-8720-c74e92566885"] | { " | inputParameterstemplateId": | {"delete-rannfnssi", " | mccmodel": " | 211ran-inventory", " | mncrequestType": " | 211delete-list-node", " | idGNBDUFunction":22xpathTemplate": "/ran-inventory/ran-slices[@rannfnssiid='\''{{rannfnssiid}}'\'']", " | idNRCellDUincludeDescendants": | 15299true } | ,ran-network | delete-rannfnssi | { " | sNSSAIListinputParameters": | [ { " | sNssairannfnssiid": " | [01-3A4C16]",4039ce18-7f8f-44d7-9822-6cb6cb7227d4" } } | }||||
12 | 7 | /api/sdnc-config-db/v4/ | gNBCUCP/ran-network/NearRTRIC[@idNearRTRIC="11"]/GNBCUCPFunction[@idGNBCUCPFunction="32"]/NRCellCU[@idNRCellCU="15199"]/attributes/pLMNInfoList[@mcc="310" and @mnc="410"ranslice-details//{rannfnssiid}/{sliceProfileId} | /ran-inventory/ran-slices[@rannfnssiid="ac8ca1a9-e1ec-4480-8720-c74e92566885"]/sliceProfilesList[@sliceProfileId="314aab80-1754-446c-bfd9-6aae5b1ae348"] | { "templateId": " | putdelete- | statusslice- | nrcellcuprofile", "model": "ran- | networkinventory", "requestType": " | patchdelete-list-node", "xpathTemplate": "/ran- | networkinventory/ | NearRTRICran-slices[ | @idNearRTRIC@rannfnssiid='\''{{ | idNearRTRICrannfnssiid}}'\'']/ | GNBCUCPFunctionsliceProfilesList[ | @idGNBCUCPFunction@sliceProfileId='\''{{ | idGNBCUCPFunctionsliceProfileId}}'\''] | /NRCellCU[@idNRCellCU='\''{{idNRCellCU}}'\'']/attributes/pLMNInfoList[@mcc='\''{{mcc}}'\'' and @mnc='\''{{mnc}}'\'']",ran-network | put-status-nrcellcu | ", "includeDescendants": true } | ran-network | delete-slice-profile | { "sliceProfileId": "e75a8b68-0dee-4a9c-9a61-b0893e03ca45" |
13 | /api/sdnc-config-db/v4/ranslice-details | /ran-inventory/ran-slices[@rannfnssiid="ac8ca1a9-e1ec-4480-8720-c74e92566885"] | { "templateId": "get-ran-slices", "model": "ran-inventory", "requestType": "get", "xpathTemplate": "/ran-inventory/ran-slices[@rannfnssiid='\''{{rannfnssiid}}'\'']", "includeDescendants": true } | ran-network | get-ran-slices | { "inputParameters": { "rannfnssiid": "4039ce18-7f8f-44d7-9822-6cb6cb7227d4" } } |