Functions/Authentication/Get-PASPublicSSHKey.ps1
function Get-PASPublicSSHKey { <# .SYNOPSIS Retrieves a user's SSH Keys. .DESCRIPTION Retrieves all public SSH keys that are authorized for a specific user. The "Reset User Passwords" Vault permission is required to query public SSH Keys. The authenticated user who runs the function must be in the same Vault Location or higher as the user whose public SSH keys are retrieved. A user cannot manage their own public SSH keys. .PARAMETER UserName The username of the Vault user whose public SSH keys will be added A username cannot contain te follwing characters: "%", "&", "+" or ".". .PARAMETER sessionToken Hashtable containing the session token returned from New-PASSession .PARAMETER WebSession WebRequestSession object returned from New-PASSession .PARAMETER BaseURI PVWA Web Address Do not include "/PasswordVault/" .PARAMETER PVWAAppName The name of the CyberArk PVWA Virtual Directory. Defaults to PasswordVault .EXAMPLE $token | Get-PASPublicSSHKey -UserName user1 Lists all SSH Keys for vault user - user1: UserName KeyID PublicSSHKey -------- ----- ------------ user1 415161FE8F2B408BB76BC244258C3697 ACABB3NzaC1kc3MAAACBAJ3hA............... user1 B6DCA4D54B2E93380F42DDCDB23EE52A AgreatNzaC1kc3MAAACBAJ3hB............... user1 D6374740D11A5F45992D80D80E97387A PHil0soPh3rkc3MAAACBAJ3hC............... .INPUTS All parameters can be piped by property name Accepts pipeline objects from *-PASUser functions .OUTPUTS Outputs Object of Custom Type psPAS.CyberArk.Vault.PASPublicSSHKey SessionToken, WebSession, BaseURI are passed through and contained in output object for inclusion in subsequent pipeline operations. Output format is defined via psPAS.Format.ps1xml. To force all output to be shown, pipe to Select-Object * .NOTES .LINK #> [CmdletBinding()] param( [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [ValidateScript( {$_ -notmatch ".*(%|\&|\+|\.).*"})] [string]$UserName, [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [ValidateNotNullOrEmpty()] [hashtable]$SessionToken, [parameter(ValueFromPipelinebyPropertyName = $true)] [Microsoft.PowerShell.Commands.WebRequestSession]$WebSession, [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [string]$BaseURI, [parameter( Mandatory = $false, ValueFromPipelinebyPropertyName = $true )] [string]$PVWAAppName = "PasswordVault" ) BEGIN {}#begin PROCESS { #Create URL for request $URI = "$baseURI/$PVWAAppName/WebServices/PIMServices.svc/Users/$($UserName | Get-EscapedString)/AuthenticationMethods/SSHKeyAuthentication/AuthorizedKeys" #Send request to web service $result = Invoke-PASRestMethod -Uri $URI -Method GET -Headers $SessionToken -WebSession $WebSession if($result) { $result.GetUserAuthorizedKeysResult | Add-ObjectDetail -typename psPAS.CyberArk.Vault.PublicSSHKey -PropertyToAdd @{ "UserName" = $UserName "sessionToken" = $sessionToken "WebSession" = $WebSession "BaseURI" = $BaseURI "PVWAAppName" = $PVWAAppName } } }#process END {}#end } |