class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
Describes an output column for the Azure
Machine Learning web service endpoint.
Attributes
data_type[RW]
@return [String] The (Azure
Machine Learning supported) data type of the output column. A list of valid Azure
Machine Learning data types are described at msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
name[RW]
@return [String] The name of the output column.
Private Class Methods
mapper()
click to toggle source
Mapper for AzureMachineLearningWebServiceOutputColumn
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_output_column.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureMachineLearningWebServiceOutputColumn', type: { name: 'Composite', class_name: 'AzureMachineLearningWebServiceOutputColumn', 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' } } } } } end