Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 621 Bytes

File metadata and controls

16 lines (10 loc) · 621 Bytes
description Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 6.x

GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);

com.microsoft.graph.beta.models.security.HealthIssue healthIssue = new com.microsoft.graph.beta.models.security.HealthIssue();
healthIssue.setStatus(com.microsoft.graph.beta.models.security.HealthIssueStatus.Closed);
com.microsoft.graph.models.security.HealthIssue result = graphClient.security().identities().healthIssues().byHealthIssueId("{healthIssue-id}").patch(healthIssue);