Share via


FunctionInput Class

Definition

Describes one input parameter of a function.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.FunctionInputTypeConverter))]
public class FunctionInput : Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.FunctionInputTypeConverter))>]
type FunctionInput = class
    interface IFunctionInput
    interface IJsonSerializable
Public Class FunctionInput
Implements IFunctionInput
Inheritance
FunctionInput
Attributes
Implements

Constructors

FunctionInput()

Creates an new FunctionInput instance.

Properties

DataType

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

IsConfigurationParameter

A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.

Methods

DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of FunctionInput.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of FunctionInput.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput.

FromJsonString(String)

Creates a new instance of FunctionInput, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of FunctionInput into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

Applies to