NodeUpdateUserParameter Constructors

Definition

Overloads

NodeUpdateUserParameter()

Initializes a new instance of the NodeUpdateUserParameter class.

NodeUpdateUserParameter(String, Nullable<DateTime>, String)

Initializes a new instance of the NodeUpdateUserParameter class.

NodeUpdateUserParameter()

Source:
NodeUpdateUserParameter.cs

Initializes a new instance of the NodeUpdateUserParameter class.

public NodeUpdateUserParameter ();
Public Sub New ()

Applies to

NodeUpdateUserParameter(String, Nullable<DateTime>, String)

Source:
NodeUpdateUserParameter.cs

Initializes a new instance of the NodeUpdateUserParameter class.

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

Parameters

password
String

The password of the Account.

expiryTime
Nullable<DateTime>

The time at which the Account should expire.

sshPublicKey
String

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

Applies to