Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
- Inherits:
-
Object
- Object
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_parameter_link.rb
Overview
Association link for a graph global parameter to a node in the graph.
Instance Attribute Summary collapse
-
#node_id ⇒ String
The graph node’s identifier.
-
#parameter_key ⇒ String
parameter maps to.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GraphParameterLink class as Ruby Hash.
Instance Attribute Details
#node_id ⇒ String
Returns The graph node’s identifier.
16 17 18 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_parameter_link.rb', line 16 def node_id @node_id end |
#parameter_key ⇒ String
parameter maps to.
20 21 22 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/graph_parameter_link.rb', line 20 def parameter_key @parameter_key end |
Class Method Details
.mapper ⇒ Object
Mapper for GraphParameterLink 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/graph_parameter_link.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GraphParameterLink', type: { name: 'Composite', class_name: 'GraphParameterLink', model_properties: { node_id: { client_side_validation: true, required: true, serialized_name: 'nodeId', type: { name: 'String' } }, parameter_key: { client_side_validation: true, required: true, serialized_name: 'parameterKey', type: { name: 'String' } } } } } end |