Src/Private/Get-AbrOntapSecurityNVE.ps1
function Get-AbrOntapSecurityNVE { <# .SYNOPSIS Used by As Built Report to retrieve NetApp ONTAP Security Volume NVE information from the Cluster Management Network .DESCRIPTION .NOTES Version: 0.5.0 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux .EXAMPLE .LINK #> [CmdletBinding()] param ( ) begin { Write-PscriboMessage "Collecting ONTAP Security Volume NVE information." } process { $Data = Get-NcVol -Controller $Array |Where-Object {$_.JunctionPath -ne '/' -and $_.Name -ne 'vol0' -and $_.VolumeStateAttributes.IsConstituent -ne "True"} | Select-Object -Property vserver,name,aggregate,state,@{Label = "Node"; expression = {$_.VolumeIdAttributes.Nodes}},encrypt,@{Label = "encryptionstate"; expression = {(Get-NcVolumeEncryptionConversion -Vserver $_.vserver -Volume $_.name -Controller $Array).status}} $OutObj = @() if ($Data) { foreach ($Item in $Data) { $inObj = [ordered] @{ 'Name' = $Item.Name 'Aggregate' = $Item.Aggregate 'Encrypted' = ConvertTo-TextYN $Item.Encrypt 'State' = $TextInfo.ToTitleCase($Item.State) } $OutObj += [pscustomobject]$inobj } if ($Healthcheck.Storage.Aggr) { $OutObj | Where-Object { $_.'State' -ne 'Online'} | Set-Style -Style Warning -Property 'State' } $TableParams = @{ Name = "Volume Encryption (NVE) information - $($ClusterInfo.ClusterName)" List = $false ColumnWidths = 45, 35, 11, 9 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams } } end {} } |