I am trying to create new policies in OnTap 9.11 and trying to scope them to cluster.
error i m getting
"error_message": "Field "scope" cannot be set in this operation",
"msg": "Error when calling '/storage/qos/policies': {'target': 'scope'}",
based on https://library.netapp.com/ecmdocs/ECMLP2882307/html/#/storage/qos_policy_create
"scope": "cluster" is a valid option.
I am using ansible Module ' netapp.ontap.na_ontap_restit:' and body looks like this
body:
name: abhiClusterFixedQosTest
fixed:
max_throughput_iops: 0
capacity_shared: true
max_throughput_mbps: 0
min_throughput_iops: 0
min_throughput_mbps: 0
svm:
name: "abhitest001"
scope: 'svm' # or scope: 'cluster' but neither works
Code works if i am not using scope as an option but then the policy is created for SVM,
Thanks for any inputs.