-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Get-PASPSMRecording.ps1
187 lines (139 loc) · 4.52 KB
/
Get-PASPSMRecording.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# .ExternalHelp psPAS-help.xml
function Get-PASPSMRecording {
[CmdletBinding(DefaultParameterSetName = 'byQuery')]
param(
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byRecordingID'
)]
[string]$RecordingID,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[ValidateNotNullOrEmpty()]
[int]$Limit,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[ValidateSet('RiskScore', 'FileName', 'SafeName', 'FolderName', 'PSMVaultUserName', 'FromIP', 'RemoteMachine',
'Client', 'Protocol', 'AccountUserName', 'AccountAddress', 'AccountPlatformID', 'PSMStartTime', 'TicketID',
'-RiskScore', '-FileName', '-SafeName', '-FolderName', '-PSMVaultUserName', '-FromIP', '-RemoteMachine',
'-Client', '-Protocol', '-AccountUserName', '-AccountAddress', '-AccountPlatformID', '-PSMStartTime',
'-TicketID'
)]
[string]$Sort,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[string]$Search,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[string]$Safe,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[datetime]$FromTime,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[datetime]$ToTime,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[string]$Activities
)
BEGIN {
Assert-VersionRequirement -RequiredVersion 9.10
}#begin
PROCESS {
#Create URL for Request
$URI = "$($psPASSession.BaseURI)/API/Recordings"
switch ($PSCmdlet.ParameterSetName) {
'byRecordingID' {
Assert-VersionRequirement -RequiredVersion 10.6
$URI = "$URI/$RecordingID"
break
}
'byQuery' {
#Get Parameters to include in request
$boundParameters = $PSBoundParameters | Get-PASParameter
#If no arguments initialise boundparameters
if ($null -eq $boundparameters) {
$boundparameters = @{ }
}
#* fetch last 24 hours by default.
#Set ToTime to provided value or now
If ($PSBoundParameters.ContainsKey('ToTime')) {
$boundParameters['ToTime'] = $ToTime
} Else {
#ToTime is now
$boundParameters['ToTime'] = Get-Date
}
#Set FromTime to provided value or 24 hours before ToTime
If ($PSBoundParameters.ContainsKey('FromTime')) {
$boundParameters['FromTime'] = $FromTime | ConvertTo-UnixTime
} Else {
#If ToTime specified get previous 24 hours
$boundParameters['FromTime'] = (Get-Date $boundParameters['ToTime']).AddDays(-2) | ConvertTo-UnixTime
}
#Convert ToTime to UnixTime
$boundParameters['ToTime'] = $boundParameters['ToTime'] | ConvertTo-UnixTime
If ($PSBoundParameters.Keys -notcontains 'Limit') {
$Limit = 100 #default if you call the API with no value
$boundParameters.Add('Limit', $Limit) # Add to boundparameters for inclusion in query string
}
#Create Query String, escaped for inclusion in request URL
$queryString = $boundParameters | ConvertTo-QueryString
if ($null -ne $queryString) {
#Build URL from base URL
$URI = "$URI`?$queryString"
}
break
}
}
#send request to PAS web service
$result = Invoke-PASRestMethod -Uri $URI -Method GET
$Total = $result.Total
If ($Total -gt 0) {
#Set events as output collection
$Recordings = [Collections.Generic.List[Object]]::New(@($result.Recordings))
#Split Request URL into baseURI & any query string value
$URLString = $URI.Split('?')
$URI = $URLString[0]
$queryString = $URLString[1]
For ( $Offset = $Limit ; $Offset -lt $Total ; $Offset += $Limit ) {
#While more recordings to return, create nextLink query value
$nextLink = "OffSet=$Offset"
if ($null -ne $queryString) {
#If original request contained a queryString, concatenate with nextLink value.
$nextLink = "$queryString&$nextLink"
}
$result = (Invoke-PASRestMethod -Uri "$URI`?$nextLink" -Method GET).Recordings
#Request nextLink. Add recordingss to output collection.
$Null = $Recordings.AddRange($result)
}
$Output = $Recordings
}
If ($null -ne $Output) {
#Return Results
$Output | Add-ObjectDetail -typename psPAS.CyberArk.Vault.PSM.Recording
} #process
}
END { }#end
}