#API for volume to set files-set-maximum
1 messages · Page 1 of 1 (latest)
Not that I've seen, but you could use the Ansible na_ontap_rest_cli module to do it with a PATCH verb, which is the same as a modify on the CLI.
https://galaxy.ansible.com/ui/repo/published/netapp/ontap/content/module/na_ontap_rest_cli/
An example might be:
- name: File Set Maximum netapp.ontap.na_ontap_rest_cli: command: volume verb: PATCH params: {'server': "{{ svm_name }}",'volume': "{{ volume_name }}"} body: { 'files-set-maximum': 'true'}
This module leverages the Private API CLI Passthrough, so you could just hit that API directly.