Edit

m365CapabilityResourceScopes resource type

Namespace: microsoft.graph

Specifies the included and excluded resource scopes for a cross-tenant capability. This type defines which resources are in scope for the capability and which resources are explicitly excluded. This resource is used as the resourceScopes property of the m365CapabilityInboundAccess resource.

Properties

Property Type Description
excluded m365CapabilityResourceScope collection Resources to exclude from the scope. If a resource appears in both included and excluded, the excluded property takes precedence.
included m365CapabilityResourceScope collection Resources to include in the scope.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.m365CapabilityResourceScopes",
  "included": [
    { "@odata.type": "microsoft.graph.m365CapabilityResourceScope" }
  ],
  "excluded": [
    { "@odata.type": "microsoft.graph.m365CapabilityResourceScope" }
  ]
}