Src/Private/Get-AbrVb365ServerInternetProxy.ps1
function Get-AbrVB365ServerInternetProxy { <# .SYNOPSIS Used by As Built Report to retrieve Veeam VB365 backup server internet proxy configuration .DESCRIPTION Documents the configuration of Veeam VB365 in Word/HTML/Text formats using PScribo. .NOTES Version: 0.2.1 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux Credits: Iain Brighton (@iainbrighton) - PScribo module .LINK https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VB365 #> [CmdletBinding()] param ( ) begin { Write-PScriboMessage "ServerConfig InfoLevel set at $($InfoLevel.Infrastructure.ServerConfig)." } process { try { $ServerConfig = Get-VBOInternetProxySettings if (($InfoLevel.Infrastructure.ServerConfig -gt 0) -and ($ServerConfig)) { Write-PScriboMessage "Collecting Veeam VB365 internet proxy." Section -Style Heading3 'Internet Proxy' { $ServerConfigInfo = @() $inObj = [ordered] @{ 'Use Internet Proxy' = ConvertTo-TextYN $ServerConfig.UseInternetProxy 'Proxy Host' = ConvertTo-EmptyToFiller $ServerConfig.Host 'TCP Port' = ConvertTo-EmptyToFiller $ServerConfig.Port 'Use Authentication' = ConvertTo-TextYN $ServerConfig.UseAuthentication 'Proxy User' = ConvertTo-EmptyToFiller $ServerConfig.User } $ServerConfigInfo = [PSCustomObject]$InObj $TableParams = @{ Name = "Internet Proxy - $VeeamBackupServer" List = $true ColumnWidths = 40, 60 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $ServerConfigInfo | Table @TableParams } } } catch { Write-PScriboMessage -IsWarning "Internet Proxy Section: $($_.Exception.Message)" } } end {} } |