[NETCONF-1169] OpenApi missing POST request to device root Created: 29/Sep/23 Updated: 08/Jan/24 |
|
| Status: | In Review |
| Project: | netconf |
| Component/s: | restconf-openapi |
| Affects Version/s: | None |
| Fix Version/s: | 7.0.0 |
| Type: | Bug | Priority: | Medium |
| Reporter: | Peter Suna | Assignee: | Yaroslav Lastivka |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | pick-next, pt | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Attachments: |
|
| Description |
|
The POST request to the device root at "rests/data/network-topology:network-topology/topology=topology-netconf/node=36001-sim-device/yang-ext:mount/" is currently only visible in a single model view. This request should be made visible for the full model view to demonstrate the possibility of creating this request. In certain scenarios, it is the only method to create specific resources using the POST request. For example for this mode:
module test-leaf-list {
namespace "http://example.com/test/leaf/list";
prefix "tcc";
revision 2023-09-28;
container root-leaf-list-container {
leaf-list leaf-list-with-min-elements {
min-elements 4;
type string;
}
}
}
|