Udostępnij za pośrednictwem


ComputeNodeUser Constructors

Definition

Overloads

ComputeNodeUser()

Initializes a new instance of the ComputeNodeUser class.

ComputeNodeUser(String, Nullable<Boolean>, Nullable<DateTime>, String, String)

Initializes a new instance of the ComputeNodeUser class.

ComputeNodeUser()

Source:
ComputeNodeUser.cs

Initializes a new instance of the ComputeNodeUser class.

public ComputeNodeUser ();
Public Sub New ()

Applies to

ComputeNodeUser(String, Nullable<Boolean>, Nullable<DateTime>, String, String)

Source:
ComputeNodeUser.cs

Initializes a new instance of the ComputeNodeUser class.

public ComputeNodeUser (string name, bool? isAdmin = default, DateTime? expiryTime = default, string password = default, string sshPublicKey = default);
new Microsoft.Azure.Batch.Protocol.Models.ComputeNodeUser : string * Nullable<bool> * Nullable<DateTime> * string * string -> Microsoft.Azure.Batch.Protocol.Models.ComputeNodeUser
Public Sub New (name As String, Optional isAdmin As Nullable(Of Boolean) = Nothing, Optional expiryTime As Nullable(Of DateTime) = Nothing, Optional password As String = Nothing, Optional sshPublicKey As String = Nothing)

Parameters

name
String

The user name of the Account.

isAdmin
Nullable<Boolean>

Whether the Account should be an administrator on the Compute Node.

expiryTime
Nullable<DateTime>

The time at which the Account should expire.

password
String

The password of the Account.

sshPublicKey
String

The SSH public key that can be used for remote login to the Compute Node.

Applies to