Skip to content

Latest commit

 

History

History
68 lines (60 loc) · 2.84 KB

managedtenants-tenantgroup.md

File metadata and controls

68 lines (60 loc) · 2.84 KB
title description author ms.localizationpriority ms.subservice doc_type
tenantGroup resource type
Represents a logical group of managed tenants.
idwilliams
medium
m365-lighthouse
resourcePageType

tenantGroup resource type

Namespace: microsoft.graph.managedTenants

[!INCLUDE beta-disclaimer]

Represents a logical group of managed tenants.

Methods

Method Return type Description
List tenant groups microsoft.graph.managedTenants.tenantGroup collection Get a list of the tenantGroup objects and their properties.
Get tenant group microsoft.graph.managedTenants.tenantGroup Read the properties and relationships of a tenantGroup object.
Search for tenant microsoft.graph.managedTenants.tenantGroup collection Searches for the specific managed tenant across tenant groups.

Properties

Property Type Description
allTenantsIncluded Boolean A flag indicating whether all managed tenant are included in the tenant group. Required. Read-only.
displayName String The display name for the tenant group. Optional. Read-only.
id String The unique identifier for the tenant group. Required. Read-only.
managementActions microsoft.graph.managedTenants.managementActionInfo collection The collection of management action associated with the tenant group. Optional. Read-only.
managementIntents microsoft.graph.managedTenants.managementIntentInfo collection The collection of management intents associated with the tenant group. Optional. Read-only.
tenantIds String collection The collection of managed tenant identifiers include in the tenant group. Optional. Read-only.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.managedTenants.tenantGroup",
  "id": "String (identifier)",
  "displayName": "String",
  "allTenantsIncluded": "Boolean",
  "tenantIds": [
    "String"
  ],
  "managementIntents": [
    {
      "@odata.type": "microsoft.graph.managedTenants.managementIntentInfo"
    }
  ],
  "managementActions": [
    {
      "@odata.type": "microsoft.graph.managedTenants.managementActionInfo"
    }
  ]
}