forked from pspete/psPAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-PASDiscoveredAccount.ps1
139 lines (96 loc) · 2.75 KB
/
Get-PASDiscoveredAccount.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
# .ExternalHelp psPAS-help.xml
Function Get-PASDiscoveredAccount {
[CmdletBinding(DefaultParameterSetName = 'byQuery')]
param(
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byID'
)]
[string]$id,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[ValidateSet('Windows Server Local', 'Windows Desktop Local', 'Windows Domain', 'Unix', 'Unix SSH Key', 'AWS', 'AWS Access Keys', 'Azure Password Management')]
[string]$platformType,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[boolean]$privileged,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[boolean]$AccountEnabled,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[string]$search,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[ValidateSet('startswith', 'contains')]
[string]$searchType,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true,
ParameterSetName = 'byQuery'
)]
[ValidateRange(1, 1000)]
[int]$limit
)
Begin {
Assert-VersionRequirement -RequiredVersion 11.6
#Parameter to include as filter value in url
$Parameters = [Collections.Generic.List[String]]@('platformType', 'privileged', 'accountEnabled')
}
Process {
#Create URL for Request
$URI = "$($psPASSession.BaseURI)/api/DiscoveredAccounts"
switch ($PSCmdlet.ParameterSetName) {
'byID' {
$URI = "$URI/$id"
break
}
'byQuery' {
If ($platformType -eq 'Azure Password Management') {
Assert-VersionRequirement -RequiredVersion 11.7
}
#Get Parameters to include in request
$boundParameters = $PSBoundParameters | Get-PASParameter -ParametersToRemove $Parameters
$filterParameters = $PSBoundParameters | Get-PASParameter -ParametersToKeep $Parameters
$FilterString = $filterParameters | ConvertTo-FilterString
If ($null -ne $FilterString) {
$boundParameters = $boundParameters + $FilterString
}
#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 web service
$result = Invoke-PASRestMethod -Uri $URI -Method GET
If ($null -ne $Result) {
If ($PSCmdlet.ParameterSetName -eq 'byQuery') {
#Process nextlink if querying
$Result = $Result | Get-NextLink
}
#Return result
$Result
}
}
End {}
}