Redagować

Udostępnij przez


allowedTenantsAudience 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.

The allowedTenantsAudience type is used as the signInAudienceRestrictions value for an application resource to indicate that the application can only be used in one of the allowed Entra tenants in the listed in allowedTenantIds.

This type may only be used when the application's signInAudience property is AzureADMultipleOrgs.

Inherits from signInAudienceRestrictionsBase.

Properties

Property Type Description
allowedTenantIds String collection The list of Entra tenant IDs where the application can be used as either a client application or a resource application (API). Must contain at least one value. The tenant ID where the application is registered may be included, but is not required (see isHomeTenantAllowed). Required.
isHomeTenantAllowed Boolean Whether the tenant where the application is registered is allowed. Currently, only true is supported. Default is true.
kind kind If provided, must be allowedTenants. Optional. Inherited from signInAudienceRestrictionsBase.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.allowedTenantsAudience",
  "kind": "String",
  "allowedTenantIds": [
    "String"
  ],
  "isHomeTenantAllowed": "Boolean"
}