Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.batchai; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.batchai.implementation.RemoteLoginInformationInner; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.resources.fluentcore.model.Indexable;
An immutable client-side representation of Batch AI remote login details to SSH/RDP to a compute node in cluster.
/** * An immutable client-side representation of Batch AI remote login details to SSH/RDP to a compute node in cluster. */
@Fluent @Beta(Beta.SinceVersion.V1_12_0) public interface RemoteLoginInformation extends Indexable, HasInner<RemoteLoginInformationInner> {
Returns:Id of the compute node
/** * @return Id of the compute node */
String nodeId();
Returns:ip address
/** * @return ip address */
String ipAddress();
Returns:port number
/** * @return port number */
int port(); }