Takes the output of the pool info command and puts it into a powershell object for later use.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function Get-PoolDetails { | |
Param( | |
[Parameter(Mandatory=$true)]$StorageProc | |
) | |
$PoolInfo = naviseccli -h $StorageProc storagepool -list | |
$poolLine1TAG = "Pool Name" | |
$poolLine2TAG = "Pool ID" | |
$poolLine3TAG = "LUNs" | |
$poolLine4TAG = "User Capacity \(GBs\)" | |
$poolLine5TAG = "Available Capacity \(GBs\)" | |
$OutTable = @() | |
foreach ($Line in $PoolInfo) { | |
#Iterate through each pool returned and create a PS object for it | |
if ($Line -match $poolLine1TAG) { | |
#Start of new pool, Create new object | |
$OutObject = "" | Select PoolName, PoolID, LUNs, CapGB, FreeGB | |
$OutObject.PoolName = $Line.Split(":",2)[1].Trim() | |
} elseif ($Line -match $poolLine2TAG) { | |
$OutObject.PoolID = $Line.Split(":",2)[1].Trim() | |
} elseif ($Line -match $poolLine3TAG) { | |
$OutObject.LUNs = $Line.Split(":",2)[1].Trim() | |
} elseif ($Line -match $poolLine4TAG) { | |
$OutObject.CapGB = $Line.Split(":",2)[1].Trim() | |
} elseif ($Line -match $poolLine5TAG) { | |
$OutObject.FreeGB = $Line.Split(":",2)[1].Trim() | |
#End of pool info line, add object to table as it's about to be overwritten | |
$OutTable += $OutObject | |
} | |
} | |
Return $OutTable | |
} |