Azure Functions Job parameters

Azure Functions is a cloud service for serverless application development. The following table describes Azure Functions job parameters:

Parameter

Description

Connection profile

Determines which connection profile is used to connect to the Azure Functions workspace.

Function App

Defines the name of the function application that contains your function.

Function Name

Defines the name of the function that you want to run.

Optional Input Parameters

Defines specific parameters in JSON format that are passed when when the function runs.

Format: {"param1":"value1", "param2":"value2"}

For no parameters, specify {}.

Function Type

One of the following types of Azure functions:

  • Activity - the basic unit of work in a durable function orchestration
  • HTTP - an HTTP-triggered function

Parent Topic

Job types