Skip to content

Commit

Permalink
Added PATCH method
Browse files Browse the repository at this point in the history
  • Loading branch information
jmedd-ats committed Jan 21, 2021
1 parent 3ae24cd commit e80761c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Functions/Public/Invoke-vRARestMethod.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.PARAMETER Method
REST Method:
Supported Methods: GET, POST, PUT,DELETE
Supported Methods: GET, PATCH, POST, PUT, DELETE
.PARAMETER URI
API URI, e.g. /identity/api/tenants
Expand Down Expand Up @@ -53,7 +53,7 @@
[Parameter(Mandatory=$true, ParameterSetName="Standard")]
[Parameter(Mandatory=$true, ParameterSetName="Body")]
[Parameter(Mandatory=$true, ParameterSetName="OutFile")]
[ValidateSet("GET","POST","PUT","DELETE")]
[ValidateSet("GET","PATCH","POST","PUT","DELETE")]
[String]$Method,

[Parameter(Mandatory=$true, ParameterSetName="Standard")]
Expand Down

0 comments on commit e80761c

Please sign in to comment.