Software Development Kit (SDK) and API Discussions

Looking for ZAPI equivalent of volume efficiency modify

kramar
2,480 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
2,448 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
2,449 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
2,440 Views

Thats it thank you!

Public