There's a longstanding bug in ONTAP which bothered me some time, but I seem to have narrowed it down somewhat now.
Background: I teach ONTAP RESTful API courses (https://www.flane.de/en/course/netapp-rstapi)
In the course's exercises we're supposed to create a QTree with QoS. This never works 😦
I was doing some digging with 9.14.1RC1 (local sim) and the current 9.14 Python library.
The Python documentation (even the online API one in the Sim https://192.168.xxx.yyy/docs/api/#/storage/qtree_create) states:
{
"_tags": [
"team:csi",
"environment:test"
],
"export_policy": {
"id": 100,
"name": "default"
},
"group": {
"id": "20001",
"name": "unix_group1"
},
"name": "string",
"nas": {},
** "qos_policy": {
"max_throughput_iops": 10000,
"max_throughput_mbps": 500,
"min_throughput_iops": 2000,
"min_throughput_mbps": 500,
"name": "performance",
"uuid": "1cd8a442-86d1-11e0-ae1c-123478563412"
},**
"security_style": "unix",
"svm": {
"name": "svm1",
"uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
},...