class Azure::MachineLearningServices::Mgmt::V2018_11_19::Models::AmlComputeNodeInformation
Compute
node information related to a AmlCompute
.
Attributes
ip_address[RW]
@return [String] IP address. Public IP address of the compute node.
node_id[RW]
@return [String] Node ID. ID of the compute node.
port[RW]
@return [Float] Port. SSH port number of the node.
Public Class Methods
mapper()
click to toggle source
Mapper for AmlComputeNodeInformation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/aml_compute_node_information.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AmlCompute', type: { name: 'Composite', class_name: 'AmlComputeNodeInformation', model_properties: { node_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nodeId', type: { name: 'String' } }, ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'ipAddress', type: { name: 'String' } }, port: { client_side_validation: true, required: false, read_only: true, serialized_name: 'port', type: { name: 'Double' } } } } } end