Src/Private/Get-AbrOntapVserverCIFSLocalGroup.ps1
function Get-AbrOntapVserverCIFSLocalGroup { <# .SYNOPSIS Used by As Built Report to retrieve NetApp ONTAP Vserver CIFS Local Group information from the Cluster Management Network .DESCRIPTION .NOTES Version: 0.6.3 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux .EXAMPLE .LINK #> param ( [Parameter ( Position = 0, Mandatory)] [string] $Vserver ) begin { Write-PscriboMessage "Collecting ONTAP CIFS Local Group information." } process { try { $VserverData = Get-NcCifsLocalGroup -VserverContext $Vserver -Controller $Array $VserverObj = @() if ($VserverData) { foreach ($Item in $VserverData) { try { $inObj = [ordered] @{ 'Group Name' = $Item.GroupName 'Description' = $Item.Description } $VserverObj += [pscustomobject]$inobj } catch { Write-PscriboMessage -IsWarning $_.Exception.Message } } $TableParams = @{ Name = "CIFS Connected Local Group - $($Vserver)" List = $false ColumnWidths = 50, 50 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $VserverObj | Table @TableParams } } catch { Write-PscriboMessage -IsWarning $_.Exception.Message } } end {} } |