Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Update the properties of a deviceComplianceDeviceOverview object.
This API is available in the following national cloud deployments.
Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
✅ |
✅ |
✅ |
✅ |
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type |
Permissions (from least to most privileged) |
Delegated (work or school account) |
DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) |
Not supported. |
Application |
DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
PATCH /deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicyId}/deviceStatusOverview
Request body
In the request body, supply a JSON representation for the deviceComplianceDeviceOverview object.
The following table shows the properties that are required when you create the deviceComplianceDeviceOverview.
Property |
Type |
Description |
id |
String |
Key of the entity. |
pendingCount |
Int32 |
Number of pending devices |
notApplicableCount |
Int32 |
Number of not applicable devices |
successCount |
Int32 |
Number of succeeded devices |
errorCount |
Int32 |
Number of error devices |
failedCount |
Int32 |
Number of failed devices |
lastUpdateDateTime |
DateTimeOffset |
Last update time |
configurationVersion |
Int32 |
Version of the policy for that overview |
Response
If successful, this method returns a 200 OK
response code and an updated deviceComplianceDeviceOverview object in the response body.
Example
Request
Here is an example of the request.
PATCH https://graph.microsoft.com/v1.0/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicyId}/deviceStatusOverview
Content-type: application/json
Content-length: 281
{
"@odata.type": "#microsoft.graph.deviceComplianceDeviceOverview",
"pendingCount": 12,
"notApplicableCount": 2,
"successCount": 12,
"errorCount": 10,
"failedCount": 11,
"lastUpdateDateTime": "2016-12-31T23:58:21.6459442-08:00",
"configurationVersion": 4
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new DeviceComplianceDeviceOverview
{
OdataType = "#microsoft.graph.deviceComplianceDeviceOverview",
PendingCount = 12,
NotApplicableCount = 2,
SuccessCount = 12,
ErrorCount = 10,
FailedCount = 11,
LastUpdateDateTime = DateTimeOffset.Parse("2016-12-31T23:58:21.6459442-08:00"),
ConfigurationVersion = 4,
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceManagement.DeviceCompliancePolicies["{deviceCompliancePolicy-id}"].DeviceStatusOverview.PatchAsync(requestBody);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
mgc device-management device-compliance-policies device-status-overview patch --device-compliance-policy-id {deviceCompliancePolicy-id} --body '{\
"@odata.type": "#microsoft.graph.deviceComplianceDeviceOverview",\
"pendingCount": 12,\
"notApplicableCount": 2,\
"successCount": 12,\
"errorCount": 10,\
"failedCount": 11,\
"lastUpdateDateTime": "2016-12-31T23:58:21.6459442-08:00",\
"configurationVersion": 4\
}\
'
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
"time"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewDeviceComplianceDeviceOverview()
pendingCount := int32(12)
requestBody.SetPendingCount(&pendingCount)
notApplicableCount := int32(2)
requestBody.SetNotApplicableCount(¬ApplicableCount)
successCount := int32(12)
requestBody.SetSuccessCount(&successCount)
errorCount := int32(10)
requestBody.SetErrorCount(&errorCount)
failedCount := int32(11)
requestBody.SetFailedCount(&failedCount)
lastUpdateDateTime , err := time.Parse(time.RFC3339, "2016-12-31T23:58:21.6459442-08:00")
requestBody.SetLastUpdateDateTime(&lastUpdateDateTime)
configurationVersion := int32(4)
requestBody.SetConfigurationVersion(&configurationVersion)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
deviceStatusOverview, err := graphClient.DeviceManagement().DeviceCompliancePolicies().ByDeviceCompliancePolicyId("deviceCompliancePolicy-id").DeviceStatusOverview().Patch(context.Background(), requestBody, nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
DeviceComplianceDeviceOverview deviceComplianceDeviceOverview = new DeviceComplianceDeviceOverview();
deviceComplianceDeviceOverview.setOdataType("#microsoft.graph.deviceComplianceDeviceOverview");
deviceComplianceDeviceOverview.setPendingCount(12);
deviceComplianceDeviceOverview.setNotApplicableCount(2);
deviceComplianceDeviceOverview.setSuccessCount(12);
deviceComplianceDeviceOverview.setErrorCount(10);
deviceComplianceDeviceOverview.setFailedCount(11);
OffsetDateTime lastUpdateDateTime = OffsetDateTime.parse("2016-12-31T23:58:21.6459442-08:00");
deviceComplianceDeviceOverview.setLastUpdateDateTime(lastUpdateDateTime);
deviceComplianceDeviceOverview.setConfigurationVersion(4);
DeviceComplianceDeviceOverview result = graphClient.deviceManagement().deviceCompliancePolicies().byDeviceCompliancePolicyId("{deviceCompliancePolicy-id}").deviceStatusOverview().patch(deviceComplianceDeviceOverview);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
const options = {
authProvider,
};
const client = Client.init(options);
const deviceComplianceDeviceOverview = {
'@odata.type': '#microsoft.graph.deviceComplianceDeviceOverview',
pendingCount: 12,
notApplicableCount: 2,
successCount: 12,
errorCount: 10,
failedCount: 11,
lastUpdateDateTime: '2016-12-31T23:58:21.6459442-08:00',
configurationVersion: 4
};
await client.api('/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicyId}/deviceStatusOverview')
.update(deviceComplianceDeviceOverview);
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Models\DeviceComplianceDeviceOverview;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new DeviceComplianceDeviceOverview();
$requestBody->setOdataType('#microsoft.graph.deviceComplianceDeviceOverview');
$requestBody->setPendingCount(12);
$requestBody->setNotApplicableCount(2);
$requestBody->setSuccessCount(12);
$requestBody->setErrorCount(10);
$requestBody->setFailedCount(11);
$requestBody->setLastUpdateDateTime(new \DateTime('2016-12-31T23:58:21.6459442-08:00'));
$requestBody->setConfigurationVersion(4);
$result = $graphServiceClient->deviceManagement()->deviceCompliancePolicies()->byDeviceCompliancePolicyId('deviceCompliancePolicy-id')->deviceStatusOverview()->patch($requestBody)->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
Import-Module Microsoft.Graph.DeviceManagement
$params = @{
"@odata.type" = "#microsoft.graph.deviceComplianceDeviceOverview"
pendingCount = 12
notApplicableCount = 2
successCount = 12
errorCount = 10
failedCount = 11
lastUpdateDateTime = [System.DateTime]::Parse("2016-12-31T23:58:21.6459442-08:00")
configurationVersion = 4
}
Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.device_compliance_device_overview import DeviceComplianceDeviceOverview
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = DeviceComplianceDeviceOverview(
odata_type = "#microsoft.graph.deviceComplianceDeviceOverview",
pending_count = 12,
not_applicable_count = 2,
success_count = 12,
error_count = 10,
failed_count = 11,
last_update_date_time = "2016-12-31T23:58:21.6459442-08:00",
configuration_version = 4,
)
result = await graph_client.device_management.device_compliance_policies.by_device_compliance_policy_id('deviceCompliancePolicy-id').device_status_overview.patch(request_body)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation.
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 330
{
"@odata.type": "#microsoft.graph.deviceComplianceDeviceOverview",
"id": "886f167b-167b-886f-7b16-6f887b166f88",
"pendingCount": 12,
"notApplicableCount": 2,
"successCount": 12,
"errorCount": 10,
"failedCount": 11,
"lastUpdateDateTime": "2016-12-31T23:58:21.6459442-08:00",
"configurationVersion": 4
}