Skip to content

Commit f87417c

Browse files
MatchExact and MatchContains now not mandatory
1 parent 10945dc commit f87417c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PSServiceNow.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ function New-ServiceNowQuery{
1919
[string]$OrderDirection='Desc',
2020

2121
# Hashtable containing machine field names and values returned must match exactly (will be combined with AND)
22-
[parameter(mandatory=$true)]
22+
[parameter(mandatory=$false)]
2323
[hashtable]$MatchExact,
2424

2525
# Hashtable containing machine field names and values returned rows must contain (will be combined with AND)
26-
[parameter(mandatory=$true)]
26+
[parameter(mandatory=$false)]
2727
[hashtable]$MatchContains
2828
)
2929
# Start the query off with a order direction

0 commit comments

Comments
 (0)