allocatedAssetCount = $allocatedAssetCount; } /** * @return string */ public function getAllocatedAssetCount() { return $this->allocatedAssetCount; } /** * Count of this node type to be provisioned * * @param string $nodeCount */ public function setNodeCount($nodeCount) { $this->nodeCount = $nodeCount; } /** * @return string */ public function getNodeCount() { return $this->nodeCount; } /** * VMWare node type, e.g. "ve1-standard-72" * * @param ReportSummaryVmwareNode $vmwareNode */ public function setVmwareNode(ReportSummaryVmwareNode $vmwareNode) { $this->vmwareNode = $vmwareNode; } /** * @return ReportSummaryVmwareNode */ public function getVmwareNode() { return $this->vmwareNode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReportSummaryVmwareNodeAllocation::class, 'Google_Service_MigrationCenterAPI_ReportSummaryVmwareNodeAllocation');