diskNumber; } public function setDiskNumber(?int $diskNumber): static { $this->diskNumber = $diskNumber; return $this; } public function getPartitionNumber(): ?int { return $this->partitionNumber; } public function setPartitionNumber(?int $partitionNumber): static { $this->partitionNumber = $partitionNumber; return $this; } public function getPartitionCode(): ?string { return $this->partitionCode; } public function setPartitionCode(?string $partitionCode): static { $this->partitionCode = $partitionCode; return $this; } public function getSize(): ?int { return $this->size; } public function setSize(int $size): static { $this->size = $size; return $this; } public function getCacheContent(): ?string { return $this->cacheContent; } public function setCacheContent(?string $cacheContent): static { $this->cacheContent = $cacheContent; return $this; } public function getFilesystem(): ?string { return $this->filesystem; } public function setFilesystem(?string $filesystem): static { $this->filesystem = $filesystem; return $this; } public function getClient(): ?Client { return $this->client; } public function setClient(?Client $client): static { $this->client = $client; return $this; } public function getMemoryUsage(): ?int { return $this->memoryUsage; } public function setMemoryUsage(int $memoryUsage): static { $this->memoryUsage = $memoryUsage; return $this; } public function getOperativeSystem(): ?OperativeSystem { return $this->operativeSystem; } public function setOperativeSystem(?OperativeSystem $operativeSystem): static { $this->operativeSystem = $operativeSystem; return $this; } public function getImage(): ?Image { return $this->image; } public function setImage(?Image $image): static { $this->image = $image; return $this; } }