// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new WindowsInformationProtectionNetworkLearningSummary
{
OdataType = "#microsoft.graph.windowsInformationProtectionNetworkLearningSummary",
Url = "Url value",
DeviceCount = 11,
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.DeviceManagement.WindowsInformationProtectionNetworkLearningSummaries["{windowsInformationProtectionNetworkLearningSummary-id}"].PatchAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewWindowsInformationProtectionNetworkLearningSummary()
url := "Url value"
requestBody.SetUrl(&url)
deviceCount := int32(11)
requestBody.SetDeviceCount(&deviceCount)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
windowsInformationProtectionNetworkLearningSummaries, err := graphClient.DeviceManagement().WindowsInformationProtectionNetworkLearningSummaries().ByWindowsInformationProtectionNetworkLearningSummaryId("windowsInformationProtectionNetworkLearningSummary-id").Patch(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummary = new WindowsInformationProtectionNetworkLearningSummary();
windowsInformationProtectionNetworkLearningSummary.setOdataType("#microsoft.graph.windowsInformationProtectionNetworkLearningSummary");
windowsInformationProtectionNetworkLearningSummary.setUrl("Url value");
windowsInformationProtectionNetworkLearningSummary.setDeviceCount(11);
WindowsInformationProtectionNetworkLearningSummary result = graphClient.deviceManagement().windowsInformationProtectionNetworkLearningSummaries().byWindowsInformationProtectionNetworkLearningSummaryId("{windowsInformationProtectionNetworkLearningSummary-id}").patch(windowsInformationProtectionNetworkLearningSummary);
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.windows_information_protection_network_learning_summary import WindowsInformationProtectionNetworkLearningSummary
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = WindowsInformationProtectionNetworkLearningSummary(
odata_type = "#microsoft.graph.windowsInformationProtectionNetworkLearningSummary",
url = "Url value",
device_count = 11,
)
result = await graph_client.device_management.windows_information_protection_network_learning_summaries.by_windows_information_protection_network_learning_summary_id('windowsInformationProtectionNetworkLearningSummary-id').patch(request_body)