Properties
| Name | Type | Description |
|---|---|---|
| active_threats | number | The Number of active threats. |
| connection_id | string | Posture Integration ID. |
| infected | boolean | Whether device is infected. |
| is_active | boolean | Whether device is active. |
| network_status | string | Network status of device. |
| operator | string | operator |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_sentinelone_s2s_input_request",
"title": "SentinelOne S2S Input",
"properties": {
"active_threats": {
"description": "The Number of active threats.",
"example": 1,
"type": "number"
},
"connection_id": {
"description": "Posture Integration ID.",
"example": "bc7cbfbb-600a-42e4-8a23-45b5e85f804f",
"type": "string"
},
"infected": {
"description": "Whether device is infected.",
"example": true,
"type": "boolean"
},
"is_active": {
"description": "Whether device is active.",
"example": true,
"type": "boolean"
},
"network_status": {
"description": "Network status of device.",
"enum": [
"connected",
"disconnected",
"disconnecting",
"connecting"
],
"example": "connected",
"type": "string"
},
"operator": {
"description": "operator",
"enum": [
"<",
"<=",
">",
">=",
"=="
],
"example": ">",
"type": "string"
}
},
"required": [
"connection_id"
],
"type": "object"
}