class Azure::BatchAI::Mgmt::V2018_03_01::Models::RemoteLoginInformation

Contains remote login details to SSH/RDP to a compute node in cluster.

Attributes

ip_address[RW]

@return [String] ip address

node_id[RW]

@return [String] Id of the compute node

port[RW]

@return [Float] port number.

Public Class Methods

mapper() click to toggle source

Mapper for RemoteLoginInformation class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-03-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: true,
          serialized_name: 'nodeId',
          type: {
            name: 'String'
          }
        },
        ip_address: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ipAddress',
          type: {
            name: 'String'
          }
        },
        port: {
          client_side_validation: true,
          required: true,
          serialized_name: 'port',
          type: {
            name: 'Double'
          }
        }
      }
    }
  }
end