Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceParameter
- Inherits:
-
Object
- Object
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceParameter
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_parameter.rb
Overview
Web Service Parameter object for node and global parameter
Instance Attribute Summary collapse
-
#certificate_thumbprint ⇒ String
the thumbprint of the certificate should be put here.
-
#value ⇒ Object
The parameter value.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WebServiceParameter class as Ruby Hash.
Instance Attribute Details
#certificate_thumbprint ⇒ String
the thumbprint of the certificate should be put here.
20 21 22 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_parameter.rb', line 20 def certificate_thumbprint @certificate_thumbprint end |
#value ⇒ Object
Returns The parameter value.
16 17 18 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_parameter.rb', line 16 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for WebServiceParameter class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 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 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_parameter.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WebServiceParameter', type: { name: 'Composite', class_name: 'WebServiceParameter', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Object' } }, certificate_thumbprint: { client_side_validation: true, required: false, serialized_name: 'certificateThumbprint', type: { name: 'String' } } } } } end |