ONTAP Rest API Discussions

CIFS workgroup creating

nslookup
2,936 Views

Hi One team
Is it possible to create a CIFS workgroup mode using REST-API?
I am inquiring because it is not in the document list.

Thank you.

1 ACCEPTED SOLUTION

parisi
2,842 Views

Correction on the above...

 

I did discover a way to do CLI pass through.

 

curl -siku admin:password  --request GET|POST|DELETE|PATCH  "http://x.x.x.x/api/private/cli/command"

 

Now I'll see if I can figure out the right way to run the cifs create command.

 

 

View solution in original post

4 REPLIES 4

parisi
2,913 Views

Does not seem to be currently possible. I'm on 9.8 (as I'm internal to NetApp):

 

{
  "error": {
    "message": "Unexpected argument \"workgroup\".",
    "code": "262179",
    "target": "workgroup"
  }
}

 

nslookup
2,877 Views

Thank you for your confirmation @parisi 


Is it possible to run the CLI directly using private REST-API? I'm not familiar with API, so I'm making an inquiry.

Have a nice day.

parisi
2,852 Views

No. REST API is the interface.

 

You can either use SSH commands or possibly look into using NetApp SDK/ZAPI calls. REST API likely will eventually support this, but it's not presently there.

parisi
2,843 Views

Correction on the above...

 

I did discover a way to do CLI pass through.

 

curl -siku admin:password  --request GET|POST|DELETE|PATCH  "http://x.x.x.x/api/private/cli/command"

 

Now I'll see if I can figure out the right way to run the cifs create command.

 

 

Public