Ruslan Kashapov | 55dc654 | 2021-03-02 16:48:41 +0200 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 2 | .. http://creativecommons.org/licenses/by/4.0 |
| 3 | .. Copyright (C) 2021 Pantheon.tech |
| 4 | .. _modeling: |
| 5 | |
Ruslan Kashapov | 55dc654 | 2021-03-02 16:48:41 +0200 | [diff] [blame] | 6 | .. toctree:: |
| 7 | :maxdepth: 1 |
| 8 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 9 | CPS Modeling |
| 10 | ############ |
| 11 | |
| 12 | CPS-Core Modeling |
| 13 | ================= |
| 14 | |
| 15 | Data Model |
| 16 | ---------- |
Ruslan Kashapov | 55dc654 | 2021-03-02 16:48:41 +0200 | [diff] [blame] | 17 | |
| 18 | .. image:: _static/cps-modeling-concepts.png |
| 19 | :alt: Basic entities relationship |
| 20 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 21 | Basic Concepts |
| 22 | -------------- |
| 23 | |
Ruslan Kashapov | 55dc654 | 2021-03-02 16:48:41 +0200 | [diff] [blame] | 24 | Administrative entities |
| 25 | |
| 26 | - **Dataspace** is a primary logical separation of data. |
| 27 | |
| 28 | Any application can define its own dataspace to store the model(s) and data it owns. |
| 29 | Dataspace is uniquely identified by it's name. |
| 30 | |
| 31 | - **Schema Set** describes a data model(s). |
| 32 | |
| 33 | Schema Set holds reference(s) to single or multiple YANG modules. Schema Set belongs to dataspace |
| 34 | and uniquely identified by its name (within its own dataspace). Same YANG resources (source files) can be |
| 35 | referenced by multiple schema sets from different dataspaces. |
| 36 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 37 | - **Anchor** identifies the unique data set (data record) within a dataspace. |
Ruslan Kashapov | 55dc654 | 2021-03-02 16:48:41 +0200 | [diff] [blame] | 38 | |
| 39 | Anchor always references a schema set within same dataspace which describes a data model of associated data. |
| 40 | Multiple anchors may reference same schema set. Anchor is uniquely identified by its name (within own dataspace). |
| 41 | |
| 42 | Data |
| 43 | |
| 44 | - **Data Node** represents a data fragment. |
| 45 | |
| 46 | Each data node can have zero or more descendants and together they form a data instance tree. |
| 47 | The data node tree belongs to an anchor. |
| 48 | |
| 49 | Data node is representing a data fragment described in a YANG model as a *container* and/or a *list*. |
| 50 | The data described as a *leaf* and/or a *leaf-list* are stored within a parent data node. |
| 51 | |
| 52 | The data node position within a tree is uniquely identified by the node's unique **xpath** which can be used |
| 53 | for partial data query. |
ToineSiebelink | 98c0787 | 2021-04-20 17:33:09 +0100 | [diff] [blame] | 54 | |
| 55 | Querying |
| 56 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 57 | - **CPS Path** is used to query data nodes. The CPS Path is described in detail in :doc:`cps-path`. |
lukegleeson | 209c385 | 2021-09-28 16:07:25 +0100 | [diff] [blame] | 58 | |
ToineSiebelink | 980089c | 2021-10-21 13:35:34 +0100 | [diff] [blame] | 59 | .. Below Label is used by documentation for other CPS components to link here, do not remove even if it gives a warning |
| 60 | .. _cps_ncmp_modelling: |
| 61 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 62 | NCMP Modeling |
| 63 | ============= |
lukegleeson | 209c385 | 2021-09-28 16:07:25 +0100 | [diff] [blame] | 64 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 65 | Data Model |
| 66 | ---------- |
lukegleeson | 209c385 | 2021-09-28 16:07:25 +0100 | [diff] [blame] | 67 | |
DylanB95EST | 3fcf869 | 2021-10-11 16:29:16 +0100 | [diff] [blame] | 68 | NCMP stores DMI-Plugin and CM Handle relations using a data model described as per this Yang module. |
lukegleeson | 209c385 | 2021-09-28 16:07:25 +0100 | [diff] [blame] | 69 | |
lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 70 | :download:`DMI Yang Module <api/yang/dmiYangResource.yang>` |
| 71 | |
| 72 | Basic Concepts |
| 73 | -------------- |
| 74 | |
| 75 | - **CM-Handle** represents an instance a modeled Network Function(node) in ONAP. |
| 76 | |
| 77 | These are stored as Anchors within CPS-Core. |
| 78 | |
| 79 | - **Datastores** represent different views of the cm data. |
| 80 | |
| 81 | Datastores are defined for NCMP to access the CPS running or operational datastores. Currently supported datastores are: |
| 82 | |
| 83 | +--------------------------------+-------------------------------------+-------------------------+ |
| 84 | | Datastore | Configurations | Data access type | |
| 85 | +================================+=====================================+=========================+ |
| 86 | | Passthrough-operational | config-true, config-false | read-only | |
| 87 | +--------------------------------+-------------------------------------+-------------------------+ |
| 88 | | Passthrough-running | config-true | read-write | |
ToineSiebelink | 980089c | 2021-10-21 13:35:34 +0100 | [diff] [blame] | 89 | +--------------------------------+-------------------------------------+-------------------------+ |