Skip to content

Commit 5d1d726

Browse files
Add 'PKIPN' to allowed authentication methods in user and directory mapping functions
1 parent ab68aff commit 5d1d726

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/collections/_commands/Set-PASUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ Accept wildcard characters: False
934934
### -loginToHour
935935
The end of the timeframe the user account is permitted to authenticate.
936936
937-
Provide an hour of the day in 24-hour format (0-23)
937+
Provide an hour of the day in 24-hour format (0-24)
938938
939939
Minimum required version 13.2
940940

psPAS/Functions/LDAPDirectories/New-PASDirectoryMapping.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function New-PASDirectoryMapping {
8484
ValueFromPipelinebyPropertyName = $true
8585
)]
8686
[AllowEmptyCollection()]
87-
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
87+
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
8888
[string[]]$allowedAuthenticationMethods
8989

9090
)

psPAS/Functions/LDAPDirectories/Set-PASDirectoryMapping.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function Set-PASDirectoryMapping {
9090
ValueFromPipelinebyPropertyName = $true
9191
)]
9292
[AllowEmptyCollection()]
93-
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
93+
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
9494
[string[]]$allowedAuthenticationMethods
9595

9696
)

psPAS/Functions/User/New-PASUser.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ function New-PASUser {
407407
ValueFromPipelinebyPropertyName = $true,
408408
ParameterSetName = 'Gen2'
409409
)]
410-
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
410+
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
411411
[AllowEmptyCollection()]
412412
[string[]]$allowedAuthenticationMethods
413413
)

psPAS/Functions/User/Set-PASUser.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function Set-PASUser {
5656
)]
5757
[AllowEmptyCollection()]
5858
[ValidateSet('PIMSU', 'PSM', 'PSMP', 'PVWA', 'WINCLIENT', 'PTA', 'PACLI', 'NAPI', 'XAPI', 'HTTPGW',
59-
'EVD', 'CPM', 'PVWAApp', 'PSMApp', 'AppPrv', 'AIMApp', 'PSMPApp', 'GUI')]
59+
'EVD', 'CPM', 'PVWAApp', 'PSMApp', 'AppPrv', 'AIMApp', 'PSMPApp', 'GUI', 'IBVSDK')]
6060
[string[]]$unAuthorizedInterfaces,
6161

6262
[parameter(
@@ -177,7 +177,7 @@ function Set-PASUser {
177177
ValueFromPipelinebyPropertyName = $true,
178178
ParameterSetName = 'Gen2'
179179
)]
180-
[ValidateRange(0, 23)]
180+
[ValidateRange(0, 24)]
181181
[int]$loginToHour,
182182

183183
[parameter(
@@ -420,7 +420,7 @@ function Set-PASUser {
420420
ValueFromPipelinebyPropertyName = $true,
421421
ParameterSetName = 'Gen2'
422422
)]
423-
[ValidateSet('SAML', 'PKI', 'FIDO', 'WINDOWS')]
423+
[ValidateSet('SAML', 'PKI', 'PKIPN', 'FIDO', 'WINDOWS')]
424424
[AllowEmptyCollection()]
425425
[string[]]$allowedAuthenticationMethods
426426
)

0 commit comments

Comments
 (0)