functions/groups/Get-GroupUser.ps1
function Get-GroupUser { <# .SYNOPSIS Get a user in a Group .DESCRIPTION Get a user in a Group .EXAMPLE $session = New-TssSession -SecretServer https://alpha -Credential $ssCred Get-TssGroupUser -TssSession $session -Id 8 -UserId 43 Get User Id 43 details in Group ID 8 .LINK https://thycotic-ps.github.io/thycotic.secretserver/commands/groups/Get-TssGroupUser .LINK https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/groups/Get-GroupUser.ps1 .NOTES Requires TssSession object returned by New-TssSession #> [CmdletBinding()] [OutputType('TssGroupUser')] param ( # TssSession object created by New-TssSession for authentication [Parameter(Mandatory, ValueFromPipeline, Position = 0)] [Thycotic.PowerShell.Authentication.Session] $TssSession, # Group ID [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [Alias('GroupId')] [int] $Id, # User ID [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [int] $UserId ) begin { $tssParams = $PSBoundParameters $invokeParams = . $GetInvokeTssParams $TssSession } process { Write-Verbose "Provided command parameters: $(. $GetInvocation $PSCmdlet.MyInvocation)" if ($tssParams.ContainsKey('TssSession') -and $TssSession.IsValidSession()) { . $CheckVersion $TssSession '10.9.000000' $PSCmdlet.MyInvocation $restResponse = $null $uri = $TssSession.ApiUrl, 'groups', $Id, 'users', $UserId -join '/' $invokeParams.Uri = $uri $invokeParams.Method = 'GET' Write-Verbose "Performing the operation $($invokeParams.Method) $uri with $body" try { $restResponse = . $InvokeApi @invokeParams } catch { Write-Warning "Issue getting User [$UserId] on Group [$Id" $err = $_ . $ErrorHandling $err } if ($restResponse) { [TssGroupUser]$restResponse } } else { Write-Warning 'No valid session found' } } } |