Show / Hide Table of Contents

Class TriggerHttpRequestArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TriggerHttpRequestArgs
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 TriggerHttpRequestArgs : ResourceArgs

Constructors

View Source

TriggerHttpRequestArgs()

Declaration
public TriggerHttpRequestArgs()

Properties

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 the request be using. Possible values include DELETE, GET, PATCH, POST or PUT.

Declaration
public Input<string> Method { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the HTTP Request Trigger 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

RelativePath

Specifies the Relative Path used for this Request.

Declaration
public Input<string> RelativePath { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Schema

A JSON Blob defining the Schema of the incoming request. This needs to be valid JSON.

Declaration
public Input<string> Schema { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.