Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionOutput
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_output.rb
Overview
Describes the output of a function.
Instance Attribute Summary collapse
-
#data_type ⇒ String
the function output.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FunctionOutput class as Ruby Hash.
Instance Attribute Details
#data_type ⇒ String
the function output. A list of valid Azure Stream Analytics data types are described at msdn.microsoft.com/en-us/library/azure/dn835065.aspx
19 20 21 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_output.rb', line 19 def data_type @data_type end |
Class Method Details
.mapper ⇒ Object
Mapper for FunctionOutput class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_output.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FunctionOutput', type: { name: 'Composite', class_name: 'FunctionOutput', model_properties: { data_type: { client_side_validation: true, required: false, serialized_name: 'dataType', type: { name: 'String' } } } } } end |