You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

CPS-390 - Getting issue details... STATUS

Issues and Decisions


IssueNotesDecision
1How will hostname and port be provided when DMI-Plugin register itself and its list of cmHandles with NCMP

The team thinks that the information should instead be provided in the form of a ‘host-name’ and a ‘port’  (there was some debate on service-name v. host-name but it was settled on host-name)


e.g. "dmi-plugin" : { <host-name>,  <port> }


Where the host-name is unique. (the DB might assign an internal unique ID for each entry but that is just for indexing and x-referencing in a relation DB and this ID is not to be used/ exposed externally)


DMI URI

DMI URI format to follow below pattern Sandeep Shah

<OP>dmi/<v{v-number}>/<data|operations|dmi-action>/ch/<cmHandle>/ds/{datastore}/[rp:]<resource-path>?<query>




<OP>mandatorythe HTTP method
dmimandatorythe dmi root resource
<v{v-number}>mandatoryversion of the dmi interface is the target resource URI is the query parameter list
<data|operations|dmi-action>mandatoryyang data, rpc operation or a (non-modeled) ncmp api action
<cmHandle>mandatoryunique (string) identifier of a yang tree instance.
{datastore}optionaloptional datastore
<resource-path>optionalthe path expression identifying the resource that is
being accessed by the operation. If this field is not
present, then the target resource is the API itself.
<query>optionalthe set of parameters associated with the RESTCONF message;
see Section 3.4 of [RFC3986]. RESTCONF parameters have 
the familiar form of "name=value" pairs. Most query parameters are
optional to implement by the server and optional to use by the client. Each optional query parameter is identified by a URI

Datastore

If datastore (ds/{datastore}) is not included in the URL then the request is defaulted to ncmp-datastore:running/operational.

If the cmhandle metadata indicates that data is not synched in CPS then the request is forwarded to the dmi-plugin

RESTCONF/NETCONF relationship


REST API


UsecaseREST MethodURIExample
1Add a data resource for a cmHandlePOST

{dmi-root}/dmi/v1/data/ch/<cmhandle>/ds/ncmp-datastore:running/{parent-data-resource-identifier}

{

<new-yang-data-resource>

}

Content-Type: application/json

"data" payload : yang-data+json

see example 4 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
2Delete a data resource for a cmHandlePUT{dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:running/{resource-identifier}see example 7 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
3Patch a data resource for a cmHandlePATCH

{dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:running/{resource-identifier}

{
<yang-data-for-merging>
}

Content-Type: application/json

"data" payload : yang-data+json

see example 5 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
4Patch multiple child resources for a single cmHandlePATCH

{dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:running/{resource-identifier}


Content-Type: application/json

"data" payload : yang-patch+json

see example 6 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
5Execute a yang action on a cmhandle instancePOST

dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:operational/{resource-identifier}/{action}


input: {
"param1Name" :"param1Value”,
"param2Name" : "param2Value”

}


Note : If the "action" statement has no "input" section, the request message MUST NOT include a message-body

see example 10 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
6Execute an rpc operationPOST

{dmi-root}/dmi/v1/operations/ch/<cm-handle>/ds/ncmp-datastore:operational/ {module-name}:{action}

{
input: {
"param1Name" : "param1Value”,
"param2Name" : "param2Value”
}
}

Note: If there is no "input" section, the request MUST NOT include a message-body

see example 11 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
7Read a filtered set of data under a data resource for a cmHandlePUT

{dmiroot}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:operational/{resource-identifier}?fields={fields-expression}

OptionDescription
fieldsRequest a subset of the target
resource contents

8Read data resources with specified fields under a given data resource for a given cmHandlePUT

{dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:operational/{resource-identifier}?fields={fields-expression}


OptionDescription
fieldsRequest a subset of the target
resource contents
see example 12 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
9Get data resource with 'fileds' for a cmhandle with a given scope conditionPUT{dmi-root}/dmi/v1/data/ch/{cm-handle}/ds/ncmp-datastore:operational/{resourcepath}?fields={fields}&scope={scope}see example 2 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
10Read descendant nodes to a given depth for a given cmHandlePUT

{dmi-root}/dmi/v1/data/ch/{cm-handle}/ds/ncmp-datastore:operational/{resource-identifier}?depth={level}


OptionDescription
depthRequest limited sub-tree depth in
the reply content
If '1' then only immediate resource
is retrieved
If '2' then resource plus next level
resources are retrieved
see example 12 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI
11Replace data for a CMHandlePUT

{dmi-root}/dmi/v1/data/ch/<cm-handle>/ds/ncmp-datastore:running/{resource-identifier}

{

   data : {

            .... the complete tree config to be replaced

           }

}

see example 12 CPS-391Spike: Define and Agree NCMP REST Interface#RESTAPI


DMI Inventory and Sync



Use CaseRest MethodURIExample
1DMI registers a new data source with NCMP POST

{ncmp-root}/ncmp/v1/dmi-plugin/
{
    "dmi-plugin-id : { dmi-plugin-id }
     "dmi-source-id" : { unique-data-source-id }
}


dmi-plugin-id should be resolvable service name ink8s DNS

Scenario : Register/Create a new dmi-plugin data source in NCMP
Method : POST
URI : {ncmp-root}/ncmp/v1/dmi-plugin/

Header :
Content-Type: application/json

Body :
{
"dmi-plugin-id : "service:sample-service",
"dmi-source-id" : "sample"
}

Success Response :
HTTP/1.1 202 Accepted
Date: Thu, 26 Jan 2021 20:56:30 GMT
Server: example-server
{}


Error Response:
HTTP/1.1 409 Conflict
Date: Thu, 26 Jan 2021 20:56:30 GMT
Server: example-server
{
"error" : {
"error-type" : "protocol",
"error-tag" : "data exists",
"error-message" : "Datasource service:sample-service/sample already
registered/created"
}
}


An error will tell the DMI Plugin that this datasource has already been processed - no need to recover the cmhandles again.

2Delete a data source from NCMP DMI Plugin NCMPDELETE{ncmp-root}/ncmp/v1/dmi-pluigin/ { dmi-plugin-id}/dmi-source/ { unique-data-source-id }

Scenario
Remove a data source and all related NCMP handles from NCMP


Method :
DELETE
URI
{ncmp-root}/ncmp/v1/cmhandle-source/dmi-pluigin/service:sample-service/dmi-source/sample-dmi-source
Header :
Content-Type: application/json
Body :
{}


Success Response :
HTTP/1.1 202 Accepted
Date: Thu, 26 Jan 2021 20:56:30 GMT
Server: example-server
{}


Error Response:
HTTP/1.1 409 Conflict
Date: Thu, 26 Jan 2021 20:56:30 GMT
Server: example-server
{
"error" : {
"error-type" : "protocol",
"error-tag" : "data exists",
"error-message" : "Datasource service:sample-service/sample-dmi-source already
registered/created"
     }
}
An error will tell the DMI Plugin that this datasource has already been processed - no need to recover the cmhandles again.

3

NCMP requests cmhandles for a datasource (may be refresh of existing
datasource or for a newly registered datasource)


NCMP DMI plugin

GET

{dmi-root}/v1/dmi-source/{unique-data-source-id}?topic={topic-id}


Content-Type: application/json

Note - the following will refresh ALL dmi data sources managed by a dmi plugin
{dmi-root}/v1/dmi-source?topic={topic-id}

Scenario : NCMP requests sync of cmhandles for a datasource
Method : GET
URI : {dmi-root}/v1/dmi-source/dmi-source-sample?topic={topic-id}
Header :
Content-Type: application/json
Body :
{}


Event Body :
{
"dmiPluginId" : "service:sample-service", //should be resolvable sevicename in k8s DNS
"dmi-source-id" : "sample-id"
"createcmhandles" : [
    {
       "cmhandle" : "sample-cmhandle-1",
       "additionalProperties" :
    {
        "subsystemId" : "sample-subsystemId-1"
         "targetId" : "sample-targedId-1"
     }
},
    {
         "cmhandle" : "sample-cmhandle-2",
         "additionalProperties" :
     {
         "subsystemId" : "sample-subsystemId-2"
           "targetId" : "sample-targedId-2"
     }
 }
...
...
],

4Notify of change to CMHandle(s)
Topic : 'NCMP_INVENTORY' / sync request topic
The topic name should come from Data Catalog OR should DMI registry store the topic from the initial NCMP sync request?)

Topic : NCMP_INVENTORY


Event Body :
{
"dmiPluginId" : "service:sample-service",
"dmi-source-id" : "dmi-source-id-001"
"createcmhandles" : # Newly discovered/created cmhandles
{
"cmhandle" : "cmhandle-001",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-001"
}
},
{
"cmhandle" : "cmhandle-002",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-002"
}
}
...
...
],
"updatedcmhandles" : # For example the cmhandle has got rehomes to a new system.
{
"cmhandle" : "cmhandle-003",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-001"
}
},
{
"cmhandle" : "cmhandle-004",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-002"
}
}
...
...
],
"removedcmhandles" : [ "cmhandle-005", .... ], # array of cmhandles that have been deleted
from the network.
"migratedcmhandles" : [
{
"cmhandle" : "cmhandle-005",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-001"
}
},
{
"cmhandle" : "cmhandle-006",
"additionalProperties" :
{
"subsystemId" : "subsystemId-001"
"targetId" : "targetId-002"
}
}
...
...
]
}

Model API



Use CaseRest MethodURIExample
1Get model (module set) for cmhandlesPUT

{dmi-root}/dmi/v1/model/ch/<cm-handle>

Scenario : Get the model data for a given cmhandle

Method : PUT

URI : {dmi-root}/dmi/v1/model/ch/cmhandle-001?fields=ietf-yang-library:modules-set

Header :
Content-Type: application/json
Accept: application/json

Body :

{
"operation" : "read",
"cmhandle" : "cmhandle-001",
"additionalProperties" : [
"target" : "sample-target",
"subSystem" : "subSystem-001"
]
}

Response:

{
"cmHandle" : "cmhandle-001",
"ietf-yang-library:modules-set" : [ # from RFC 8525
{
"name" : "123456",
"module" : [
{
"name" : "store",
"revision" : "2020-12-09",
"namespace" : "org:onap:cps:test:store",
"submodule" : [
{
"name" : "bookstore",
"revision" : "2020-12-17",
"namespace" : "org:onap:cps:test:bookstore",
"submodule" : [
{
...
}
]
}
]
},
{
"name" : "ietf-yang-library",
"revision" : "2016-06-21",
"namespace" : "urn:ietf:params:xml:ns:yang:ietfyang-library"
}
]
}
}

GET Request with body


The HTTP libraries of certain languages (notably JavaScript) don’t allow GET requests to have a request body. In fact, some users are surprised that GET requests are ever allowed to have a body.

The truth is that RFC 7231—the RFC that deals with HTTP semantics and content—does not define what should happen to a GET request with a body! As a result, some HTTP servers allow it, and some—especially caching proxies—don’t.

The authors of Elasticsearch prefer using GET for a search request because they feel that it describes the action—retrieving information—better than the POST verb. However, because GET with a request body is not universally supported, the search API also accepts POST requests: }

The same rule applies to any other GET API that requires a request body.
See Elasticsearch details here for more info


yang-patch operations (see rfc8072)


"create", "delete", "insert", "merge", "move", "replace", and "remove"


YANG Data Structure Extensions


https://tools.ietf.org/html/rfc8791

References

Follow principles/patterns of RESTCONF RFC-8040 https://datatracker.ietf.org/doc/html/rfc8040
Follow principles/patterns of yang-patch RFC-8072 https://datatracker.ietf.org/doc/html/rfc8040
Follow principles/patterns of RESTCONF NMDA RFC-8527 https://datatracker.ietf.org/doc/html/rfc8527


  • No labels