Permission Constructors

Definition

Overloads

Permission()

Initializes a new instance of the Permission class.

Permission(IList<String>, IList<String>)

Initializes a new instance of the Permission class.

Permission()

Initializes a new instance of the Permission class.

public Permission ();
Public Sub New ()

Applies to

Permission(IList<String>, IList<String>)

Initializes a new instance of the Permission class.

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

Parameters

dataActions
IList<String>

An array of data actions that are allowed.

notDataActions
IList<String>

An array of data actions that are denied.

Applies to