Hi there, I'm trying to configure ONTAP volumes with an Ansible playbook using the netapp.ontap.na_ontap_volume Ansible module: https://docs.ansible.com/ansible/latest/collections/netapp/ontap/na_ontap_volume_module.html#parameter-analytics
The following code in my task works fine for analytics, it shows as "on"
```- name: Create volume
netapp.ontap.na_ontap_volume:
foo: '123'
bar: '456'
analytics: 'off'```
But I can't find an option for activity tracking...
I experimented with feature flags and tried this:
"auto_enable_analytics": 'on'
"auto_enable_activity_tracking": 'on'```
... which runs but doesn't do anything.
Has anyone else managed to do this as code in an Ansible playbook? I also experimented with the Rest API making direct calls but didn't have success there either, but I'm sure it must be possible.