RequiredResourceAccess 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
RequiredResourceAccess() |
Initializes a new instance of the RequiredResourceAccess class. |
RequiredResourceAccess(IList<ResourceAccess>, IDictionary<String,Object>, String) |
Initializes a new instance of the RequiredResourceAccess class. |
RequiredResourceAccess()
Initializes a new instance of the RequiredResourceAccess class.
public RequiredResourceAccess ();
Public Sub New ()
Applies to
RequiredResourceAccess(IList<ResourceAccess>, IDictionary<String,Object>, String)
Initializes a new instance of the RequiredResourceAccess class.
public RequiredResourceAccess (System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.ResourceAccess> resourceAccess, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string resourceAppId = default);
new Microsoft.Azure.Graph.RBAC.Models.RequiredResourceAccess : System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.ResourceAccess> * System.Collections.Generic.IDictionary<string, obj> * string -> Microsoft.Azure.Graph.RBAC.Models.RequiredResourceAccess
Public Sub New (resourceAccess As IList(Of ResourceAccess), Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional resourceAppId As String = Nothing)
Parameters
- resourceAccess
- IList<ResourceAccess>
The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource.
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- resourceAppId
- String
The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application.
Applies to
Azure SDK for .NET