Class ActionHttpArgs
Inherited Members
Namespace: Pulumi.Azure.LogicApps
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ActionHttpArgs : ResourceArgs
Constructors
View SourceActionHttpArgs()
Declaration
public ActionHttpArgs()
Properties
View SourceBody
Specifies the HTTP Body that should be sent to the uri when this HTTP Action is triggered.
Declaration
public Input<string> Body { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Headers
Specifies a Map of Key-Value Pairs that should be sent to the uri when this HTTP Action is triggered.
Declaration
public InputMap<string> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
LogicAppId
Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
Declaration
public Input<string> LogicAppId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Method
Specifies the HTTP Method which should be used for this HTTP Action. Possible values include DELETE, GET, PATCH, POST and PUT.
Declaration
public Input<string> Method { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RunAfters
Specifies the place of the HTTP Action in the Logic App Workflow. If not specified, the HTTP Action is right after the Trigger. A run_after block is as defined below.
Declaration
public InputList<ActionHttpRunAfterArgs> RunAfters { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<ActionHttpRunAfterArgs> |
Uri
Specifies the URI which will be called when this HTTP Action is triggered.
Declaration
public Input<string> Uri { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |