Acl Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Acl() |
Initializes a new instance of the Acl class. |
Acl(String, Nullable<Guid>, String) |
Initializes a new instance of the Acl class. |
Acl()
Initializes a new instance of the Acl class.
public Acl ();
Public Sub New ()
Applies to
Acl(String, Nullable<Guid>, String)
Initializes a new instance of the Acl class.
public Acl (string aceType = default, Guid? principalId = default, string permission = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.Acl : string * Nullable<Guid> * string -> Microsoft.Azure.Management.DataLake.Analytics.Models.Acl
Public Sub New (Optional aceType As String = Nothing, Optional principalId As Nullable(Of Guid) = Nothing, Optional permission As String = Nothing)
Parameters
- aceType
- String
the access control list (ACL) entry type. UserObj and GroupObj denote the owning user and group, respectively. Possible values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group'
the Azure AD object ID of the user or group being specified in the access control list (ACL) entry.
- permission
- String
the permission type of the access control list (ACL) entry. Possible values include: 'None', 'Use', 'Create', 'Drop', 'Alter', 'Write', 'All'
Applies to
Azure SDK for .NET