mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
daf7777b54
`disk_encryption` table on Darwin, respectively.
14 lines
648 B
Plaintext
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")
|