Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…, Fixes #1106 )

Fixing protocol parameter alias (trigger by build keyword)
  • Loading branch information
StartAutomating authored and StartAutomating committed Apr 15, 2024
1 parent 362e963 commit 4bde41c
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions docs/Protocol.HTTP.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,27 @@ Whatever alternative command provided should have a similar signature to Invoke-
|----------|--------|--------|-------------|
|`[String]`|false |named |false |

#### **ExpandProperty**

|Type |Required|Position|PipelineInput|Aliases |
|----------|--------|--------|-------------|---------------|
|`[String]`|false |named |false |Expand Property|

#### **Property**

|Type |Required|Position|PipelineInput|Aliases |
|------------|--------|--------|-------------|----------|
|`[String[]]`|false |named |false |Properties|

---

### Syntax
```PowerShell
Protocol.HTTP [-CommandUri] <Uri> -ScriptBlock <ScriptBlock> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [<CommonParameters>]
Protocol.HTTP [-CommandUri] <Uri> -ScriptBlock <ScriptBlock> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [-ExpandProperty <String>] [-Property <String[]>] [<CommonParameters>]
```
```PowerShell
Protocol.HTTP [-CommandUri] <Uri> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [<CommonParameters>]
Protocol.HTTP [-CommandUri] <Uri> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [-ExpandProperty <String>] [-Property <String[]>] [<CommonParameters>]
```
```PowerShell
Protocol.HTTP [-CommandUri] <Uri> -CommandAst <CommandAst> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [<CommonParameters>]
Protocol.HTTP [-CommandUri] <Uri> -CommandAst <CommandAst> [-ArgumentList <Object>] [-Parameter <IDictionary>] [-Method <String>] [-Invoker <String>] [-ExpandProperty <String>] [-Property <String[]>] [<CommonParameters>]
```

0 comments on commit 4bde41c

Please sign in to comment.