class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput

Describes one input parameter of a function.

Attributes

data_type[RW]

@return [String] The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at msdn.microsoft.com/en-us/library/azure/dn835065.aspx

is_configuration_parameter[RW]

@return [Boolean] A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.

Private Class Methods

mapper() click to toggle source

Mapper for FunctionInput class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_input.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FunctionInput',
    type: {
      name: 'Composite',
      class_name: 'FunctionInput',
      model_properties: {
        data_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dataType',
          type: {
            name: 'String'
          }
        },
        is_configuration_parameter: {
          client_side_validation: true,
          required: false,
          serialized_name: 'isConfigurationParameter',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end