POST https://graph.microsoft.com/beta/admin/windows/updates/updatableAssets
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.windowsUpdates.updatableAssetGroup"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.WindowsUpdates;
var requestBody = new UpdatableAssetGroup
{
OdataType = "#microsoft.graph.windowsUpdates.updatableAssetGroup",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Admin.Windows.Updates.UpdatableAssets.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodelswindowsupdates "github.com/microsoftgraph/msgraph-beta-sdk-go/models/windowsupdates"
//other-imports
)
requestBody := graphmodelswindowsupdates.NewUpdatableAsset()
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
updatableAssets, err := graphClient.Admin().Windows().Updates().UpdatableAssets().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.models.windowsupdates.UpdatableAssetGroup updatableAsset = new com.microsoft.graph.beta.models.windowsupdates.UpdatableAssetGroup();
updatableAsset.setOdataType("#microsoft.graph.windowsUpdates.updatableAssetGroup");
com.microsoft.graph.models.windowsupdates.UpdatableAsset result = graphClient.admin().windows().updates().updatableAssets().post(updatableAsset);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\WindowsUpdates\UpdatableAssetGroup;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new UpdatableAssetGroup();
$requestBody->setOdataType('#microsoft.graph.windowsUpdates.updatableAssetGroup');
$result = $graphServiceClient->admin()->windows()->updates()->updatableAssets()->post($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.windows_updates.updatable_asset_group import UpdatableAssetGroup
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = UpdatableAssetGroup(
odata_type = "#microsoft.graph.windowsUpdates.updatableAssetGroup",
)
result = await graph_client.admin.windows.updates.updatable_assets.post(request_body)