Update detectionRule
名前空間: microsoft.graph.security
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
カスタム検出ルールのプロパティを更新します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
アクセス許可の種類 | 最小特権アクセス許可 | より高い特権のアクセス許可 |
---|---|---|
委任 (職場または学校のアカウント) | CustomDetection.ReadWrite.All | 注意事項なし。 |
委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
アプリケーション | CustomDetection.ReadWrite.All | 注意事項なし。 |
HTTP 要求
PATCH /security/rules/detectionRules/{ruleId}
要求ヘッダー
名前 | 説明 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
Content-Type | application/json. 必須です。 |
要求本文
更新する microsoft.graph.security.detectionRule のプロパティと、それらのプロパティのみを指定します。 更新できるプロパティを次の表に示します。
プロパティ | 種類 | 説明 |
---|---|---|
displayName | String | 省略可能。 |
isEnabled | ブール値 | 省略可能。 |
detectionAction/alertTemplate/title | String | 省略可能。 |
detectionAction/alertTemplate/category | String | 省略可能。 |
detectionAction/alertTemplate/description | String | 省略可能。 |
detectionAction/alertTemplate/recommendedActions | String | 省略可能。 'null' を指定して既存の応答アクションを削除する |
detectionAction/alertTemplate/severity | microsoft.graph.alertSeverity | 省略可能。 |
detectionAction/alertTemplate/impactedAssets | microsoft.graph.security.impactedAsset | 省略可能。 既存の影響を受ける資産を削除するには、'null' を指定します。 |
detectionAction/responseActions | microsoft.graph.security.responseAction | 省略可能。 |
detectionAction/organizationalScope | microsoft.graph.security.organizationalScope | 省略可能。 |
queryCondition/queryText | String | 省略可能。 |
schedule/period | String | 省略可能。 |
応答
成功した場合、このメソッドは 200 OK
応答コードと、応答本文で更新 された microsoft.graph.security.detectionRule オブジェクトを返します。
例
要求
次の例は要求を示しています。
PATCH https://graph.microsoft.com/beta/security/rules/detectionRules/35079
Content-Type: application/json
{
"schedule": {
"period": "24H"
},
"detectionAction": {
"alertTemplate": {
"title": "Different alert title"
}
}
}
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.security.detectionRule",
"id": "35079",
"displayName": "Some rule name",
"isEnabled": true,
"createdBy": "MichaelMekler@winatptestlic06.ccsctp.net",
"createdDateTime": "2023-06-25T09:37:28.6149005Z",
"lastModifiedDateTime": "2023-06-25T09:38:09.5960938Z",
"lastModifiedBy": "MichaelMekler@winatptestlic06.ccsctp.net",
"detectorId": "67aa92a1-b04b-4f2a-a223-236968a3da96",
"queryCondition": {
"queryText": "DeviceProcessEvents | take 1",
"lastModifiedDateTime": null
},
"schedule": {
"period": "24H",
"nextRunDateTime": "2023-06-25T09:37:28.6149005Z"
},
"lastRunDetails": {
"lastRunDateTime": null,
"status": null,
"failureReason": null,
"errorCode": null
},
"detectionAction": {
"alertTemplate": {
"title": "Different alert title",
"description": "Some alert description",
"severity": "medium",
"category": "Execution",
"recommendedActions": null,
"mitreTechniques": [],
"impactedAssets": [
{
"@odata.type": "#microsoft.graph.security.impactedDeviceAsset",
"identifier": "deviceId"
}
]
},
"organizationalScope": null,
"responseActions": [
{
"@odata.type": "#microsoft.graph.security.isolateDeviceResponseAction",
"isolationType": "full",
"identifier": "deviceId"
}
]
}
}