Show / Hide Table of Contents

Class ActionHttpArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ActionHttpArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.LogicApps
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ActionHttpArgs : ResourceArgs

Constructors

View Source

ActionHttpArgs()

Declaration
public ActionHttpArgs()

Properties

View Source

Body

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.