NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

Software Development Kit (SDK) and API Discussions

Looking for ZAPI equivalent of volume efficiency modify

kramar
3,420 Views

I cannot locate a ZAPI to modify the following, does one exist?

volume efficiency modify -vserver xxxx-volume xxxx -compression false -inline-compression false -inline-dedupe false -cross-volume-inline-dedupe false -cross-volume-background-dedupe false 

1 ACCEPTED SOLUTION

donny_lang
3,388 Views

It looks like the "sis-set-config" or "sis-set-config-async" APIs (using Ontapi 1.30 Vserver) would be in the ballpark of what you're looking for.

 

Here's the API output generated from ZEDI - hope that's helpful!

 

<?xml version="1.0" encoding="UTF-8"?>
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.130">
<sis-set-config>
<enable-compression></enable-compression>
<enable-idd></enable-idd>
<enable-inline-compression></enable-inline-compression>
<path></path>
<policy-name></policy-name>
<quick-check-fsize></quick-check-fsize>
<schedule></schedule>
</sis-set-config>
</netapp>

 

Donny

View solution in original post

2 REPLIES 2

donny_lang
3,389 Views

It looks like the "sis-set-config" or "sis-set-config-async" APIs (using Ontapi 1.30 Vserver) would be in the ballpark of what you're looking for.

 

Here's the API output generated from ZEDI - hope that's helpful!

 

<?xml version="1.0" encoding="UTF-8"?>
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.130">
<sis-set-config>
<enable-compression></enable-compression>
<enable-idd></enable-idd>
<enable-inline-compression></enable-inline-compression>
<path></path>
<policy-name></policy-name>
<quick-check-fsize></quick-check-fsize>
<schedule></schedule>
</sis-set-config>
</netapp>

 

Donny

kramar
3,380 Views

Thats it thank you!

Public