managementIntent resource type

Namespace: microsoft.graph.managedTenants

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 metadata for a baseline and what management templates are included.

Methods

Method Return type Description
List managementIntents microsoft.graph.managedTenants.managementIntent collection Get a list of the managementIntent objects and their properties.
Get managementIntent microsoft.graph.managedTenants.managementIntent Read the properties and relationships of a managementIntent object.

Properties

Property Type Description
displayName String The display name for the management intent. Optional. Read-only.
id String The unique identifier for the management intent. Required. Read-only.
isGlobal Boolean A flag indicating whether the management intent is global. Required. Read-only.
managementTemplates microsoft.graph.managedTenants.managementTemplateDetailedInfo collection The collection of management templates associated with the management intent. Optional. Read-only.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.managedTenants.managementIntent",
  "id": "String (identifier)",
  "displayName": "String",
  "isGlobal": "Boolean",
  "managementTemplates": [
    {
      "@odata.type": "microsoft.graph.managedTenants.managementTemplateDetailedInfo"
    }
  ]
}