functions/configurations/Get-TssConfigurationSiteConnector.ps1
function Get-TssConfigurationSiteConnector { <# .SYNOPSIS List Site Connectors .DESCRIPTION List Site Connectors .EXAMPLE $session = New-TssSession -SecretServer https://alpha -Credential $ssCred Get-TssConfigurationSiteConnector -TssSession $session -IncludeInactive List all site connectors, include those that are inactive .LINK https://thycotic-ps.github.io/thycotic.secretserver/commands/configurations/Get-TssConfigurationSiteConnector .LINK https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/configurations/Get-TssConfigurationSiteConnector.ps1 .NOTES Requires TssSession object returned by New-TssSession #> [CmdletBinding()] [OutputType('Thycotic.PowerShell.Configuration.SiteConnector')] param ( # TssSession object created by New-TssSession for authentication [Parameter(Mandatory,ValueFromPipeline,Position = 0)] [Thycotic.PowerShell.Authentication.Session] $TssSession, # Include inactive [switch] $IncludeInactive ) begin { $tssParams = $PSBoundParameters $invokeParams = . $GetInvokeApiParams $TssSession } process { Get-TssInvocation $PSCmdlet.MyInvocation if ($tssParams.ContainsKey('TssSession') -and $TssSession.IsValidSession()) { Compare-TssVersion $TssSession '10.9.000064' $PSCmdlet.MyInvocation $restResponse = $null $uri = $TssSession.ApiUrl, 'configuration', 'site-connector' -join '/' $invokeParams.Uri = $uri $invokeParams.Method = 'GET' Write-Verbose "Performing the operation $($invokeParams.Method) $($invokeParams.Uri)" try { $apiResponse = Invoke-TssApi @invokeParams $restResponse = . $ProcessResponse $apiResponse } catch { Write-Warning "Issue getting site connector" $err = $_ . $ErrorHandling $err } if ($restResponse) { [Thycotic.PowerShell.Configuration.SiteConnector[]]$restResponse } } else { Write-Warning "No valid session found" } } } |