Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_output_column.rb
Overview
Describes an output column for the Azure Machine Learning web service endpoint.
Instance Attribute Summary collapse
-
#data_type ⇒ String
the output column.
-
#name ⇒ String
The name of the output column.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureMachineLearningWebServiceOutputColumn class as Ruby Hash.
Instance Attribute Details
#data_type ⇒ String
the output column. A list of valid Azure Machine Learning data types are described at msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
23 24 25 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_output_column.rb', line 23 def data_type @data_type end |
#name ⇒ String
Returns The name of the output column.
17 18 19 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_output_column.rb', line 17 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureMachineLearningWebServiceOutputColumn class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# 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 |