Créer windowsDefenderApplicationControlSupplementalPolicyAssignment
Espace de noms: microsoft.graph
Remarque : l’API Microsoft Graph pour Intune requiert une licence Intune active pour le client.
Créez un objet windowsDefenderApplicationControlSupplementalPolicyAssignment .
Autorisations
L’une des autorisations suivantes est nécessaire pour appeler cette API. Pour plus d’informations, notamment sur la façon de choisir les autorisations, voir Autorisations.
Type d’autorisation | Autorisations (de celle qui offre le plus de privilèges à celle qui en offre le moins) |
---|---|
Déléguée (compte professionnel ou scolaire) | DeviceManagementApps.ReadWrite.All |
Déléguée (compte Microsoft personnel) | Non prise en charge. |
Application | DeviceManagementApps.ReadWrite.All |
Requête HTTP
POST /deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicyId}/assignments
En-têtes de demande
En-tête | Valeur |
---|---|
Autorisation | Porteur {token}. Obligatoire. En savoir plus sur l’authentification et l’autorisation. |
Accepter | application/json |
Corps de la demande
Dans le corps de la demande, fournissez une représentation JSON pour l’objet windowsDefenderApplicationControlSupplementalPolicyAssignment.
Le tableau suivant indique les propriétés requises lorsque vous créez le windowsDefenderApplicationControlSupplementalPolicyAssignment.
Propriété | Type | Description |
---|---|---|
id | String | Clé de l’entité. |
target | deviceAndAppManagementAssignmentTarget | Attribution de groupe cible définie par l’administrateur. |
Réponse
Si elle réussit, cette méthode renvoie un 201 Created
code de réponse et un objet windowsDefenderApplicationControlSupplementalPolicyAssignment dans le corps de la réponse.
Exemple
Demande
Voici un exemple de demande.
POST https://graph.microsoft.com/v1.0/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicyId}/assignments
Content-type: application/json
Content-length: 201
{
"@odata.type": "#microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment",
"target": {
"@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget"
}
}
Réponse
Voici un exemple de réponse. Remarque : l’objet de réponse illustré ici peut être tronqué à des fins de concision. Toutes les propriétés sont renvoyées à partir d’un appel réel.
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 250
{
"@odata.type": "#microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment",
"id": "5e299ff3-9ff3-5e29-f39f-295ef39f295e",
"target": {
"@odata.type": "microsoft.graph.deviceAndAppManagementAssignmentTarget"
}
}