Active IQ Unified Manager Discussions

Running interactive commands via WFA

prasadkm0204
2,891 Views

So I am using WFA to deploy my storage systems. For tasks, where there is no commands I am using InvokeWFACluster-CLI.

The problem with this is there are some commands that needs a input like the following

 

--

security login create -username <username> -application ontapi -authmethod password -role admin -vserver <admin_vservername>

-- 

 

Is there a way I can provide the password without requiring the user input. In this case, WFA doesn't prompt for a user input either.

 

Thanks,

-Prasad

2 REPLIES 2

sinhaa
2,864 Views

prasadkm0204,

      You need to look to solve the problem of NO WFA Provided commands in the following order:

 

1. Look for a Posh cmdlet and create your own WFA commands using those. This will almost certianly solve your problem. Powershell cmdlets for almost everything that is possible to do with a cluster/array is provided. See the documentation on this at WFA->Help->Support Links -> Powershell cmdlets Help.

 

See my code example provided here for the specific case of creating a security login account: WFA Input Type of 'password' issues

 

2.  If at all there is no Powershell cmdlet available for a task, you can create WFA commands using SDK and ZAPIs. They are bundled for Posh and Perl languages. 

 

3. Invoking direct InvokeWfaCluster-CLI is okay but not what I would recommend to use. Not that this will not work, or will create any unwanted issues. It will be fine mostly excapt it may end up askign for User-Inputs. Also the command output unlike ZAPI or Posh cmdlets is returned in string format  and those are compatively difficult to parse and loop through or be useful in creating advanced level commands.  One liners its fine. You'll start to face this as you develope more commands.

 

sinhaa

  

If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

prasadkm0204
2,621 Views

Thanks Sinhaa.

 

I will revisit my process.

 

-Prasad

Public