Src/Private/Get-VbrBackupTapeDrivesInfo.ps1
function Get-VbrBackupTapeDrivesInfo { <# .SYNOPSIS Function to extract veeam backup & replication tape drives information. .DESCRIPTION Build a diagram of the configuration of Veeam VBR in PDF/PNG/SVG formats using Psgraph. .NOTES Version: 0.6.10 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux .LINK https://github.com/rebelinux/Veeam.Diagrammer #> [CmdletBinding()] [OutputType([System.Object[]])] Param ( [string] $TapeLibrary ) process { Write-Verbose -Message "Collecting Tape Drives information from $($VBRServer.Name)." try { if ($TapeLibrary) { $TapeDrives = Get-VBRTapeDrive -Library $TapeLibrary } Else { $TapeDrives = Get-VBRTapeDrive } $BackupTapeDriveInfo = @() if ($TapeDrives) { foreach ($TapeDrive in $TapeDrives) { $Rows = [ordered ]@{ # Role = 'Tape Drive' 'Serial#' = $TapeDrive.SerialNumber Model = $TapeDrive.Model 'Drive ID' = $TapeDrive.Name } $TempBackupTapeDriveInfo = [PSCustomObject]@{ Name = $TapeDrive.Name Label = Get-DiaNodeIcon -Name "$((Remove-SpecialChar -String ("Drive $($TapeDrive.Address + 1)").split(".")[0] -SpecialChars '\').toUpper())" -IconType 'VBR_Tape_Drive' -Align "Center" -Rows $Rows -ImagesObj $Images -IconDebug $IconDebug LibraryId = $TapeDrive.LibraryId Id = $TapeDrive.Id AditionalInfo = $Rows } $BackupTapeDriveInfo += $TempBackupTapeDriveInfo } } return $BackupTapeDriveInfo } catch { Write-Verbose $_.Exception.Message } } end {} } |