Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions docs/Contributing/reference/audit-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -3050,6 +3050,40 @@ This activity contains the following fields:
}
```

## enabled_escrow_disk_encryption_key_only

Generated when a user turns on escrow only for a fleet (or unassigned hosts).

This activity contains the following fields:
- "fleet_id": The ID of the fleet that escrow only applies to, `null` if it applies to hosts that are not in a fleet ("Unassigned").
- "fleet_name": The name of the fleet that escrow applies to, `null` if it applies to devices that are not in a fleet ("Unassigned").

#### Example

```json
{
"fleet_id": 123,
"fleet_name": "Workstations"
}
```

## disabled_escrow_disk_encryption_key_only

Generated when a user turns off escrow only for a fleet (or unassigned hosts).

This activity contains the following fields:
- "fleet_id": The ID of the fleet that escrow only applies to, `null` if it applies to hosts that are not in a fleet ("Unassigned").
- "fleet_name": The name of the fleet that escrow applies to, `null` if it applies to devices that are not in a fleet ("Unassigned").

#### Example

```json
{
"fleet_id": 123,
"fleet_name": "Workstations"
}
```


<meta name="title" value="Audit logs">
<meta name="pageOrderInSection" value="1400">
Expand Down
Loading