This commit is contained in:
dayterr
2026-02-20 17:08:59 +03:00
parent e1f0d354af
commit b834e5d074
20 changed files with 280 additions and 22 deletions

View File

@@ -14,6 +14,9 @@ type ItemDisk struct {
// BLK Discard
BLKDiscard bool `json:"blkdiscard"`
// Block size of disk
BlockSize string `json:"block_size"`
// Computes
Computes map[string]string `json:"computes"`
@@ -163,6 +166,9 @@ type ItemDiskUnattached struct {
// BLK Discard
BLKDiscard bool `json:"blkdiscard"`
// Block size of disk
BlockSize string `json:"block_size"`
// Boot Partition
BootPartition uint64 `json:"bootPartition"`
@@ -387,6 +393,9 @@ type RecordDisk struct {
// BLK Discard
BLKDiscard bool `json:"blkdiscard"`
// Block size of disk
BlockSize string `json:"block_size"`
// Computes
Computes map[string]string `json:"computes"`