Espace de noms : microsoft.graph.networkaccess
Importante
Les API sous la version /beta dans Microsoft Graph sont susceptibles d’être modifiées. L’utilisation de ces API dans des applications de production n’est pas prise en charge. Pour déterminer si une API est disponible dans v1.0, utilisez le sélecteur Version .
Mettez à jour les propriétés d’un objet threatIntelligencePolicy .
Cette API est disponible dans les déploiements de cloud national suivants.
| Service global |
Gouvernement des États-Unis L4 |
Us Government L5 (DOD) |
Chine gérée par 21Vianet |
| ✅ |
❌ |
❌ |
❌ |
Autorisations
Choisissez l’autorisation ou les autorisations marquées comme moins privilégiées pour cette API. Utilisez une autorisation ou des autorisations privilégiées plus élevées uniquement si votre application en a besoin. Pour plus d’informations sur les autorisations déléguées et d’application, consultez Types d’autorisations. Pour en savoir plus sur ces autorisations, consultez les informations de référence sur les autorisations.
| Type d’autorisation |
Autorisations avec privilèges minimum |
Autorisations privilégiées plus élevées |
| Déléguée (compte professionnel ou scolaire) |
NetworkAccess.ReadWrite.All |
Non disponible. |
| Déléguée (compte Microsoft personnel) |
Non prise en charge. |
Non prise en charge. |
| Application |
NetworkAccess.ReadWrite.All |
Non disponible. |
Importante
Dans les scénarios délégués avec des comptes professionnels ou scolaires, l’utilisateur connecté doit se voir attribuer un rôle Microsoft Entra pris en charge ou un rôle personnalisé avec une autorisation de rôle prise en charge. Les rôles les moins privilégiés suivants sont pris en charge pour cette opération.
- Administrateur général de l’accès sécurisé
- Administrateur de sécurité
Requête HTTP
PATCH /networkAccess/threatIntelligencePolicies/{threatIntelligencePolicyId}
Corps de la demande
Dans le corps de la demande, fournissez uniquement les valeurs des propriétés à mettre à jour. Les propriétés existantes qui ne sont pas incluses dans le corps de la demande conservent leurs valeurs précédentes ou sont recalculées en fonction des modifications apportées à d’autres valeurs de propriété.
Le tableau suivant spécifie les propriétés qui peuvent être mises à jour.
Réponse
Si elle réussit, cette méthode renvoie un code de réponse 204 No Content.
Exemples
Demande
L’exemple suivant illustre une demande.
PATCH https://graph.microsoft.com/beta/networkAccess/threatIntelligencePolicies/{threatIntelligencePolicyId}
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.networkaccess.threatIntelligencePolicy",
"id": "a8352c78-90c6-4edd-aaca-9dc4292e7750",
"name": "Threat Intel Policy",
"description": "",
"version": "1.0.0",
"lastModifiedDateTime": "2025-06-18T17:34:25.8207682Z",
"settings": {
"defaultAction": "allow"
}
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.Networkaccess;
var requestBody = new ThreatIntelligencePolicy
{
OdataType = "#microsoft.graph.networkaccess.threatIntelligencePolicy",
Id = "a8352c78-90c6-4edd-aaca-9dc4292e7750",
Name = "Threat Intel Policy",
Description = "",
Version = "1.0.0",
LastModifiedDateTime = DateTimeOffset.Parse("2025-06-18T17:34:25.8207682Z"),
Settings = new ThreatIntelligencePolicySettings
{
DefaultAction = ThreatIntelligenceAction.Allow,
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.NetworkAccess.ThreatIntelligencePolicies["{threatIntelligencePolicy-id}"].PatchAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
"time"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodelsnetworkaccess "github.com/microsoftgraph/msgraph-beta-sdk-go/models/networkaccess"
//other-imports
)
requestBody := graphmodelsnetworkaccess.NewThreatIntelligencePolicy()
id := "a8352c78-90c6-4edd-aaca-9dc4292e7750"
requestBody.SetId(&id)
name := "Threat Intel Policy"
requestBody.SetName(&name)
description := ""
requestBody.SetDescription(&description)
version := "1.0.0"
requestBody.SetVersion(&version)
lastModifiedDateTime , err := time.Parse(time.RFC3339, "2025-06-18T17:34:25.8207682Z")
requestBody.SetLastModifiedDateTime(&lastModifiedDateTime)
settings := graphmodelsnetworkaccess.NewThreatIntelligencePolicySettings()
defaultAction := graphmodels.ALLOW_THREATINTELLIGENCEACTION
settings.SetDefaultAction(&defaultAction)
requestBody.SetSettings(settings)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
threatIntelligencePolicies, err := graphClient.NetworkAccess().ThreatIntelligencePolicies().ByThreatIntelligencePolicyId("threatIntelligencePolicy-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);
com.microsoft.graph.beta.models.networkaccess.ThreatIntelligencePolicy threatIntelligencePolicy = new com.microsoft.graph.beta.models.networkaccess.ThreatIntelligencePolicy();
threatIntelligencePolicy.setOdataType("#microsoft.graph.networkaccess.threatIntelligencePolicy");
threatIntelligencePolicy.setId("a8352c78-90c6-4edd-aaca-9dc4292e7750");
threatIntelligencePolicy.setName("Threat Intel Policy");
threatIntelligencePolicy.setDescription("");
threatIntelligencePolicy.setVersion("1.0.0");
OffsetDateTime lastModifiedDateTime = OffsetDateTime.parse("2025-06-18T17:34:25.8207682Z");
threatIntelligencePolicy.setLastModifiedDateTime(lastModifiedDateTime);
com.microsoft.graph.beta.models.networkaccess.ThreatIntelligencePolicySettings settings = new com.microsoft.graph.beta.models.networkaccess.ThreatIntelligencePolicySettings();
settings.setDefaultAction(com.microsoft.graph.beta.models.networkaccess.ThreatIntelligenceAction.Allow);
threatIntelligencePolicy.setSettings(settings);
com.microsoft.graph.models.networkaccess.ThreatIntelligencePolicy result = graphClient.networkAccess().threatIntelligencePolicies().byThreatIntelligencePolicyId("{threatIntelligencePolicy-id}").patch(threatIntelligencePolicy);
const options = {
authProvider,
};
const client = Client.init(options);
const threatIntelligencePolicy = {
'@odata.type': '#microsoft.graph.networkaccess.threatIntelligencePolicy',
id: 'a8352c78-90c6-4edd-aaca-9dc4292e7750',
name: 'Threat Intel Policy',
description: '',
version: '1.0.0',
lastModifiedDateTime: '2025-06-18T17:34:25.8207682Z',
settings: {
defaultAction: 'allow'
}
};
await client.api('/networkAccess/threatIntelligencePolicies/{threatIntelligencePolicyId}')
.version('beta')
.update(threatIntelligencePolicy);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\Networkaccess\ThreatIntelligencePolicy;
use Microsoft\Graph\Beta\Generated\Models\Networkaccess\ThreatIntelligencePolicySettings;
use Microsoft\Graph\Beta\Generated\Models\Networkaccess\ThreatIntelligenceAction;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new ThreatIntelligencePolicy();
$requestBody->setOdataType('#microsoft.graph.networkaccess.threatIntelligencePolicy');
$requestBody->setId('a8352c78-90c6-4edd-aaca-9dc4292e7750');
$requestBody->setName('Threat Intel Policy');
$requestBody->setDescription('');
$requestBody->setVersion('1.0.0');
$requestBody->setLastModifiedDateTime(new \DateTime('2025-06-18T17:34:25.8207682Z'));
$settings = new ThreatIntelligencePolicySettings();
$settings->setDefaultAction(new ThreatIntelligenceAction('allow'));
$requestBody->setSettings($settings);
$result = $graphServiceClient->networkAccess()->threatIntelligencePolicies()->byThreatIntelligencePolicyId('threatIntelligencePolicy-id')->patch($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.NetworkAccess
$params = @{
"@odata.type" = "#microsoft.graph.networkaccess.threatIntelligencePolicy"
id = "a8352c78-90c6-4edd-aaca-9dc4292e7750"
name = "Threat Intel Policy"
description = ""
version = "1.0.0"
lastModifiedDateTime = [System.DateTime]::Parse("2025-06-18T17:34:25.8207682Z")
settings = @{
defaultAction = "allow"
}
}
Update-MgBetaNetworkAccessThreatIntelligencePolicy -ThreatIntelligencePolicyId $threatIntelligencePolicyId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.networkaccess.threat_intelligence_policy import ThreatIntelligencePolicy
from msgraph_beta.generated.models.networkaccess.threat_intelligence_policy_settings import ThreatIntelligencePolicySettings
from msgraph_beta.generated.models.threat_intelligence_action import ThreatIntelligenceAction
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = ThreatIntelligencePolicy(
odata_type = "#microsoft.graph.networkaccess.threatIntelligencePolicy",
id = "a8352c78-90c6-4edd-aaca-9dc4292e7750",
name = "Threat Intel Policy",
description = "",
version = "1.0.0",
last_modified_date_time = "2025-06-18T17:34:25.8207682Z",
settings = ThreatIntelligencePolicySettings(
default_action = ThreatIntelligenceAction.Allow,
),
)
result = await graph_client.network_access.threat_intelligence_policies.by_threat_intelligence_policy_id('threatIntelligencePolicy-id').patch(request_body)
Réponse
L’exemple suivant illustre la réponse.
HTTP/1.1 204 No Content