> */ public array $nodes = [['node' => 'pve']]; /** @var array */ public array $status = [ 'cpuinfo' => ['cpus' => 16], 'memory' => ['total' => 68719476736], // 64 GiB 'pveversion' => 'pve-manager/8.2.2', ]; /** @var array> */ public array $storage = [ ['storage' => 'local', 'type' => 'dir', 'content' => 'iso,vztmpl,backup', 'total' => 1099511627776], ['storage' => 'local-lvm', 'type' => 'lvmthin', 'content' => 'images,rootdir', 'total' => 1099511627776], // 1 TiB ]; public function forHost(Host $host): static { $this->host = $host; return $this; } public function listNodes(): array { return $this->nodes; } public function nodeStatus(string $node): array { return $this->status; } public function nodeStorage(string $node): array { return $this->storage; } }