Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionBinding
- Inherits:
-
FunctionBinding
- Object
- FunctionBinding
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionBinding
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb
Overview
The binding to an Azure Machine Learning web service.
Instance Attribute Summary collapse
-
#api_key ⇒ String
endpoint.
-
#batch_size ⇒ Integer
of rows for every Azure ML RRS execute request.
-
#endpoint ⇒ String
Machine Learning web service.
-
#inputs ⇒ AzureMachineLearningWebServiceInputs
Machine Learning web service endpoint.
-
#outputs ⇒ Array<AzureMachineLearningWebServiceOutputColumn>
outputs from the Azure Machine Learning web service endpoint execution.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureMachineLearningWebServiceFunctionBinding class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ AzureMachineLearningWebServiceFunctionBinding
constructor
A new instance of AzureMachineLearningWebServiceFunctionBinding.
Constructor Details
#initialize ⇒ AzureMachineLearningWebServiceFunctionBinding
16 17 18 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 16 def initialize @type = "Microsoft.MachineLearning/WebService" end |
Instance Attribute Details
#api_key ⇒ String
endpoint.
29 30 31 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 29 def api_key @api_key end |
#batch_size ⇒ Integer
of rows for every Azure ML RRS execute request. Default is 1000.
41 42 43 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 41 def batch_size @batch_size end |
#endpoint ⇒ String
Machine Learning web service. Find out more here: docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
25 26 27 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 25 def endpoint @endpoint end |
#inputs ⇒ AzureMachineLearningWebServiceInputs
Machine Learning web service endpoint.
33 34 35 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 33 def inputs @inputs end |
#outputs ⇒ Array<AzureMachineLearningWebServiceOutputColumn>
outputs from the Azure Machine Learning web service endpoint execution.
37 38 39 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 37 def outputs @outputs end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureMachineLearningWebServiceFunctionBinding class as Ruby Hash. This will be used for serialization/deserialization.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/azure_machine_learning_web_service_function_binding.rb', line 49 def self.mapper() { required: false, serialized_name: 'Microsoft.MachineLearning/WebService', type: { name: 'Composite', class_name: 'AzureMachineLearningWebServiceFunctionBinding', model_properties: { type: { required: true, serialized_name: 'type', type: { name: 'String' } }, endpoint: { required: false, serialized_name: 'properties.endpoint', type: { name: 'String' } }, api_key: { required: false, serialized_name: 'properties.apiKey', type: { name: 'String' } }, inputs: { required: false, serialized_name: 'properties.inputs', type: { name: 'Composite', class_name: 'AzureMachineLearningWebServiceInputs' } }, outputs: { required: false, serialized_name: 'properties.outputs', type: { name: 'Sequence', element: { required: false, serialized_name: 'AzureMachineLearningWebServiceOutputColumnElementType', type: { name: 'Composite', class_name: 'AzureMachineLearningWebServiceOutputColumn' } } } }, batch_size: { required: false, serialized_name: 'properties.batchSize', type: { name: 'Number' } } } } } end |