class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceInputColumn

Describes an input column for the Azure Machine Learning web service endpoint.

Attributes

data_type[RW]

@return [String] The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at msdn.microsoft.com/en-us/library/azure/dn905923.aspx .

map_to[RW]

@return [Integer] The zero based index of the function parameter this input maps to.

name[RW]

@return [String] The name of the input column.

Private Class Methods

mapper() click to toggle source

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

# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_input_column.rb, line 35
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureMachineLearningWebServiceInputColumn',
    type: {
      name: 'Composite',
      class_name: 'AzureMachineLearningWebServiceInputColumn',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        data_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dataType',
          type: {
            name: 'String'
          }
        },
        map_to: {
          client_side_validation: true,
          required: false,
          serialized_name: 'mapTo',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end