crossTenantAccessPolicyTenantRestrictions resource type

Namespace: microsoft.graph

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.

Defines how to target your tenant restrictions settings. Tenant restrictions give you control over the external organizations that your users can access from your network or devices when they use external identities. Settings can be targeted to specific users, groups, or applications.

Inherits from crossTenantAccessPolicyB2BSettings.

Properties

Property Type Description
applications crossTenantAccessPolicyTargetConfiguration The list of applications targeted with your cross-tenant access policy. Inherited from crossTenantAccessPolicyB2BSetting.
devices devicesFilter Defines the rule for filtering devices and whether devices satisfying the rule should be allowed or blocked. Not implemented.
usersAndGroups crossTenantAccessPolicyTargetConfiguration The list of users and groups targeted with your cross-tenant access policy. Inherited from crossTenantAccessPolicyB2BSetting.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.crossTenantAccessPolicyTenantRestrictions",
  "usersAndGroups": {
    "@odata.type": "microsoft.graph.crossTenantAccessPolicyTargetConfiguration"
  },
  "applications": {
    "@odata.type": "microsoft.graph.crossTenantAccessPolicyTargetConfiguration"
  },
  "devices": {
    "@odata.type": "microsoft.graph.devicesFilter"
  }
}