Share via


DenyAssignmentPermission Constructors

Definition

Overloads

DenyAssignmentPermission()

Initializes a new instance of the DenyAssignmentPermission class.

DenyAssignmentPermission(IList<String>, IList<String>, IList<String>, IList<String>)

Initializes a new instance of the DenyAssignmentPermission class.

DenyAssignmentPermission()

Initializes a new instance of the DenyAssignmentPermission class.

public DenyAssignmentPermission ();
Public Sub New ()

Applies to

DenyAssignmentPermission(IList<String>, IList<String>, IList<String>, IList<String>)

Initializes a new instance of the DenyAssignmentPermission class.

public DenyAssignmentPermission (System.Collections.Generic.IList<string> actions = default, System.Collections.Generic.IList<string> notActions = default, System.Collections.Generic.IList<string> dataActions = default, System.Collections.Generic.IList<string> notDataActions = default);
new Microsoft.Azure.Management.Authorization.Models.DenyAssignmentPermission : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Authorization.Models.DenyAssignmentPermission
Public Sub New (Optional actions As IList(Of String) = Nothing, Optional notActions As IList(Of String) = Nothing, Optional dataActions As IList(Of String) = Nothing, Optional notDataActions As IList(Of String) = Nothing)

Parameters

actions
IList<String>

Actions to which the deny assignment does not grant access.

notActions
IList<String>

Actions to exclude from that the deny assignment does not grant access.

dataActions
IList<String>

Data actions to which the deny assignment does not grant access.

notDataActions
IList<String>

Data actions to exclude from that the deny assignment does not grant access.

Applies to