Class AzureFunctionActivity


  • public final class AzureFunctionActivity
    extends ExecutionActivity
    Azure Function activity.
    • Constructor Detail

      • AzureFunctionActivity

        public AzureFunctionActivity()
    • Method Detail

      • method

        public AzureFunctionActivityMethod method()
        Get the method property: Rest API method for target endpoint.
        Returns:
        the method value.
      • withMethod

        public AzureFunctionActivity withMethod​(AzureFunctionActivityMethod method)
        Set the method property: Rest API method for target endpoint.
        Parameters:
        method - the method value to set.
        Returns:
        the AzureFunctionActivity object itself.
      • functionName

        public Object functionName()
        Get the functionName property: Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string).
        Returns:
        the functionName value.
      • withFunctionName

        public AzureFunctionActivity withFunctionName​(Object functionName)
        Set the functionName property: Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string).
        Parameters:
        functionName - the functionName value to set.
        Returns:
        the AzureFunctionActivity object itself.
      • headers

        public Object headers()
        Get the headers property: Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
        Returns:
        the headers value.
      • withHeaders

        public AzureFunctionActivity withHeaders​(Object headers)
        Set the headers property: Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
        Parameters:
        headers - the headers value to set.
        Returns:
        the AzureFunctionActivity object itself.
      • body

        public Object body()
        Get the body property: Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
        Returns:
        the body value.
      • withBody

        public AzureFunctionActivity withBody​(Object body)
        Set the body property: Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
        Parameters:
        body - the body value to set.
        Returns:
        the AzureFunctionActivity object itself.