mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
Closes: #19271 Closes: #19286 Changes: - Updated the example in the schema folder readme - Updated the block scalar used in Fleet's osquery override documentation (`>-` » `|-`) and removed extra newlines - Updated the block scalar used in URLs used to create new yaml override files - Regenerated osqeury_fleet_schema.json
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: disk_info
|
|
platforms:
|
|
- windows
|
|
- chrome
|
|
description: Retrieve basic information about the physical disks of a system.
|
|
examples: |-
|
|
```
|
|
SELECT * FROM disk_info;
|
|
```
|
|
columns:
|
|
- name: disk_size
|
|
type: bigint
|
|
description: Size of the disk.
|
|
required: false
|
|
- name: id
|
|
type: text
|
|
description: The unique identifier of the drive on the system.
|
|
required: false
|
|
- name: name
|
|
type: text
|
|
description: The label of the disk object.
|
|
required: false
|
|
- name: type
|
|
type: text
|
|
description: The interface type of the disk.
|
|
required: false
|
|
- name: partitions
|
|
platforms:
|
|
- windows
|
|
- name: disk_index
|
|
platforms:
|
|
- windows
|
|
- name: pnp_device_id
|
|
platforms:
|
|
- windows
|
|
- name: manufacturer
|
|
platforms:
|
|
- windows
|
|
- name: hardware_model
|
|
platforms:
|
|
- windows
|
|
- name: serial
|
|
platforms:
|
|
- windows
|
|
- name: description
|
|
platforms:
|
|
- windows
|
|
evented: false
|
|
notes: |-
|
|
- On ChromeOS, this table requires the [fleetd Chrome extension](https://fleetdm.com/docs/using-fleet/chromeos).
|
|
|
|
- Available for ChromeOS 91+.
|