Dave is correct. The Pirate Pack for VMware - 7Mode v2.1 contains a command for IPspace creation outside of the create and configure command.
https://communities.netapp.com/docs/DOC-22069
Regarding the Partner interface. There is no existing command for this. The PowerShell cmdlet that you would need to use is Set-NaNetInterface. One option would be to clone the Add VLAN command and add the option at the end. I haven't tested it but it would look like:
--------------------------------------------
param (
[parameter(Mandatory=$true, HelpMessage="Array IP address")]
[string]$Array,
[parameter(Mandatory=$true, HelpMessage="Interface to add a VLAN to")]
[string]$Interface,
[parameter(Mandatory=$false, HelpMessage="Interface to add as Failover Partner")]
[string]$PartnerInterface,
[parameter(Mandatory=$true, HelpMessage="Vlan ID")]
[ValidateRange(1,4094)]
[int]$VlanID
)
# connect to controller
Connect-WFAController -Array $Array
Get-WFALogger -Info -message $("Adding VLAN : " + $VlanID + " to " + $Interface )
Add-NaNetVlan -Interface $Interface -Vlans $VlanID
if($PartnerInterface)
{
Get-WFALogger -Info -message $("Adding Inteface : " $PartnerInterface + " as the partner to " + $Interface + "-" + $VlanID)
Set-NaNetInterface $Interface -Partner $PartnerInterface
}
--------------------------------------------
I have literally just scratched this command out based on the VLAN command but it should get you close enough.
Jeremy Goodrum, NetApp
The Pirate
Twitter: @virtpirate
Blog: www.virtpirate.com