HttpTrigger interface

Full configuration for the primary input to a function

Extends

Properties

authLevel

The function HTTP authorization level.

methods

An array of the http methods for this http input

route

The route for this http input. If not specified, the function name will be used

Inherited Properties

name

Must be unique within this function. If using the trigger namespace to create this object, the name will be auto-generated for you

type

The type for this trigger ('httpTrigger', 'timerTrigger', etc.) If using the trigger namespace to create this object, the type will be set for you

Property Details

authLevel

The function HTTP authorization level.

authLevel: "function" | "anonymous" | "admin"

Property Value

"function" | "anonymous" | "admin"

methods

An array of the http methods for this http input

methods: HttpMethod[]

Property Value

route

The route for this http input. If not specified, the function name will be used

route?: string

Property Value

string

Inherited Property Details

name

Must be unique within this function. If using the trigger namespace to create this object, the name will be auto-generated for you

name: string

Property Value

string

Inherited From FunctionTrigger.name

type

The type for this trigger ('httpTrigger', 'timerTrigger', etc.) If using the trigger namespace to create this object, the type will be set for you

type: string

Property Value

string

Inherited From FunctionTrigger.type