<?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 Re: Update/Create WFA credentials within a workflow in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76312#M15822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wait a sec? By Credentials you mean WFA User Credentials or&amp;nbsp; The Credentials page in Execution tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jun 2014 10:13:57 GMT</pubDate>
    <dc:creator>sinhaa</dc:creator>
    <dc:date>2014-06-26T10:13:57Z</dc:date>
    <item>
      <title>Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76294#M15815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; What would a soap command to update the credentials in wfa look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:33:51 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76294#M15815</guid>
      <dc:creator>olson</dc:creator>
      <dc:date>2025-06-05T05:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76297#M15816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Olson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There are REST APIs provided to Create/Update/Delete/Get a WFA user in WFA. They are available at /rest/docs under UserResource. They can only be called by an Admin user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want a WFA workflow that creates a new WFA User, you would need the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create a new command which can call this Rest API. Powershell 3.0 provides Invoke-RestMethod cmdlet which can very easily do it.&lt;/P&gt;&lt;P&gt;2. For creating/Updating a user you need call Invoke-RestMethod, method post/put for creating/updating a user and providing the Admin credentials for -Credentials parameter and an xml file with user details content. And you are done.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; If you don't have powershell3.0, you'll need to create an HTTPWebRequest, manually add credentials, create a cookie container object and add it then call the API. Long process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want a sample command for Powershell3.0, I'll give you one soon. (somehow unable to find where I saved it &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;warm regards,&lt;/P&gt;&lt;P&gt;Abhishek &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:04:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76297#M15816</guid>
      <dc:creator>sinhaa</dc:creator>
      <dc:date>2014-06-26T07:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76305#M15819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oslon,&lt;/P&gt;&lt;P&gt;Here is the REST API to update the WFA credential:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;URI: &lt;A href="http://localhost/rest/docs/credentials/%7BidentifierIp%7D" style="text-align: left; text-indent: 0px; color: #607890; text-decoration: underline;" target="_blank"&gt;/credentials/{identifierIp}&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method: PUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input data &amp;amp;colon;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;credential&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;ip&amp;gt;...&amp;lt;/ip&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;connectionType&amp;gt;...&amp;lt;/connectionType&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;matchType&amp;gt;...&amp;lt;/matchType&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;name&amp;gt;...&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;userName&amp;gt;...&amp;lt;/userName&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;password&amp;gt;...&amp;lt;/password&amp;gt;&amp;nbsp; &lt;BR /&gt;&amp;lt;/credential&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the possible values for connectionType and matchType&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;xs:simpleType name="commandCredentialMatchType"&amp;gt;&lt;BR /&gt;&amp;lt;xs:restriction base="xs:string"&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="EXACT"/&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="PATTERN"/&amp;gt;&lt;BR /&gt;&amp;lt;/xs:restriction&amp;gt;&lt;BR /&gt;&amp;lt;/xs:simpleType&amp;gt;&lt;BR /&gt;&amp;lt;xs:simpleType name="connectionType"&amp;gt;&lt;BR /&gt;&amp;lt;xs:restriction base="xs:string"&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="ONTAP"/&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="DFM"/&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="VIRTUAL_CENTER"/&amp;gt;&lt;BR /&gt;&amp;lt;xs:enumeration value="OTHER"/&amp;gt;&lt;BR /&gt;&amp;lt;/xs:restriction&amp;gt;&lt;BR /&gt;&amp;lt;/xs:simpleType&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 09:03:21 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76305#M15819</guid>
      <dc:creator>ranjeetr</dc:creator>
      <dc:date>2014-06-26T09:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76312#M15822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wait a sec? By Credentials you mean WFA User Credentials or&amp;nbsp; The Credentials page in Execution tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:13:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76312#M15822</guid>
      <dc:creator>sinhaa</dc:creator>
      <dc:date>2014-06-26T10:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76317#M15824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;"&gt;Abhishek&lt;/SPAN&gt;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am talking about the storage credentials stored within WFA. Thanks for all the help I think &lt;SPAN style="background-color: #ffffff; color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; line-height: 1.5em;"&gt;ranjeetr answered my question. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #454545; background-color: #ffffff; font-family: Arial, Helvetica, Verdana, sans-serif;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;Is &lt;/SPAN&gt;there&lt;SPAN style="line-height: 1.5em;"&gt; any way to mask parameters sent to the log files?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #454545; background-color: #ffffff; font-family: Arial, Helvetica, Verdana, sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 13:57:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76317#M15824</guid>
      <dc:creator>olson</dc:creator>
      <dc:date>2014-06-26T13:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Update/Create WFA credentials within a workflow</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76323#M15828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean the credentials ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;adai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 18:37:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Update-Create-WFA-credentials-within-a-workflow/m-p/76323#M15828</guid>
      <dc:creator>adaikkap</dc:creator>
      <dc:date>2014-06-26T18:37:46Z</dc:date>
    </item>
  </channel>
</rss>

