Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionOutput

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#data_typeString

the function output. A list of valid Azure Stream Analytics data types are described at msdn.microsoft.com/en-us/library/azure/dn835065.aspx

Returns:

  • (String)

    The (Azure Stream Analytics supported) data type of



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

.mapperObject

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