managementActionTenantDeploymentStatus 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 tenant level deployment status for the management action.

Methods

Method Return type Description
List managementActionTenantDeploymentStatus microsoft.graph.managedTenants.managementActionTenantDeploymentStatus collection Get a list of the managementActionTenantDeploymentStatus objects and their properties.
Get managementActionTenantDeploymentStatus microsoft.graph.managedTenants.managementActionTenantDeploymentStatus Read the properties and relationships of a managementActionTenantDeploymentStatus object.
changeDeploymentStatus microsoft.graph.managedTenants.managementActionDeploymentStatus Changes the deployment status for the management action.

Properties

Property Type Description
id String The unique identifier for the tenant level deployment status. Required. Read-only.
statuses microsoft.graph.managedTenants.managementActionDeploymentStatus collection The collection of deployment status for each instance of a management action. Optional.
tenantGroupId String The identifier for the tenant group that is associated with the management action. Required. Read-only.
tenantId String The Microsoft Entra tenant identifier for the managed tenant. Required. Read-only.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.managedTenants.managementActionTenantDeploymentStatus",
  "id": "String (identifier)",
  "tenantGroupId": "String",
  "tenantId": "String",
  "statuses": [
    {
      "@odata.type": "microsoft.graph.managedTenants.managementActionDeploymentStatus"
    }
  ]
}