<?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 Scripting Gap Analysis in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42220#M8659</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;Is there any way to extract a list of canned workflows from the latest version of WFA along with a description what they do? IHAC, that would like a gap analysis to see if there will be any scripting required on their part when the canned workflows in WFA are matched against current processes and procedures.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;We have a production instance of Provisioning/Protection manager to get information from if this would help us.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2025 05:40:22 GMT</pubDate>
    <dc:creator>dmccray</dc:creator>
    <dc:date>2025-06-05T05:40:22Z</dc:date>
    <item>
      <title>Scripting Gap Analysis</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42220#M8659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;Is there any way to extract a list of canned workflows from the latest version of WFA along with a description what they do? IHAC, that would like a gap analysis to see if there will be any scripting required on their part when the canned workflows in WFA are matched against current processes and procedures.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;We have a production instance of Provisioning/Protection manager to get information from if this would help us.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:40:22 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42220#M8659</guid>
      <dc:creator>dmccray</dc:creator>
      <dc:date>2025-06-05T05:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Gap Analysis</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42225#M8661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can access the WFs of WFA using REST with the following url and use them in your scripts&lt;/P&gt;&lt;P&gt;&lt;A href="http://localhost:8088/rest/workflows/" title="http://localhost:8088/rest/workflows/" target="_blank"&gt;http://&amp;lt;wfaserver-or-localhost&amp;gt;:&amp;lt;port&amp;gt;/rest/workflows/&lt;/A&gt;&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>Mon, 17 Mar 2014 17:51:52 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42225#M8661</guid>
      <dc:creator>adaikkap</dc:creator>
      <dc:date>2014-03-17T17:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Gap Analysis</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42230#M8663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Multiple ways to do it. Powershell3.0 and Rest API is the easiest one I think. The following is the sample code.&lt;/P&gt;&lt;P&gt;====&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Credentials of WFA. Modify as per your setup&lt;/P&gt;&lt;P&gt;$user = "admin"&lt;/P&gt;&lt;P&gt;$pass = "admin"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Address: Modify as per your settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$add = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://1.2.3.4/rest/workflows" target="_blank"&gt;http://1.2.3.4/rest/workflows&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$secpasswd = ConvertTo-SecureString $pass -AsPlainText -Force&lt;/P&gt;&lt;P&gt;$cred = New-Object System.Management.Automation.PSCredential ($user, $secpasswd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$wf=Invoke-RestMethod -Uri $add -Method Get -Credential $creds -ContentType "application/xml" -Headers @{"Authorization"="Basic YWRtaW46YWRtaW4="}&lt;/P&gt;&lt;P&gt;$workflow&amp;nbsp; = $wf.collection.workflow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;foreach ( $wfk in $workflow ) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$wfk.name&lt;/P&gt;&lt;P&gt;$wfk.description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;===== &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 18:33:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42230#M8663</guid>
      <dc:creator>sinhaa</dc:creator>
      <dc:date>2014-03-17T18:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting Gap Analysis</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42234#M8665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're after the descriptions, parameters, etc of workflows, commands (including code), etc, you can use the WFA online Help | Reference Manual page.&lt;/P&gt;&lt;P&gt;- Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:40:45 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Scripting-Gap-Analysis/m-p/42234#M8665</guid>
      <dc:creator>ktim</dc:creator>
      <dc:date>2014-03-17T20:40:45Z</dc:date>
    </item>
  </channel>
</rss>

