functions/distributed-engines/Get-TssDistributedEngineConnectorCredential.ps1
function Get-TssDistributedEngineConnectorCredential { <# .SYNOPSIS Get the Site Connector credential .DESCRIPTION Get the Site Connector credential .EXAMPLE $session = New-TssSession -SecretServer https://alpha -Credential $ssCred Get-TssDistributedEngineConnectorCredential -TssSession $session -SiteConnectorId 5 Return the username and password for the Site Connector ID 5 .LINK https://thycotic-ps.github.io/thycotic.secretserver/commands/distributed-engines/Get-TssDistributedEngineConnectorCredential .LINK https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/distributed-engines/Get-TssDistributedEngineConnectorCredential.ps1 .NOTES Requires TssSession object returned by New-TssSession #> [CmdletBinding()] [OutputType('')] param ( # TssSession object created by New-TssSession for authentication [Parameter(Mandatory,ValueFromPipeline,Position = 0)] [Thycotic.PowerShell.Authentication.Session] $TssSession, # Site Connector ID [Parameter(Mandatory,ValueFromPipelineByPropertyName)] [Alias("Id")] [int] $SiteConnectorId ) 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 $uri = $TssSession.ApiUrl, 'distributed-engine', 'site-connector', $SiteConnectorId, 'credentials' -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 reference name on [$var name]" $err = $_ . $ErrorHandling $err } if ($restResponse) { $restResponse } } else { Write-Warning "No valid session found" } } } |