Class AzureFunctionActivity


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

      • AzureFunctionActivity

        public AzureFunctionActivity()
    • Method Detail

      • getMethod

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

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

        public Object getFunctionName()
        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.
      • setFunctionName

        public AzureFunctionActivity setFunctionName​(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.
      • getHeaders

        public Object getHeaders()
        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.
      • setHeaders

        public AzureFunctionActivity setHeaders​(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.
      • getBody

        public Object getBody()
        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.
      • setBody

        public AzureFunctionActivity setBody​(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.