ResourceAccess Constructors

Definition

Overloads

ResourceAccess()

Initializes a new instance of the ResourceAccess class.

ResourceAccess(String, IDictionary<String,Object>, String)

Initializes a new instance of the ResourceAccess class.

ResourceAccess()

Initializes a new instance of the ResourceAccess class.

public ResourceAccess ();
Public Sub New ()

Applies to

ResourceAccess(String, IDictionary<String,Object>, String)

Initializes a new instance of the ResourceAccess class.

public ResourceAccess (string id, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string type = default);
new Microsoft.Azure.Graph.RBAC.Models.ResourceAccess : string * System.Collections.Generic.IDictionary<string, obj> * string -> Microsoft.Azure.Graph.RBAC.Models.ResourceAccess
Public Sub New (id As String, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional type As String = Nothing)

Parameters

id
String

The unique identifier for one of the OAuth2Permission or AppRole instances that the resource application exposes.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

type
String

Specifies whether the id property references an OAuth2Permission or an AppRole. Possible values are "scope" or "role".

Applies to