managementAction 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 baseline management action for a given managed tenant. Examples of management actions are device encryption, perform configurations to allow Microsoft Entra device enrollment, and require multi-factor authentication for admins.

Methods

Method Return type Description
List managementActions microsoft.graph.managedTenants.managementAction collection Get a list of the managementAction objects and their properties.
Get managementAction microsoft.graph.managedTenants.managementAction Read the properties and relationships of a managementAction object.
apply microsoft.graph.managedTenants.managementActionDeploymentStatus Applies the management actions against the managed tenant.

Properties

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

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

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