osquery-1/specs/block_devices.table
Sharvil Shah daf7777b54 [#1800] Adds uuid and user_uuid columns to the users table and
`disk_encryption` table on Darwin, respectively.
2016-02-10 13:12:43 -08:00

14 lines
648 B
Plaintext

table_name("block_devices")
description("Block (buffered access) device file nodes: disks, ramdisks, and DMG containers.")
schema([
Column("name", TEXT, "Block device name"),
Column("parent", TEXT, "Block device parent name"),
Column("vendor", TEXT, "Block device vendor string"),
Column("model", TEXT, "Block device model string identifier"),
Column("size", BIGINT, "Block device size in bytes"),
Column("uuid", TEXT, "Block device Universally Unique Identifier"),
Column("type", TEXT, "Block device type string"),
Column("label", TEXT, "Block device label string"),
])
implementation("block_devices@genBlockDevs")