managementTemplate 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 a group of actions and setting that can be performed against a managed tenant.

Methods

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

Properties

Property Type Description
category managementCategory The management category for the management template. Possible values are: custom, devices, identity, unknownFutureValue. Required. Read-only.
description String The description for the management template. Optional. Read-only.
displayName String The display name for the management template. Required. Read-only.
id String The unique identifier for the management template. Required. Read-only.
parameters microsoft.graph.managedTenants.templateParameter collection The collection of parameters used by the management template. Optional. Read-only.
workloadActions microsoft.graph.managedTenants.workloadAction collection The collection of workload actions associated with the management template. Optional. Read-only.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.managedTenants.managementTemplate",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "category": "String",
  "parameters": [
    {
      "@odata.type": "microsoft.graph.managedTenants.templateParameter"
    }
  ],
  "workloadActions": [
    {
      "@odata.type": "microsoft.graph.managedTenants.workloadAction"
    }
  ]
}