Microsoft Graph · Schema

sensorSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
description string Description of the sensor.
domainControllerDnsNames array DNS names for the domain controller
isDelayedDeploymentEnabled boolean Indicates whether to delay updates for the sensor.
networkAdapters array
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecuritysensorsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.sensorSettings",
  "title": "sensorSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the sensor."
    },
    "domainControllerDnsNames": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "DNS names for the domain controller"
    },
    "isDelayedDeploymentEnabled": {
      "type": "boolean",
      "description": "Indicates whether to delay updates for the sensor.",
      "nullable": true
    },
    "networkAdapters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.security.networkAdapter"
      },
      "x-ms-navigationProperty": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}