AclStatus Constructors

Definition

Overloads

Name Description
AclStatus()

Initializes a new instance of the AclStatus class.

AclStatus(IList<String>, String, String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the AclStatus class.

AclStatus()

Initializes a new instance of the AclStatus class.

public AclStatus();
Public Sub New ()

Applies to

AclStatus(IList<String>, String, String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the AclStatus class.

public AclStatus(System.Collections.Generic.IList<string> entries = default, string group = default, string owner = default, int? permission = default, bool? stickyBit = default);
new Microsoft.Azure.Management.DataLake.Store.Models.AclStatus : System.Collections.Generic.IList<string> * string * string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.DataLake.Store.Models.AclStatus
Public Sub New (Optional entries As IList(Of String) = Nothing, Optional group As String = Nothing, Optional owner As String = Nothing, Optional permission As Nullable(Of Integer) = Nothing, Optional stickyBit As Nullable(Of Boolean) = Nothing)

Parameters

entries
IList<String>

the list of ACLSpec entries on a file or directory.

group
String

the group owner, an AAD Object ID.

owner
String

the user owner, an AAD Object ID.

permission
Nullable<Int32>

The octal representation of the unnamed user, mask and other permissions.

stickyBit
Nullable<Boolean>

the indicator of whether the sticky bit is on or off.

Applies to