Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.batchai.implementation; import com.fasterxml.jackson.annotation.JsonProperty;
Login details to SSH to a compute node in cluster.
/** * Login details to SSH to a compute node in cluster. */
public class RemoteLoginInformationInner {
Node ID. ID of the compute node.
/** * Node ID. * ID of the compute node. */
@JsonProperty(value = "nodeId", access = JsonProperty.Access.WRITE_ONLY) private String nodeId;
IP address. Public IP address of the compute node.
/** * IP address. * Public IP address of the compute node. */
@JsonProperty(value = "ipAddress", access = JsonProperty.Access.WRITE_ONLY) private String ipAddress;
Port. SSH port number of the node.
/** * Port. * SSH port number of the node. */
@JsonProperty(value = "port", access = JsonProperty.Access.WRITE_ONLY) private Double port;
Get iD of the compute node.
Returns:the nodeId value
/** * Get iD of the compute node. * * @return the nodeId value */
public String nodeId() { return this.nodeId; }
Get public IP address of the compute node.
Returns:the ipAddress value
/** * Get public IP address of the compute node. * * @return the ipAddress value */
public String ipAddress() { return this.ipAddress; }
Get sSH port number of the node.
Returns:the port value
/** * Get sSH port number of the node. * * @return the port value */
public Double port() { return this.port; } }