Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_input.rb

Overview

Describes one input parameter of a function.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#data_typeString

the function input parameter. 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_input.rb', line 19

def data_type
  @data_type
end

#is_configuration_parameterBoolean

parameter. True if this input parameter is expected to be a constant. Default is false.

Returns:

  • (Boolean)

    A flag indicating if the parameter is a configuration



24
25
26
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_input.rb', line 24

def is_configuration_parameter
  @is_configuration_parameter
end

Class Method Details

.mapperObject

Mapper for FunctionInput 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/function_input.rb', line 31

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FunctionInput',
    type: {
      name: 'Composite',
      class_name: 'FunctionInput',
      model_properties: {
        data_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dataType',
          type: {
            name: 'String'
          }
        },
        is_configuration_parameter: {
          client_side_validation: true,
          required: false,
          serialized_name: 'isConfigurationParameter',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end