NfsUser Constructors

Definition

Overloads

Name Description
NfsUser()

Initializes a new instance of the NfsUser class.

NfsUser(Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the NfsUser class.

NfsUser()

Initializes a new instance of the NfsUser class.

public NfsUser();
Public Sub New ()

Applies to

NfsUser(Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the NfsUser class.

public NfsUser(long? userId = default, long? groupId = default);
new Microsoft.Azure.Management.NetApp.Models.NfsUser : Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.NetApp.Models.NfsUser
Public Sub New (Optional userId As Nullable(Of Long) = Nothing, Optional groupId As Nullable(Of Long) = Nothing)

Parameters

userId
Nullable<Int64>

The NFS user's UID

groupId
Nullable<Int64>

The NFS user's GID

Applies to