class Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
Association link for a graph global parameter to a node in the graph.
Attributes
node_id[RW]
@return [String] The graph node's identifier
parameter_key[RW]
@return [String] The identifier of the node parameter that the global parameter maps to.
Private Class Methods
mapper()
click to toggle source
Mapper for GraphParameterLink
class as Ruby Hash. This will be used for serialization/deserialization.
# 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