Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 582 Bytes

File metadata and controls

17 lines (11 loc) · 582 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.Zone zone = new com.microsoft.graph.beta.models.security.Zone();
zone.setDisplayName("Updated Production Zone");
zone.setDescription("Updated description for production environments");
com.microsoft.graph.models.security.Zone result = graphClient.security().zones().byZoneId("{zone-id}").patch(zone);