<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic how to create user on many FAS system using SDK? in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104736#M1467</link>
    <description>&lt;P&gt;I want to create one user. Do you know if this SDK can help and how ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 04:21:31 GMT</pubDate>
    <dc:creator>DavidCao</dc:creator>
    <dc:date>2025-06-05T04:21:31Z</dc:date>
    <item>
      <title>how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104736#M1467</link>
      <description>&lt;P&gt;I want to create one user. Do you know if this SDK can help and how ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 04:21:31 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104736#M1467</guid>
      <dc:creator>DavidCao</dc:creator>
      <dc:date>2025-06-05T04:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104739#M1468</link>
      <description>&lt;P&gt;You can utilize PowerShell for this easy enough. Assuming clustered Data ONTAP you'll use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NAME&lt;BR /&gt;New-NcUser&lt;BR /&gt;&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;Create a new user account associated with the specified application and authentication method.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SYNTAX&lt;BR /&gt;New-NcUser [-UserName] &amp;lt;String&amp;gt; -Vserver &amp;lt;String[]&amp;gt; -Application &amp;lt;String[]&amp;gt; [-AuthMethod &amp;lt;String&amp;gt;] -Role &amp;lt;String&amp;gt; [-Password &amp;lt;String&amp;gt;] [-Comment &amp;lt;String&amp;gt;]&lt;BR /&gt;[-Controller &amp;lt;NcController[]&amp;gt;] [-ZapiRetryCount &amp;lt;Int32&amp;gt;] [&amp;lt;CommonParameters&amp;gt;]&lt;BR /&gt;&lt;BR /&gt;New-NcUser -Vserver &amp;lt;String[]&amp;gt; -Application &amp;lt;String[]&amp;gt; [-AuthMethod &amp;lt;String&amp;gt;] -Role &amp;lt;String&amp;gt; [-Credential &amp;lt;PSCredential&amp;gt;] [-Comment &amp;lt;String&amp;gt;] [-Controller&lt;BR /&gt;&amp;lt;NcController[]&amp;gt;] [-ZapiRetryCount &amp;lt;Int32&amp;gt;] [&amp;lt;CommonParameters&amp;gt;]&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 02:36:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104739#M1468</guid>
      <dc:creator>DREW_RUSSELL</dc:creator>
      <dc:date>2015-05-08T02:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104740#M1469</link>
      <description>&lt;P&gt;i am using linux as the adminhost. do you have a python language script for this?&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 02:55:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104740#M1469</guid>
      <dc:creator>DavidCao</dc:creator>
      <dc:date>2015-05-08T02:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104760#M1471</link>
      <description>&lt;P&gt;I have not used the NetApp Manageability SDK extentesively but I just ran through the documentation and did not see anything in regards to creating new users. However, someone else may be able to point us in the right direction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One alternative I can suggest is a Python script that I put together that automates the process of SSH'ing into a controller and entering a set of commands. You can find the relevant&amp;nbsp;code on the&amp;nbsp;&lt;A href="https://github.com/DatacenterDudes/ssh-cli-command-automation/blob/master/SSH%20CLI%20Command%20Automation.py" target="_blank" title="DatacenterDudes GitHub repo"&gt;DatacenterDudes GitHub repo&lt;/A&gt;. I purposely left the code generic as possible so you'll have to tweak it a bit for your sepcific use case. If you do decide to go this route and run into problems I'm more than willing to help add the relvant functionality&amp;nbsp;to the code.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 13:36:04 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104760#M1471</guid>
      <dc:creator>DREW_RUSSELL</dc:creator>
      <dc:date>2015-05-08T13:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104791#M1474</link>
      <description>&lt;P&gt;This looks like a good start....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;security_login_create&lt;/P&gt;&lt;P&gt;[&lt;STRONG&gt;Family:&lt;/STRONG&gt; cluster]&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Create a new user account associated the specified application and authentication method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's from the cmode API docs...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--rdp&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 20:10:49 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104791#M1474</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2015-05-08T20:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104793#M1475</link>
      <description>&lt;P&gt;I havnet found the documentation to be too useful but maybe I'm looking in the wrong spot. Can you provide a link to the document youre looking at?&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 20:36:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104793#M1475</guid>
      <dc:creator>DREW_RUSSELL</dc:creator>
      <dc:date>2015-05-08T20:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104794#M1476</link>
      <description>&lt;P&gt;That is from the API docs that are in the SDK download. There are two files in there that I use as reference:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;netapp-manageability-sdk-5.2.1/doc/perldoc/OntapClusterAPI.html&lt;/P&gt;&lt;P&gt;netapp-manageability-sdk-5.2.1/doc/perldoc/Ontap7ModeAPI.html&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even though they are under the 'perldoc' area they are just HTML files with the API calls and data types. Since they are under the perldoc area they're all represented at Perl calls, so for example the perl function nfs_exportfs_list_rules_2 just translates to the nfs-exportfs-list-rules-2 API call (sub - for _ etc..).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--rdp&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 21:10:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104794#M1476</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2015-05-08T21:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to create user on many FAS system using SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104795#M1477</link>
      <description>&lt;P&gt;A lot more detailed than what I was focused on (SDK_Help.html). I just didnt dig deep enough. Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 21:17:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/how-to-create-user-on-many-FAS-system-using-SDK/m-p/104795#M1477</guid>
      <dc:creator>DREW_RUSSELL</dc:creator>
      <dc:date>2015-05-08T21:17:19Z</dc:date>
    </item>
  </channel>
</rss>

