共用方式為


LinuxUserConfiguration Constructors

Definition

Overloads

LinuxUserConfiguration()

Initializes a new instance of the LinuxUserConfiguration class.

LinuxUserConfiguration(Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the LinuxUserConfiguration class.

LinuxUserConfiguration()

Source:
LinuxUserConfiguration.cs

Initializes a new instance of the LinuxUserConfiguration class.

public LinuxUserConfiguration ();
Public Sub New ()

Applies to

LinuxUserConfiguration(Nullable<Int32>, Nullable<Int32>, String)

Source:
LinuxUserConfiguration.cs

Initializes a new instance of the LinuxUserConfiguration class.

public LinuxUserConfiguration (int? uid = default, int? gid = default, string sshPrivateKey = default);
new Microsoft.Azure.Batch.Protocol.Models.LinuxUserConfiguration : Nullable<int> * Nullable<int> * string -> Microsoft.Azure.Batch.Protocol.Models.LinuxUserConfiguration
Public Sub New (Optional uid As Nullable(Of Integer) = Nothing, Optional gid As Nullable(Of Integer) = Nothing, Optional sshPrivateKey As String = Nothing)

Parameters

uid
Nullable<Int32>

The user ID of the user Account.

gid
Nullable<Int32>

The group ID for the user Account.

sshPrivateKey
String

The SSH private key for the user Account.

Applies to