Compliance status of the policy report. Possible values are: unknown, notApplicable, compliant, remediated, nonCompliant, error, conflict, notAssigned.
lastReportedDateTime
DateTimeOffset
Last modified date time of the policy report.
userPrincipalName
String
UserPrincipalName.
Response
If successful, this method returns a 200 OK response code and an updated deviceConfigurationDeviceStatus object in the response body.
PATCH https://graph.microsoft.com/v1.0/deviceManagement/deviceConfigurations/{deviceConfigurationId}/deviceStatuses/{deviceConfigurationDeviceStatusId}
Content-type: application/json
Content-length: 429
{
"@odata.type": "#microsoft.graph.deviceConfigurationDeviceStatus",
"deviceDisplayName": "Device Display Name value",
"userName": "User Name value",
"deviceModel": "Device Model value",
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00",
"status": "notApplicable",
"lastReportedDateTime": "2017-01-01T00:00:17.7769392-08:00",
"userPrincipalName": "User Principal Name value"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new DeviceConfigurationDeviceStatus
{
OdataType = "#microsoft.graph.deviceConfigurationDeviceStatus",
DeviceDisplayName = "Device Display Name value",
UserName = "User Name value",
DeviceModel = "Device Model value",
ComplianceGracePeriodExpirationDateTime = DateTimeOffset.Parse("2016-12-31T23:56:44.951111-08:00"),
Status = ComplianceStatus.NotApplicable,
LastReportedDateTime = DateTimeOffset.Parse("2017-01-01T00:00:17.7769392-08:00"),
UserPrincipalName = "User Principal Name value",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceManagement.DeviceConfigurations["{deviceConfiguration-id}"].DeviceStatuses["{deviceConfigurationDeviceStatus-id}"].PatchAsync(requestBody);
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc device-management device-configurations device-statuses patch --device-configuration-id {deviceConfiguration-id} --device-configuration-device-status-id {deviceConfigurationDeviceStatus-id} --body '{\
"@odata.type": "#microsoft.graph.deviceConfigurationDeviceStatus",\
"deviceDisplayName": "Device Display Name value",\
"userName": "User Name value",\
"deviceModel": "Device Model value",\
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00",\
"status": "notApplicable",\
"lastReportedDateTime": "2017-01-01T00:00:17.7769392-08:00",\
"userPrincipalName": "User Principal Name value"\
}\
'
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new DeviceConfigurationDeviceStatus();
$requestBody->setOdataType('#microsoft.graph.deviceConfigurationDeviceStatus');
$requestBody->setDeviceDisplayName('Device Display Name value');
$requestBody->setUserName('User Name value');
$requestBody->setDeviceModel('Device Model value');
$requestBody->setComplianceGracePeriodExpirationDateTime(new \DateTime('2016-12-31T23:56:44.951111-08:00'));
$requestBody->setStatus(new ComplianceStatus('notApplicable'));
$requestBody->setLastReportedDateTime(new \DateTime('2017-01-01T00:00:17.7769392-08:00'));
$requestBody->setUserPrincipalName('User Principal Name value');
$result = $graphServiceClient->deviceManagement()->deviceConfigurations()->byDeviceConfigurationId('deviceConfiguration-id')->deviceStatuses()->byDeviceConfigurationDeviceStatusId('deviceConfigurationDeviceStatus-id')->patch($requestBody)->wait();
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(credentials, scopes)
request_body = DeviceConfigurationDeviceStatus(
odata_type = "#microsoft.graph.deviceConfigurationDeviceStatus",
device_display_name = "Device Display Name value",
user_name = "User Name value",
device_model = "Device Model value",
compliance_grace_period_expiration_date_time = "2016-12-31T23:56:44.951111-08:00",
status = ComplianceStatus.NotApplicable,
last_reported_date_time = "2017-01-01T00:00:17.7769392-08:00",
user_principal_name = "User Principal Name value",
)
result = await graph_client.device_management.device_configurations.by_device_configuration_id('deviceConfiguration-id').device_statuses.by_device_configuration_device_status_id('deviceConfigurationDeviceStatus-id').patch(request_body)
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: 478
{
"@odata.type": "#microsoft.graph.deviceConfigurationDeviceStatus",
"id": "674e98e5-98e5-674e-e598-4e67e5984e67",
"deviceDisplayName": "Device Display Name value",
"userName": "User Name value",
"deviceModel": "Device Model value",
"complianceGracePeriodExpirationDateTime": "2016-12-31T23:56:44.951111-08:00",
"status": "notApplicable",
"lastReportedDateTime": "2017-01-01T00:00:17.7769392-08:00",
"userPrincipalName": "User Principal Name value"
}