Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput
- 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
-
#data_type ⇒ String
the function input parameter.
-
#is_configuration_parameter ⇒ Boolean
parameter.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FunctionInput class as Ruby Hash.
Instance Attribute Details
#data_type ⇒ String
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
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_parameter ⇒ Boolean
parameter. True if this input parameter is expected to be a constant. Default is false.
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
.mapper ⇒ Object
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 |