Class FunctionInput


  • public final class FunctionInput
    extends Object
    Describes one input parameter of a function.
    • Constructor Detail

      • FunctionInput

        public FunctionInput()
    • Method Detail

      • dataType

        public String dataType()
        Get the dataType property: The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx.
        Returns:
        the dataType value.
      • withDataType

        public FunctionInput withDataType​(String dataType)
        Set the dataType property: The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx.
        Parameters:
        dataType - the dataType value to set.
        Returns:
        the FunctionInput object itself.
      • isConfigurationParameter

        public Boolean isConfigurationParameter()
        Get the isConfigurationParameter property: A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
        Returns:
        the isConfigurationParameter value.
      • withIsConfigurationParameter

        public FunctionInput withIsConfigurationParameter​(Boolean isConfigurationParameter)
        Set the isConfigurationParameter property: A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
        Parameters:
        isConfigurationParameter - the isConfigurationParameter value to set.
        Returns:
        the FunctionInput object itself.
      • validate

        public void validate()
        Validates the instance.
        Throws:
        IllegalArgumentException - thrown if the instance is not valid.