HttpTriggerOptions interface

Properties

authLevel

The function HTTP authorization level Defaults to 'anonymous' if not specified

methods

An array of the http methods for this http input Defaults to ["get", "post"] if not specified

route

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

Property Details

authLevel

The function HTTP authorization level Defaults to 'anonymous' if not specified

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

Property Value

"function" | "anonymous" | "admin"

methods

An array of the http methods for this http input Defaults to ["get", "post"] if not specified

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