次の方法で共有


UserAccount コンストラクター

定義

オーバーロード

UserAccount()

クラスのモックをサポートする既定の UserAccount コンストラクター。

UserAccount(String, String, Nullable<ElevationLevel>, LinuxUserConfiguration, WindowsUserConfiguration)

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

UserAccount()

ソース:
UserAccount.cs

クラスのモックをサポートする既定の UserAccount コンストラクター。

protected UserAccount ();
Protected Sub New ()

適用対象

UserAccount(String, String, Nullable<ElevationLevel>, LinuxUserConfiguration, WindowsUserConfiguration)

ソース:
UserAccount.cs

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

public UserAccount (string name, string password, Microsoft.Azure.Batch.Common.ElevationLevel? elevationLevel = default, Microsoft.Azure.Batch.LinuxUserConfiguration linuxUserConfiguration = default, Microsoft.Azure.Batch.WindowsUserConfiguration windowsUserConfiguration = default);
new Microsoft.Azure.Batch.UserAccount : string * string * Nullable<Microsoft.Azure.Batch.Common.ElevationLevel> * Microsoft.Azure.Batch.LinuxUserConfiguration * Microsoft.Azure.Batch.WindowsUserConfiguration -> Microsoft.Azure.Batch.UserAccount
Public Sub New (name As String, password As String, Optional elevationLevel As Nullable(Of ElevationLevel) = Nothing, Optional linuxUserConfiguration As LinuxUserConfiguration = Nothing, Optional windowsUserConfiguration As WindowsUserConfiguration = Nothing)

パラメーター

name
String

ユーザー アカウント名。

password
String

ユーザー アカウントのパスワードです。

elevationLevel
Nullable<ElevationLevel>

ユーザー アカウントの昇格レベル。

linuxUserConfiguration
LinuxUserConfiguration

Linux ノードでユーザー アカウントを作成するために使用される追加のプロパティ。

windowsUserConfiguration
WindowsUserConfiguration

ユーザー アカウントの Windows 固有のユーザー構成。

適用対象