osquery-1/specs/posix/block_devices.table
artemdinaburg d4a3fe2452 Windows Daemon/Shell: Initial support for Windows tables (#2182)
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
2016-06-23 16:04:11 -07: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")