Resource Administration RESTCONF API
API Documentation
Download the Resource Administration RESTCONF API Postman Collection here. here
Authentication - Get Token
POSTInitial Authentication - Get Token
Request a token from the REST Gateway for the provided user
Example Request
POST https://{{server}}/rest-gateway/rest/api/v1/auth/token HTTP/1.1
Content-Type: application/json
{
"grant_type": "client_credentials"
}
curl -X POST -H "Content-Type: application/json" -d '{
"grant_type": "client_credentials"
}' "https://{{server}}/rest-gateway/rest/api/v1/auth/token"
Example Response
200 OK
json
{
"access_token": "VEtOLVNBTXFhZDQ3MzE5ZjQtNWEzNC00NTZkLTk5YzQtZTg4NzUxZjQ0YjNl",
"refresh_token": "UkVUS04tU0FNcWFlMTcyODRmNy0wZDIxLTRmYzEtOWUyMi1kYmQ0ZTA5MDNlOTY=",
"token_type": "Bearer",
"expires_in": 3600
}
| Cache-Control | private |
|---|---|
| Content-Encoding | gzip |
| Content-Type | application/json |
| Server | 5620 SAM |
| Transfer-Encoding | chunked |
| Vary | Accept-Encoding |
numeric-pool
POSTcreate
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:numeric-resource-pools": [
{
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id pool",
"numeric-spec": {
"min-value": 100,
"max-value": 200
},
"threshold-policy": null
}
]
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:numeric-resource-pools": [
{
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id pool",
"numeric-spec": {
"min-value": 100,
"max-value": 200
},
"threshold-policy": null
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools"
Example Response
| Date | Sat, 13 Dec 2025 10:41:46 GMT |
|---|---|
| Content-Length | 0 |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Location | /restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa |
| Cache-Control | no-cache |
GETget
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa"
Example Response
200 OK
json
{
"nsp-resource-pool:numeric-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']"
},
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/statistics"
},
"capacity": "201",
"usage": "11.94 %"
},
"numeric-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/numeric-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/numeric-spec"
},
"min-value": 100,
"max-value": 300
}
}
]
}
| Date | Sat, 13 Dec 2025 10:59:20 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
PUTresize
Example Request
PUT https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:numeric-resource-pools": [
{
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id pool",
"numeric-spec": {
"min-value": 100,
"max-value": 300
}
}
]
}
curl -X PUT -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:numeric-resource-pools": [
{
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id pool",
"numeric-spec": {
"min-value": 100,
"max-value": 300
}
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:42:01 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTreserve
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/reserve HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "CUST1",
"reference": "ref-1",
"confirmed": false,
"reserve-values": [
100,
101
]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "CUST1",
"reference": "ref-1",
"confirmed": false,
"reserve-values": [
100,
101
]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/reserve"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"num-consumed-resources": [
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "300",
"description": null,
"value": "100",
"confirmed": false,
"registered-date": "2025-12-13T10:42:08.504Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "300",
"description": null,
"value": "101",
"confirmed": false,
"registered-date": "2025-12-13T10:42:08.511Z"
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:08 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTobtain
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/obtain-value-from-pool HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"total-number-of-resources": 24,
"all-or-nothing": false,
"owner": "CUST1",
"reference": "ref-1",
"confirmed": true
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"total-number-of-resources": 24,
"all-or-nothing": false,
"owner": "CUST1",
"reference": "ref-1",
"confirmed": true
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/obtain-value-from-pool"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"num-consumed-resources": [
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "102",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.398Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "103",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.400Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "104",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.401Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "105",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.403Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "106",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.404Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "107",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.405Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "108",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.406Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "109",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.407Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "110",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.409Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "111",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.410Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "112",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.412Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "113",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.413Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "114",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.414Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "115",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.415Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "116",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.416Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "117",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.417Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "118",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.418Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "119",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.419Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "120",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.420Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "121",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.421Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "122",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.422Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "123",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.423Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "0",
"description": null,
"value": "124",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.424Z"
},
{
"owner": "CUST1",
"reference": "ref-1",
"next-value": "300",
"description": null,
"value": "125",
"confirmed": true,
"registered-date": "2025-12-13T10:42:14.426Z"
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:14 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTconfirm
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/confirm-reservation HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "CUST1",
"reserve-values": [
101
]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "CUST1",
"reserve-values": [
101
]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/confirm-reservation"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:19 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-values
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-values HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"values": [101]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"values": [101]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-values"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:23 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-owner
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-by-owner HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "CUST1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "CUST1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-by-owner"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:40 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-reference
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-by-ref HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"reference": "ref-1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"reference": "ref-1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa/release-by-ref"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:42:59 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
DELETEdelete
Example Request
DELETE https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X DELETE -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools=vlan-id,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:43:07 GMT |
|---|---|
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
rdrt-pool
POSTcreate
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:rd-rt-resource-pools": [
{
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rdrt test pool",
"rd-rt-pool-spec": {
"min-value": 100,
"max-value": 199
},
"threshold-policy": null
}
]
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:rd-rt-resource-pools": [
{
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rdrt test pool",
"rd-rt-pool-spec": {
"min-value": 100,
"max-value": 199
},
"threshold-policy": null
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools"
Example Response
| Date | Sat, 13 Dec 2025 10:44:39 GMT |
|---|---|
| Content-Length | 0 |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Location | /restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa |
| Cache-Control | no-cache |
GETget pool
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa"
Example Response
200 OK
json
{
"nsp-resource-pool:rd-rt-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']"
},
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"rd-rt-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/rd-rt-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/rd-rt-pool-spec"
},
"min-value": 100,
"max-value": 299
}
}
]
}
| Date | Sat, 13 Dec 2025 10:59:42 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
PUTresize
Example Request
PUT https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:rd-rt-resource-pools": [
{
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rdrt test pool",
"rd-rt-pool-spec": {
"min-value": 100,
"max-value": 299
}
}
]
}
curl -X PUT -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:rd-rt-resource-pools": [
{
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rdrt test pool",
"rd-rt-pool-spec": {
"min-value": 100,
"max-value": 299
}
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:44:59 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTobtain
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/obtain-value-from-pool HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"total-number-of-resources": 70,
"all-or-nothing": false,
"owner": "Cust1",
"base-string": "3.3.3.3",
"reference": "ref-1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"total-number-of-resources": 70,
"all-or-nothing": false,
"owner": "Cust1",
"base-string": "3.3.3.3",
"reference": "ref-1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/obtain-value-from-pool"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:100']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:100",
"registered-date": "2025-12-13T10:45:09.510Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:101']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:101",
"registered-date": "2025-12-13T10:45:09.515Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:102']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:102",
"registered-date": "2025-12-13T10:45:09.517Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:103']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:103",
"registered-date": "2025-12-13T10:45:09.518Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:104']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:104",
"registered-date": "2025-12-13T10:45:09.520Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:105']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:105",
"registered-date": "2025-12-13T10:45:09.521Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:106']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:106",
"registered-date": "2025-12-13T10:45:09.522Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:107']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:107",
"registered-date": "2025-12-13T10:45:09.523Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:108']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:108",
"registered-date": "2025-12-13T10:45:09.525Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:109']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:109",
"registered-date": "2025-12-13T10:45:09.526Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:110']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:110",
"registered-date": "2025-12-13T10:45:09.527Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:111']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:111",
"registered-date": "2025-12-13T10:45:09.528Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:112']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:112",
"registered-date": "2025-12-13T10:45:09.529Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:113']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:113",
"registered-date": "2025-12-13T10:45:09.530Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:114']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:114",
"registered-date": "2025-12-13T10:45:09.531Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:115']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:115",
"registered-date": "2025-12-13T10:45:09.532Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:116']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:116",
"registered-date": "2025-12-13T10:45:09.532Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:117']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:117",
"registered-date": "2025-12-13T10:45:09.533Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:118']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:118",
"registered-date": "2025-12-13T10:45:09.534Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:119']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:119",
"registered-date": "2025-12-13T10:45:09.535Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:120']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:120",
"registered-date": "2025-12-13T10:45:09.536Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:121']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:121",
"registered-date": "2025-12-13T10:45:09.537Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:122']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:122",
"registered-date": "2025-12-13T10:45:09.538Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:123']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:123",
"registered-date": "2025-12-13T10:45:09.539Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:124']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:124",
"registered-date": "2025-12-13T10:45:09.540Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:125']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:125",
"registered-date": "2025-12-13T10:45:09.540Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:126']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:126",
"registered-date": "2025-12-13T10:45:09.541Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:127']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:127",
"registered-date": "2025-12-13T10:45:09.542Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:128']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:128",
"registered-date": "2025-12-13T10:45:09.543Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:129']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:129",
"registered-date": "2025-12-13T10:45:09.544Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:130']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:130",
"registered-date": "2025-12-13T10:45:09.545Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:131']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:131",
"registered-date": "2025-12-13T10:45:09.546Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:132']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:132",
"registered-date": "2025-12-13T10:45:09.547Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:133']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:133",
"registered-date": "2025-12-13T10:45:09.547Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:134']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:134",
"registered-date": "2025-12-13T10:45:09.549Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:135']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:135",
"registered-date": "2025-12-13T10:45:09.550Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:136']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:136",
"registered-date": "2025-12-13T10:45:09.551Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:137']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:137",
"registered-date": "2025-12-13T10:45:09.551Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:138']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:138",
"registered-date": "2025-12-13T10:45:09.552Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:139']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:139",
"registered-date": "2025-12-13T10:45:09.553Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:140']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:140",
"registered-date": "2025-12-13T10:45:09.554Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:141']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:141",
"registered-date": "2025-12-13T10:45:09.555Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:142']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:142",
"registered-date": "2025-12-13T10:45:09.556Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:143']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:143",
"registered-date": "2025-12-13T10:45:09.557Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:144']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:144",
"registered-date": "2025-12-13T10:45:09.558Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:145']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:145",
"registered-date": "2025-12-13T10:45:09.559Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:146']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:146",
"registered-date": "2025-12-13T10:45:09.560Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:147']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:147",
"registered-date": "2025-12-13T10:45:09.561Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:148']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:148",
"registered-date": "2025-12-13T10:45:09.562Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:149']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:149",
"registered-date": "2025-12-13T10:45:09.563Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:150']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:150",
"registered-date": "2025-12-13T10:45:09.564Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:151']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:151",
"registered-date": "2025-12-13T10:45:09.565Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:152']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:152",
"registered-date": "2025-12-13T10:45:09.566Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:153']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:153",
"registered-date": "2025-12-13T10:45:09.567Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:154']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:154",
"registered-date": "2025-12-13T10:45:09.568Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:155']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:155",
"registered-date": "2025-12-13T10:45:09.569Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:156']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:156",
"registered-date": "2025-12-13T10:45:09.570Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:157']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:157",
"registered-date": "2025-12-13T10:45:09.571Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:158']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:158",
"registered-date": "2025-12-13T10:45:09.572Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:159']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:159",
"registered-date": "2025-12-13T10:45:09.574Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:160']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:160",
"registered-date": "2025-12-13T10:45:09.575Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:161']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:161",
"registered-date": "2025-12-13T10:45:09.576Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:162']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:162",
"registered-date": "2025-12-13T10:45:09.577Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:163']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:163",
"registered-date": "2025-12-13T10:45:09.578Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:164']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:164",
"registered-date": "2025-12-13T10:45:09.579Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:165']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:165",
"registered-date": "2025-12-13T10:45:09.580Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:166']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:166",
"registered-date": "2025-12-13T10:45:09.581Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:167']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:167",
"registered-date": "2025-12-13T10:45:09.582Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:168']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:168",
"registered-date": "2025-12-13T10:45:09.583Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:169']",
"nsp-model:creation-time": "2025-12-13T10:45:09.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:45:09.503Z"
},
"value": "3.3.3.3:169",
"registered-date": "2025-12-13T10:45:09.584Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:45:09 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-values
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-values HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"values": ["3.3.3.3:100"]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"values": ["3.3.3.3:100"]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-values"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:45:19 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-owner
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-by-owner HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-by-owner"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:45:33 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-ref
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-by-ref HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"reference": "ref-1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"reference": "ref-1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa/release-by-ref"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:45:53 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
DELETEdelete
Example Request
DELETE https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X DELETE -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools=test,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:46:06 GMT |
|---|---|
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
IP-Pools
Ip-V4
POSTcreate IpPool-v4
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:ip-resource-pools": {
"name": "ip-1",
"scope": "net-1",
"type": "nsp-resource-pool-utils:ip-address-prefix",
"description": "this is a Subnet IP pool",
"ip-pool-spec": {
"ip-masks": [
{
"ip-mask": "192.168.0.0/16",
"purposes": [
"testing",
"pool B"
]
},
{
"ip-mask": "10.0.0.0/8",
"purposes": [
"testing",
"pool A"
]
}
]
},
"threshold-policy": null
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:ip-resource-pools": {
"name": "ip-1",
"scope": "net-1",
"type": "nsp-resource-pool-utils:ip-address-prefix",
"description": "this is a Subnet IP pool",
"ip-pool-spec": {
"ip-masks": [
{
"ip-mask": "192.168.0.0/16",
"purposes": [
"testing",
"pool B"
]
},
{
"ip-mask": "10.0.0.0/8",
"purposes": [
"testing",
"pool A"
]
}
]
},
"threshold-policy": null
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools"
Example Response
| Date | Sat, 13 Dec 2025 10:51:01 GMT |
|---|---|
| Content-Length | 0 |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Location | /restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1 |
| Cache-Control | no-cache |
POSTreserve subnets in pool V4
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/reserve HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["192.168.128.0/18", "192.168.192.0/22"],
"reference": "for Cust1 network",
"all-or-nothing": true,
"purpose": "testing"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["192.168.128.0/18", "192.168.192.0/22"],
"reference": "for Cust1 network",
"all-or-nothing": true,
"purpose": "testing"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/reserve"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.128.0/18']",
"nsp-model:creation-time": "2025-12-13T10:51:08.038Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:08.038Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.128.0/18",
"registered-date": "2025-12-13T10:51:08.066Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.192.0/22']",
"nsp-model:creation-time": "2025-12-13T10:51:08.038Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:08.038Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.192.0/22",
"registered-date": "2025-12-13T10:51:08.073Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:08 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTreserve hosts in pool V4
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/reserve HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["192.168.127.0/32", "192.168.196.0/32"],
"reference": "for Cust1 network",
"all-or-nothing": true,
"purpose": "testing"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["192.168.127.0/32", "192.168.196.0/32"],
"reference": "for Cust1 network",
"all-or-nothing": true,
"purpose": "testing"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/reserve"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.196.0/32']",
"nsp-model:creation-time": "2025-12-13T10:51:14.295Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:14.295Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.196.0/32",
"registered-date": "2025-12-13T10:51:14.335Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.127.0/32']",
"nsp-model:creation-time": "2025-12-13T10:51:14.295Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:14.295Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.127.0/32",
"registered-date": "2025-12-13T10:51:14.337Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:14 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTcommit host in pool V4
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/confirm-reservation HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "Cust1",
"reserve-values": [
"192.168.127.0/32"
]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "Cust1",
"reserve-values": [
"192.168.127.0/32"
]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/confirm-reservation"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:20 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease host in pool V4
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-values HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"values": [
"192.168.127.0/32"
]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"values": [
"192.168.127.0/32"
]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-values"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:25 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTobtain-values-from-pool
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/obtain-value-from-pool HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"reference": "ref1",
"owner": "Cust1",
"confirmed": false,
"all-or-nothing": false,
"description": "For Cust1",
"total-number-of-resources": 20,
"purpose": "pool A",
"allocation-mask": 16
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"reference": "ref1",
"owner": "Cust1",
"confirmed": false,
"all-or-nothing": false,
"description": "For Cust1",
"total-number-of-resources": 20,
"purpose": "pool A",
"allocation-mask": 16
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/obtain-value-from-pool"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"consumed-resources": [
[
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.9.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.405Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.405Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.9.0.0/16",
"registered-date": "2025-12-13T10:51:32.404Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.11.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.416Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.416Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.11.0.0/16",
"registered-date": "2025-12-13T10:51:32.415Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.10.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.424Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.424Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.10.0.0/16",
"registered-date": "2025-12-13T10:51:32.422Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.12.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.433Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.433Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.12.0.0/16",
"registered-date": "2025-12-13T10:51:32.432Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.14.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.440Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.440Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.14.0.0/16",
"registered-date": "2025-12-13T10:51:32.439Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.15.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.448Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.448Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.15.0.0/16",
"registered-date": "2025-12-13T10:51:32.447Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.16.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.457Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.457Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.16.0.0/16",
"registered-date": "2025-12-13T10:51:32.455Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.17.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.468Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.468Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.17.0.0/16",
"registered-date": "2025-12-13T10:51:32.467Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.18.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.475Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.475Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.18.0.0/16",
"registered-date": "2025-12-13T10:51:32.474Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.19.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.483Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.483Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.19.0.0/16",
"registered-date": "2025-12-13T10:51:32.480Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.13.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.496Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.496Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.13.0.0/16",
"registered-date": "2025-12-13T10:51:32.489Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.4.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.503Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.503Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.4.0.0/16",
"registered-date": "2025-12-13T10:51:32.502Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.5.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.519Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.519Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.5.0.0/16",
"registered-date": "2025-12-13T10:51:32.512Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.2.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.526Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.526Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.2.0.0/16",
"registered-date": "2025-12-13T10:51:32.525Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.3.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.536Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.536Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.3.0.0/16",
"registered-date": "2025-12-13T10:51:32.534Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.6.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.549Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.549Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.6.0.0/16",
"registered-date": "2025-12-13T10:51:32.547Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.7.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.556Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.556Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.7.0.0/16",
"registered-date": "2025-12-13T10:51:32.555Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.1.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.567Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.567Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.1.0.0/16",
"registered-date": "2025-12-13T10:51:32.565Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.8.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.575Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.575Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.8.0.0/16",
"registered-date": "2025-12-13T10:51:32.574Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='10.0.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:51:32.583Z",
"nsp-model:last-modified-time": "2025-12-13T10:51:32.583Z"
},
"purpose": "pool A",
"ip-mask": "10.0.0.0/8",
"value": "10.0.0.0/16",
"registered-date": "2025-12-13T10:51:32.581Z",
"reference": "ref1",
"owner": "Cust1",
"description": "For Cust1",
"confirmed": false
}
]
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:32 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
GETget IP pool
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1 HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1"
Example Response
200 OK
json
{
"nsp-resource-pool:ip-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']"
},
"name": "ip-1",
"scope": "net-1",
"type": "nsp-resource-pool-utils:ip-address-prefix",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/statistics"
},
"capacity": "16842752",
"usage": "0.10 %"
},
"ip-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec"
},
"ip-masks": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec/ip-masks",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec/ip-masks[ip-mask='192.168.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:56:38.683Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:38.683Z"
},
"ip-mask": "192.168.0.0/16",
"purposes": [
"testing",
"pool B"
]
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec/ip-masks",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec/ip-masks[ip-mask='10.0.0.0/8']",
"nsp-model:creation-time": "2025-12-13T10:56:38.683Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:38.683Z"
},
"ip-mask": "10.0.0.0/8",
"purposes": [
"testing",
"pool A"
]
}
]
}
}
]
}
| Date | Sat, 13 Dec 2025 11:00:02 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
POSTrelease-by-owner
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-by-owner HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-by-owner"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:51:48 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-reference
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-by-ref HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"reference": "ref1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"reference": "ref1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1/release-by-ref"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:53:00 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
DELETEdelete pool
Example Request
DELETE https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1 HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X DELETE -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools=ip-1,net-1"
Example Response
| Date | Sat, 13 Dec 2025 10:53:07 GMT |
|---|---|
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
String Pool
POSTcreate String Pool
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"description": "this is a String pool",
"string-pool-spec": {
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 100
},
"threshold-policy": null
}
]
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"description": "this is a String pool",
"string-pool-spec": {
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 100
},
"threshold-policy": null
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools"
Example Response
| Date | Sat, 13 Dec 2025 10:54:25 GMT |
|---|---|
| Content-Length | 0 |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Location | /restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa |
| Cache-Control | no-cache |
GETget Pool
Example Request
GET https://{{server}}:8545/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}:8545/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa"
Example Response
200 OK
json
{
"nsp-resource-pool:string-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']"
},
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"string-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec"
},
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 200
},
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/statistics"
},
"capacity": "200",
"usage": "1.50 %"
}
}
]
}
| Date | Sat, 13 Dec 2025 11:00:17 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
PUTresize Pool
Example Request
PUT https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"description": "this is a String pool",
"string-pool-spec":
{
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 200
}
}
]
}
curl -X PUT -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"description": "this is a String pool",
"string-pool-spec":
{
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 200
}
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:54:35 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTreserve
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/reserve HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["AAA", "BBB", "CCC"],
"reference": "for Cust1 network",
"all-or-nothing": true
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["AAA", "BBB", "CCC"],
"reference": "for Cust1 network",
"all-or-nothing": true
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/reserve"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='AAA']",
"nsp-model:creation-time": "2025-12-13T10:54:40.170Z",
"nsp-model:last-modified-time": "2025-12-13T10:54:40.170Z"
},
"value": "AAA",
"registered-date": "2025-12-13T10:54:40.177Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='CCC']",
"nsp-model:creation-time": "2025-12-13T10:54:40.170Z",
"nsp-model:last-modified-time": "2025-12-13T10:54:40.170Z"
},
"value": "CCC",
"registered-date": "2025-12-13T10:54:40.182Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='BBB']",
"nsp-model:creation-time": "2025-12-13T10:54:40.170Z",
"nsp-model:last-modified-time": "2025-12-13T10:54:40.170Z"
},
"value": "BBB",
"registered-date": "2025-12-13T10:54:40.184Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:54:40 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTconfirm
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/confirm-reservation HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["AAA"]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input":
{
"owner": "Cust1",
"reserve-values": ["AAA"]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/confirm-reservation"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:54:44 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-values
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-values HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"values": ["CCC"]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"values": ["CCC"]
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-values"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:54:51 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-owner
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-by-owner HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"owner": "Cust1"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-by-owner"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:54:57 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
POSTrelease-by-reference
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-by-ref HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:input": {
"reference": "for Cust1 network"
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:input": {
"reference": "for Cust1 network"
}
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa/release-by-ref"
Example Response
200 OK
json
{
"nsp-resource-pool:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 10:55:15 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
DELETEdelete pool
Example Request
DELETE https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X DELETE -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 10:55:19 GMT |
|---|---|
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
consumed resources
GETget all numeric consumed resources
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources"
Example Response
200 OK
json
{
"nsp-resource-pool:num-consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='123']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 123,
"next-value": 300,
"registered-date": "2025-12-13T10:56:09.916Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='122']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 122,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.915Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='121']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 121,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.914Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='120']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 120,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.913Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='119']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 119,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.912Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='118']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 118,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.911Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='117']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 117,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.910Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='116']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 116,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.909Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='115']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 115,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.908Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='114']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 114,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.907Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='113']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 113,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.906Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='112']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 112,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.905Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='111']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 111,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.904Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='110']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 110,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.903Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='109']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 109,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.902Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='108']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 108,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.902Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='107']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 107,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.901Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='106']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 106,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.900Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='105']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 105,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.899Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='104']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 104,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.898Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='103']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 103,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.896Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='102']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 102,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.895Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='101']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 101,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.894Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='100']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 100,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.888Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
}
]
}
| Date | Sat, 13 Dec 2025 10:57:18 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 24 |
| start-index | 0 |
| end-index | 23 |
| Cache-Control | no-cache |
GETget all rdrt consumed resources
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources"
Example Response
200 OK
json
{
"nsp-resource-pool:consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:100']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:100",
"registered-date": "2025-12-13T10:56:29.661Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:101']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:101",
"registered-date": "2025-12-13T10:56:29.665Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:102']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:102",
"registered-date": "2025-12-13T10:56:29.667Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:103']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:103",
"registered-date": "2025-12-13T10:56:29.668Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:104']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:104",
"registered-date": "2025-12-13T10:56:29.669Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:105']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:105",
"registered-date": "2025-12-13T10:56:29.670Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:106']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:106",
"registered-date": "2025-12-13T10:56:29.671Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:107']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:107",
"registered-date": "2025-12-13T10:56:29.672Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:108']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:108",
"registered-date": "2025-12-13T10:56:29.673Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:109']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:109",
"registered-date": "2025-12-13T10:56:29.674Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:110']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:110",
"registered-date": "2025-12-13T10:56:29.675Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:111']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:111",
"registered-date": "2025-12-13T10:56:29.676Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:112']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:112",
"registered-date": "2025-12-13T10:56:29.677Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:113']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:113",
"registered-date": "2025-12-13T10:56:29.678Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:114']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:114",
"registered-date": "2025-12-13T10:56:29.680Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:115']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:115",
"registered-date": "2025-12-13T10:56:29.680Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:116']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:116",
"registered-date": "2025-12-13T10:56:29.681Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:117']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:117",
"registered-date": "2025-12-13T10:56:29.682Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:118']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:118",
"registered-date": "2025-12-13T10:56:29.683Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:119']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:119",
"registered-date": "2025-12-13T10:56:29.684Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:120']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:120",
"registered-date": "2025-12-13T10:56:29.685Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:121']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:121",
"registered-date": "2025-12-13T10:56:29.687Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:122']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:122",
"registered-date": "2025-12-13T10:56:29.688Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:123']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:123",
"registered-date": "2025-12-13T10:56:29.689Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:124']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:124",
"registered-date": "2025-12-13T10:56:29.691Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:125']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:125",
"registered-date": "2025-12-13T10:56:29.692Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:126']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:126",
"registered-date": "2025-12-13T10:56:29.694Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:127']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:127",
"registered-date": "2025-12-13T10:56:29.695Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:128']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:128",
"registered-date": "2025-12-13T10:56:29.697Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:129']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:129",
"registered-date": "2025-12-13T10:56:29.700Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:130']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:130",
"registered-date": "2025-12-13T10:56:29.702Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:131']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:131",
"registered-date": "2025-12-13T10:56:29.704Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:132']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:132",
"registered-date": "2025-12-13T10:56:29.705Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:133']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:133",
"registered-date": "2025-12-13T10:56:29.706Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:134']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:134",
"registered-date": "2025-12-13T10:56:29.708Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:135']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:135",
"registered-date": "2025-12-13T10:56:29.709Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:136']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:136",
"registered-date": "2025-12-13T10:56:29.711Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:137']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:137",
"registered-date": "2025-12-13T10:56:29.712Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:138']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:138",
"registered-date": "2025-12-13T10:56:29.713Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:139']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:139",
"registered-date": "2025-12-13T10:56:29.714Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:140']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:140",
"registered-date": "2025-12-13T10:56:29.715Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:141']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:141",
"registered-date": "2025-12-13T10:56:29.716Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:142']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:142",
"registered-date": "2025-12-13T10:56:29.717Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:143']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:143",
"registered-date": "2025-12-13T10:56:29.718Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:144']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:144",
"registered-date": "2025-12-13T10:56:29.720Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:145']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:145",
"registered-date": "2025-12-13T10:56:29.721Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:146']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:146",
"registered-date": "2025-12-13T10:56:29.723Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:147']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:147",
"registered-date": "2025-12-13T10:56:29.724Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:148']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:148",
"registered-date": "2025-12-13T10:56:29.726Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:149']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:149",
"registered-date": "2025-12-13T10:56:29.727Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:150']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:150",
"registered-date": "2025-12-13T10:56:29.728Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:151']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:151",
"registered-date": "2025-12-13T10:56:29.729Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:152']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:152",
"registered-date": "2025-12-13T10:56:29.730Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:153']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:153",
"registered-date": "2025-12-13T10:56:29.731Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:154']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:154",
"registered-date": "2025-12-13T10:56:29.732Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:155']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:155",
"registered-date": "2025-12-13T10:56:29.733Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:156']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:156",
"registered-date": "2025-12-13T10:56:29.734Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:157']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:157",
"registered-date": "2025-12-13T10:56:29.735Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:158']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:158",
"registered-date": "2025-12-13T10:56:29.736Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:159']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:159",
"registered-date": "2025-12-13T10:56:29.737Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:160']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:160",
"registered-date": "2025-12-13T10:56:29.738Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:161']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:161",
"registered-date": "2025-12-13T10:56:29.739Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:162']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:162",
"registered-date": "2025-12-13T10:56:29.740Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:163']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:163",
"registered-date": "2025-12-13T10:56:29.741Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:164']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:164",
"registered-date": "2025-12-13T10:56:29.742Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:165']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:165",
"registered-date": "2025-12-13T10:56:29.743Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:166']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:166",
"registered-date": "2025-12-13T10:56:29.745Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:167']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:167",
"registered-date": "2025-12-13T10:56:29.747Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:168']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:168",
"registered-date": "2025-12-13T10:56:29.749Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:169']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:169",
"registered-date": "2025-12-13T10:56:29.750Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
| Date | Sat, 13 Dec 2025 10:57:29 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 70 |
| start-index | 0 |
| end-index | 69 |
| Cache-Control | no-cache |
GETget all IP consumed resources
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources"
Example Response
200 OK
json
{
"nsp-resource-pool:consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.128.0/18']",
"nsp-model:creation-time": "2025-12-13T10:56:42.291Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:42.291Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.128.0/18",
"registered-date": "2025-12-13T10:56:42.304Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.192.0/22']",
"nsp-model:creation-time": "2025-12-13T10:56:42.291Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:42.291Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.192.0/22",
"registered-date": "2025-12-13T10:56:42.311Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.196.0/32']",
"nsp-model:creation-time": "2025-12-13T10:56:46.367Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:46.367Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.196.0/32",
"registered-date": "2025-12-13T10:56:46.385Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.127.0/32']",
"nsp-model:creation-time": "2025-12-13T10:56:46.367Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:46.367Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.127.0/32",
"registered-date": "2025-12-13T10:56:46.387Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
| Date | Sat, 13 Dec 2025 10:57:40 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 4 |
| start-index | 0 |
| end-index | 3 |
| Cache-Control | no-cache |
GETget all string consumed resources
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources"
Example Response
200 OK
json
{
"nsp-resource-pool:consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='AAA']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "AAA",
"registered-date": "2025-12-13T10:57:08.698Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='CCC']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "CCC",
"registered-date": "2025-12-13T10:57:08.702Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='BBB']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "BBB",
"registered-date": "2025-12-13T10:57:08.711Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
| Date | Sat, 13 Dec 2025 10:57:52 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 3 |
| start-index | 0 |
| end-index | 2 |
| Cache-Control | no-cache |
Threshold Policies
GETget all policies
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy"
Example Response
200 OK
json
{
"nsp-resource-pool:threshold-policy": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:threshold-policy",
"nsp-model:identifier": "/nsp-resource-pool:threshold-policy"
},
"threshold-policies": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:threshold-policy/threshold-policies",
"nsp-model:identifier": "/nsp-resource-pool:threshold-policy/threshold-policies[name='policy1']",
"nsp-model:creation-time": "2025-12-13T11:01:22.106Z",
"nsp-model:last-modified-time": "2025-12-13T11:01:22.106Z"
},
"name": "policy1",
"threshold-type": "utilization",
"warning": 30,
"minor": 60,
"major": 80
}
]
}
}
| Date | Sat, 13 Dec 2025 11:02:13 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
GETget a policy
Example Request
GET https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy/threshold-policies=policy1 HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy/threshold-policies=policy1"
Example Response
200 OK
json
{
"nsp-resource-pool:threshold-policies": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:threshold-policy/threshold-policies",
"nsp-model:identifier": "/nsp-resource-pool:threshold-policy/threshold-policies[name='policy1']",
"nsp-model:creation-time": "2025-12-13T11:01:22.106Z",
"nsp-model:last-modified-time": "2025-12-13T11:01:22.106Z"
},
"name": "policy1",
"threshold-type": "utilization",
"warning": 30,
"minor": 60,
"major": 80
}
]
}
| Date | Sat, 13 Dec 2025 11:02:08 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
POSTcreate threshold policy
Example Request
POST https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:threshold-policies": [
{
"name": "policy1",
"threshold-type": "utilization",
"warning": 30,
"minor": 60,
"major": 80
}
]
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:threshold-policies": [
{
"name": "policy1",
"threshold-type": "utilization",
"warning": 30,
"minor": 60,
"major": 80
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy"
Example Response
| Date | Sat, 13 Dec 2025 11:01:22 GMT |
|---|---|
| Content-Length | 0 |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Location | /restconf/data/nsp-resource-pool:threshold-policy/threshold-policies=policy1 |
| Cache-Control | no-cache |
PATCHassign policy to pool
Example Request
PATCH https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"string-pool-spec": {
"max-capacity": 200,
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec",
"nsp-model:creation-time": "2023-04-28T09:02:03.671Z",
"nsp-model:last-modified-time": "2023-04-28T09:02:03.671Z"
},
"string-length": 7
},
"description": "this is a String pool",
"threshold-policy": "policy1"
}
]
}
curl -X PATCH -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"string-pool-spec": {
"max-capacity": 200,
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec",
"nsp-model:creation-time": "2023-04-28T09:02:03.671Z",
"nsp-model:last-modified-time": "2023-04-28T09:02:03.671Z"
},
"string-length": 7
},
"description": "this is a String pool",
"threshold-policy": "policy1"
}
]
}' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 11:01:51 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
PATCHremove policy from pool
Example Request
PATCH https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"string-pool-spec": {
"max-capacity": 200,
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec",
"nsp-model:creation-time": "2023-04-28T09:02:03.671Z",
"nsp-model:last-modified-time": "2023-04-28T09:02:03.671Z"
},
"string-length": 7
},
"description": "this is a String pool",
"threshold-policy": null
}
]
}
curl -X PATCH -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool:string-resource-pools": [
{
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"string-pool-spec": {
"max-capacity": 200,
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec",
"nsp-model:creation-time": "2023-04-28T09:02:03.671Z",
"nsp-model:last-modified-time": "2023-04-28T09:02:03.671Z"
},
"string-length": 7
},
"description": "this is a String pool",
"threshold-policy": null
}
]
}
' "https://{{server}}/restconf/data/nsp-resource-pool:resource-pools/string-resource-pools=svc-1,ottawa"
Example Response
| Date | Sat, 13 Dec 2025 11:02:36 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
DELETEdelete a policy
Example Request
DELETE https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy/threshold-policies=policy1 HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X DELETE -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}/restconf/data/nsp-resource-pool:threshold-policy/threshold-policies=policy1"
Example Response
| Date | Sat, 13 Dec 2025 11:02:43 GMT |
|---|---|
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |
GETget all pools
Example Request
GET https://{{server}}:8545/restconf/data/nsp-resource-pool:resource-pools HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
curl -X GET -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" "https://{{server}}:8545/restconf/data/nsp-resource-pool:resource-pools"
Example Response
200 OK
json
{
"nsp-resource-pool:resource-pools": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools"
},
"rd-rt-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='rd-pool'][scope='global']",
"nsp-model:creation-time": "2025-12-10T22:50:48.610Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.610Z"
},
"name": "rd-pool",
"scope": "global",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rd-pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"rd-rt-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/rd-rt-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='rd-pool'][scope='global']/rd-rt-pool-spec",
"nsp-model:creation-time": "2025-12-10T22:50:48.610Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.610Z"
},
"min-value": 0,
"max-value": 4294967295
}
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='rt-pool'][scope='global']",
"nsp-model:creation-time": "2025-12-10T22:50:48.866Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.866Z"
},
"name": "rt-pool",
"scope": "global",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rt-pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"rd-rt-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/rd-rt-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='rt-pool'][scope='global']/rd-rt-pool-spec",
"nsp-model:creation-time": "2025-12-10T22:50:48.866Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.866Z"
},
"min-value": 0,
"max-value": 4294967295
}
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']",
"nsp-model:creation-time": "2025-12-13T10:56:26.523Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:26.523Z"
},
"name": "test",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:rd_rt",
"description": "rdrt test pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"rd-rt-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/rd-rt-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/rd-rt-pool-spec",
"nsp-model:creation-time": "2025-12-13T10:56:26.523Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:26.523Z"
},
"min-value": 100,
"max-value": 299
},
"rd-rt-pool-base-string-stats": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/rd-rt-pool-base-string-stats",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/rd-rt-pool-base-string-stats[base-string='3.3.3.3']",
"nsp-model:creation-time": "2025-12-13T10:56:53.975Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:53.975Z"
},
"base-string": "3.3.3.3",
"capacity": "200",
"usage": "35.00 %"
}
],
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:100']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:100",
"registered-date": "2025-12-13T10:56:29.661Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:101']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:101",
"registered-date": "2025-12-13T10:56:29.665Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:102']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:102",
"registered-date": "2025-12-13T10:56:29.667Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:103']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:103",
"registered-date": "2025-12-13T10:56:29.668Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:104']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:104",
"registered-date": "2025-12-13T10:56:29.669Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:105']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:105",
"registered-date": "2025-12-13T10:56:29.670Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:106']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:106",
"registered-date": "2025-12-13T10:56:29.671Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:107']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:107",
"registered-date": "2025-12-13T10:56:29.672Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:108']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:108",
"registered-date": "2025-12-13T10:56:29.673Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:109']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:109",
"registered-date": "2025-12-13T10:56:29.674Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:110']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:110",
"registered-date": "2025-12-13T10:56:29.675Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:111']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:111",
"registered-date": "2025-12-13T10:56:29.676Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:112']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:112",
"registered-date": "2025-12-13T10:56:29.677Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:113']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:113",
"registered-date": "2025-12-13T10:56:29.678Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:114']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:114",
"registered-date": "2025-12-13T10:56:29.680Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:115']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:115",
"registered-date": "2025-12-13T10:56:29.680Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:116']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:116",
"registered-date": "2025-12-13T10:56:29.681Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:117']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:117",
"registered-date": "2025-12-13T10:56:29.682Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:118']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:118",
"registered-date": "2025-12-13T10:56:29.683Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:119']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:119",
"registered-date": "2025-12-13T10:56:29.684Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:120']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:120",
"registered-date": "2025-12-13T10:56:29.685Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:121']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:121",
"registered-date": "2025-12-13T10:56:29.687Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:122']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:122",
"registered-date": "2025-12-13T10:56:29.688Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:123']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:123",
"registered-date": "2025-12-13T10:56:29.689Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:124']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:124",
"registered-date": "2025-12-13T10:56:29.691Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:125']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:125",
"registered-date": "2025-12-13T10:56:29.692Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:126']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:126",
"registered-date": "2025-12-13T10:56:29.694Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:127']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:127",
"registered-date": "2025-12-13T10:56:29.695Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:128']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:128",
"registered-date": "2025-12-13T10:56:29.697Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:129']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:129",
"registered-date": "2025-12-13T10:56:29.700Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:130']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:130",
"registered-date": "2025-12-13T10:56:29.702Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:131']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:131",
"registered-date": "2025-12-13T10:56:29.704Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:132']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:132",
"registered-date": "2025-12-13T10:56:29.705Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:133']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:133",
"registered-date": "2025-12-13T10:56:29.706Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:134']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:134",
"registered-date": "2025-12-13T10:56:29.708Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:135']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:135",
"registered-date": "2025-12-13T10:56:29.709Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:136']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:136",
"registered-date": "2025-12-13T10:56:29.711Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:137']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:137",
"registered-date": "2025-12-13T10:56:29.712Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:138']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:138",
"registered-date": "2025-12-13T10:56:29.713Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:139']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:139",
"registered-date": "2025-12-13T10:56:29.714Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:140']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:140",
"registered-date": "2025-12-13T10:56:29.715Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:141']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:141",
"registered-date": "2025-12-13T10:56:29.716Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:142']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:142",
"registered-date": "2025-12-13T10:56:29.717Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:143']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:143",
"registered-date": "2025-12-13T10:56:29.718Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:144']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:144",
"registered-date": "2025-12-13T10:56:29.720Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:145']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:145",
"registered-date": "2025-12-13T10:56:29.721Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:146']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:146",
"registered-date": "2025-12-13T10:56:29.723Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:147']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:147",
"registered-date": "2025-12-13T10:56:29.724Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:148']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:148",
"registered-date": "2025-12-13T10:56:29.726Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:149']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:149",
"registered-date": "2025-12-13T10:56:29.727Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:150']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:150",
"registered-date": "2025-12-13T10:56:29.728Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:151']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:151",
"registered-date": "2025-12-13T10:56:29.729Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:152']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:152",
"registered-date": "2025-12-13T10:56:29.730Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:153']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:153",
"registered-date": "2025-12-13T10:56:29.731Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:154']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:154",
"registered-date": "2025-12-13T10:56:29.732Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:155']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:155",
"registered-date": "2025-12-13T10:56:29.733Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:156']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:156",
"registered-date": "2025-12-13T10:56:29.734Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:157']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:157",
"registered-date": "2025-12-13T10:56:29.735Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:158']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:158",
"registered-date": "2025-12-13T10:56:29.736Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:159']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:159",
"registered-date": "2025-12-13T10:56:29.737Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:160']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:160",
"registered-date": "2025-12-13T10:56:29.738Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:161']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:161",
"registered-date": "2025-12-13T10:56:29.739Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:162']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:162",
"registered-date": "2025-12-13T10:56:29.740Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:163']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:163",
"registered-date": "2025-12-13T10:56:29.741Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:164']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:164",
"registered-date": "2025-12-13T10:56:29.742Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:165']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:165",
"registered-date": "2025-12-13T10:56:29.743Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:166']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:166",
"registered-date": "2025-12-13T10:56:29.745Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:167']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:167",
"registered-date": "2025-12-13T10:56:29.747Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:168']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:168",
"registered-date": "2025-12-13T10:56:29.749Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/rd-rt-resource-pools[name='test'][scope='ottawa']/consumed-resources[value='3.3.3.3:169']",
"nsp-model:creation-time": "2025-12-13T10:56:29.655Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:29.655Z"
},
"value": "3.3.3.3:169",
"registered-date": "2025-12-13T10:56:29.750Z",
"reference": "ref-1",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
],
"ip-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']",
"nsp-model:creation-time": "2025-12-13T10:56:38.683Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:38.683Z"
},
"name": "ip-1",
"scope": "net-1",
"type": "nsp-resource-pool-utils:ip-address-prefix",
"description": "this is a Subnet IP pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/statistics",
"nsp-model:creation-time": "2025-12-13T10:56:54.035Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:54.035Z"
},
"capacity": "16842752",
"usage": "0.10 %"
},
"ip-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec"
},
"ip-masks": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec/ip-masks",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec/ip-masks[ip-mask='192.168.0.0/16']",
"nsp-model:creation-time": "2025-12-13T10:56:38.683Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:38.683Z"
},
"ip-mask": "192.168.0.0/16",
"purposes": [
"testing",
"pool B"
]
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/ip-pool-spec/ip-masks",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/ip-pool-spec/ip-masks[ip-mask='10.0.0.0/8']",
"nsp-model:creation-time": "2025-12-13T10:56:38.683Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:38.683Z"
},
"ip-mask": "10.0.0.0/8",
"purposes": [
"testing",
"pool A"
]
}
]
},
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.128.0/18']",
"nsp-model:creation-time": "2025-12-13T10:56:42.291Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:42.291Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.128.0/18",
"registered-date": "2025-12-13T10:56:42.304Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.192.0/22']",
"nsp-model:creation-time": "2025-12-13T10:56:42.291Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:42.291Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.192.0/22",
"registered-date": "2025-12-13T10:56:42.311Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.196.0/32']",
"nsp-model:creation-time": "2025-12-13T10:56:46.367Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:46.367Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.196.0/32",
"registered-date": "2025-12-13T10:56:46.385Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/ip-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/ip-resource-pools[name='ip-1'][scope='net-1']/consumed-resources[value='192.168.127.0/32']",
"nsp-model:creation-time": "2025-12-13T10:56:46.367Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:46.367Z"
},
"purpose": "testing",
"ip-mask": "192.168.0.0/16",
"value": "192.168.127.0/32",
"registered-date": "2025-12-13T10:56:46.387Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
],
"numeric-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='ibsf-global-svc-id-pool'][scope='global']",
"nsp-model:creation-time": "2025-12-10T22:50:49.129Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:49.129Z"
},
"name": "ibsf-global-svc-id-pool",
"scope": "global",
"type": "nsp-resource-pool-utils:numerical",
"description": "ibsf-global-svc-id-pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='ibsf-global-svc-id-pool'][scope='global']/statistics",
"nsp-model:creation-time": "2025-12-10T22:50:52.043Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:52.043Z"
},
"capacity": "2200000001",
"usage": "0.00 %"
},
"numeric-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/numeric-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='ibsf-global-svc-id-pool'][scope='global']/numeric-spec",
"nsp-model:creation-time": "2025-12-10T22:50:49.129Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:49.129Z"
},
"min-value": 2000000000,
"max-value": 4200000000
}
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vc-id-pool'][scope='global']",
"nsp-model:creation-time": "2025-12-10T22:50:48.272Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.272Z"
},
"name": "vc-id-pool",
"scope": "global",
"type": "nsp-resource-pool-utils:numerical",
"description": "vc-id-pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vc-id-pool'][scope='global']/statistics",
"nsp-model:creation-time": "2025-12-10T22:50:52.161Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:52.161Z"
},
"capacity": "4294967295",
"usage": "0.00 %"
},
"numeric-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/numeric-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vc-id-pool'][scope='global']/numeric-spec",
"nsp-model:creation-time": "2025-12-10T22:50:48.272Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:48.272Z"
},
"min-value": 1,
"max-value": 4294967295
}
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id-pool'][scope='global']",
"nsp-model:creation-time": "2025-12-10T22:50:47.397Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:47.397Z"
},
"name": "vlan-id-pool",
"scope": "global",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id-pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id-pool'][scope='global']/statistics",
"nsp-model:creation-time": "2025-12-10T22:50:52.327Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:52.327Z"
},
"capacity": "4096",
"usage": "0.00 %"
},
"numeric-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/numeric-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id-pool'][scope='global']/numeric-spec",
"nsp-model:creation-time": "2025-12-10T22:50:47.397Z",
"nsp-model:last-modified-time": "2025-12-10T22:50:47.397Z"
},
"min-value": 0,
"max-value": 4095
}
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']",
"nsp-model:creation-time": "2025-12-13T10:56:07.052Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:07.052Z"
},
"name": "vlan-id",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:numerical",
"description": "vlan-id pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/statistics",
"nsp-model:creation-time": "2025-12-13T10:56:54.003Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:54.003Z"
},
"capacity": "201",
"usage": "11.94 %"
},
"numeric-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/numeric-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/numeric-spec",
"nsp-model:creation-time": "2025-12-13T10:56:07.052Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:07.052Z"
},
"min-value": 100,
"max-value": 300
},
"num-consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='100']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 100,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.888Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='101']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 101,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.894Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='102']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 102,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.895Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='103']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 103,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.896Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='104']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 104,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.898Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='105']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 105,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.899Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='106']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 106,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.900Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='107']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 107,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.901Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='108']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 108,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.902Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='109']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 109,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.902Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='110']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 110,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.903Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='111']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 111,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.904Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='112']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 112,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.905Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='113']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 113,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.906Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='114']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 114,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.907Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='115']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 115,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.908Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='116']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 116,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.909Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='117']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 117,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.910Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='118']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 118,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.911Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='119']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 119,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.912Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='120']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 120,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.913Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='121']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 121,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.914Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='122']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 122,
"next-value": 0,
"registered-date": "2025-12-13T10:56:09.915Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/numeric-resource-pools/num-consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/numeric-resource-pools[name='vlan-id'][scope='ottawa']/num-consumed-resources[value='123']",
"nsp-model:creation-time": "2025-12-13T10:56:09.883Z",
"nsp-model:last-modified-time": "2025-12-13T10:56:09.883Z"
},
"value": 123,
"next-value": 300,
"registered-date": "2025-12-13T10:56:09.916Z",
"reference": "ref-1",
"owner": "CUST1",
"description": null,
"confirmed": true
}
]
}
],
"string-resource-pools": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']",
"nsp-model:creation-time": "2025-12-13T10:57:03.682Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:03.682Z"
},
"name": "svc-1",
"scope": "ottawa",
"type": "nsp-resource-pool-utils:literal",
"description": "this is a String pool",
"threshold-policy": null,
"alarm": null,
"alarm-severity": null,
"delete-when-empty": false,
"string-pool-spec": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/string-pool-spec",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/string-pool-spec",
"nsp-model:creation-time": "2025-12-13T10:57:03.682Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:03.682Z"
},
"string-length": 7,
"pattern": "^[a-zA-Z]{3}",
"max-capacity": 200
},
"statistics": {
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/statistics",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/statistics",
"nsp-model:creation-time": "2025-12-13T10:57:54.048Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:54.048Z"
},
"capacity": "200",
"usage": "1.50 %"
},
"consumed-resources": [
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='AAA']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "AAA",
"registered-date": "2025-12-13T10:57:08.698Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='CCC']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "CCC",
"registered-date": "2025-12-13T10:57:08.702Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
},
{
"@": {
"nsp-model:schema-nodeid": "/nsp-resource-pool:resource-pools/string-resource-pools/consumed-resources",
"nsp-model:identifier": "/nsp-resource-pool:resource-pools/string-resource-pools[name='svc-1'][scope='ottawa']/consumed-resources[value='BBB']",
"nsp-model:creation-time": "2025-12-13T10:57:08.693Z",
"nsp-model:last-modified-time": "2025-12-13T10:57:08.693Z"
},
"value": "BBB",
"registered-date": "2025-12-13T10:57:08.711Z",
"reference": "for Cust1 network",
"owner": "Cust1",
"description": null,
"confirmed": true
}
]
}
]
}
}
| Date | Sat, 13 Dec 2025 10:58:22 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| total-count | 1 |
| start-index | 0 |
| end-index | 0 |
| Cache-Control | no-cache |
POSTexecution-delete-resources-by-owner-scopes
Example Request
POST https://{{server}}/restconf/operations/nsp-resource-pool-operations:execution-delete-resources-by-owner-scopes HTTP/1.1
Authorization: Bearer {{token}}
Content-Type: application/yang-data+json
Accept: application/yang-data+json
{
"nsp-resource-pool-operations:input": {
"name": "test",
"type": "nsp-resource-pool-utils:rd_rt",
"owner": "Cust1",
"scopes":["ottawa"]
}
}
curl -X POST -H "Authorization: Bearer {{token}}" -H "Content-Type: application/yang-data+json" -H "Accept: application/yang-data+json" -d '{
"nsp-resource-pool-operations:input": {
"name": "test",
"type": "nsp-resource-pool-utils:rd_rt",
"owner": "Cust1",
"scopes":["ottawa"]
}
}' "https://{{server}}/restconf/operations/nsp-resource-pool-operations:execution-delete-resources-by-owner-scopes"
Example Response
200 OK
json
{
"nsp-resource-pool-operations:output": {},
"statusCode": "OK"
}
| Date | Sat, 13 Dec 2025 11:02:56 GMT |
|---|---|
| Content-Type | application/yang-data+json |
| Transfer-Encoding | chunked |
| Connection | keep-alive |
| Strict-Transport-Security | max-age=0 |
| X-Frame-Options | SAMEORIGIN |
| X-Content-Type-Options | nosniff |
| X-XSS-Protection | 1; mode=block |
| Content-Security-Policy | frame-src * https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; frame-ancestors 'self' https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; connect-src 'self' wss://100.127.196.121:* wss://100.127.202.2:* wss://192.168.97.118:* https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:*; default-src 'self' data: https://100.127.196.121:* https://192.168.97.118:* https://100.127.202.2:* 'unsafe-inline' ; img-src * data:; |
| Cache-Control | no-cache, no-store, max-age=0, must-revalidate |
| Pragma | no-cache |
| Expires | 0 |