ComputeNodeUser コンストラクター

定義

オーバーロード

ComputeNodeUser()

ComputeNodeUser クラスの新しいインスタンスを初期化します。

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

ComputeNodeUser クラスの新しいインスタンスを初期化します。

ComputeNodeUser()

ソース:
ComputeNodeUser.cs

ComputeNodeUser クラスの新しいインスタンスを初期化します。

public ComputeNodeUser ();
Public Sub New ()

適用対象

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

ソース:
ComputeNodeUser.cs

ComputeNodeUser クラスの新しいインスタンスを初期化します。

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)

パラメーター

name
String

アカウントのユーザー名。

isAdmin
Nullable<Boolean>

アカウントがコンピューティング ノードの管理者である必要があるかどうか。

expiryTime
Nullable<DateTime>

アカウントの有効期限が切れる時刻。

password
String

アカウントのパスワード。

sshPublicKey
String

コンピューティング ノードへのリモート ログインに使用できる SSH 公開キー。

適用対象