Edit

multiTenantApplicationsToProvisionSnapshot resource type

Namespace: microsoft.graph.tenantGovernanceServices

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a snapshot of a multi-tenant application configuration that was captured when a governance relationship or request was created. This preserves the application configuration as it was defined at that point in time.

Properties

Property Type Description
appId String The appId (client ID) of the multi-tenant application.
displayName String The display name of the application.
objectId String The object ID of the service principal in the governing tenant.
requiredResourceAccesses microsoft.graph.tenantGovernanceServices.requiredResourceAccess collection The collection of resource accesses (permissions) required by the application.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.tenantGovernanceServices.multiTenantApplicationsToProvisionSnapshot",
  "appId": "String",
  "objectId": "String",
  "displayName": "String",
  "requiredResourceAccesses": [
    {
      "@odata.type": "microsoft.graph.tenantGovernanceServices.requiredResourceAccess"
    }
  ]
}