mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
Closes: #18240 Changes: - Updated the schema override files to use only one YAML block scalar (`>-`) - Updated the template yaml included in the link to create a new override file in get-extended-osquery-schema helper to use the `>-` block scalar - regenerated osquery_fleet_schema.json
54 lines
1.1 KiB
YAML
54 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+.
|