class Azure::BatchAI::Mgmt::V2018_05_01::Models::RemoteLoginInformation
Login details to SSH to a compute node in cluster.
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.
Private Class Methods
mapper()
click to toggle source
Mapper for RemoteLoginInformation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-05-01/generated/azure_mgmt_batchai/models/remote_login_information.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RemoteLoginInformation', type: { name: 'Composite', class_name: 'RemoteLoginInformation', 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