Functions/Monitoring/Get-PASPSMRecordingProperty.ps1
# .ExternalHelp psPAS-help.xml function Get-PASPSMRecordingProperty { [CmdletBinding()] param( [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [Alias('SessionID')] [string]$RecordingID ) BEGIN { Assert-VersionRequirement -RequiredVersion 10.6 }#begin PROCESS { #Create URL for Request $URI = "$($psPASSession.BaseURI)/API/Recordings/$($RecordingID | Get-EscapedString)/properties" #send request to PAS web service $result = Invoke-PASRestMethod -Uri $URI -Method GET If ($null -ne $result) { #Return Results $result | Add-ObjectDetail -typename psPAS.CyberArk.Vault.PSM.Recording.Property } #process } END { }#end } |