clusterId = $clusterId; } /** * @deprecated * @return string */ public function getClusterId() { return $this->clusterId; } /** * Required. The node pool to create. * * @param NodePool $nodePool */ public function setNodePool(NodePool $nodePool) { $this->nodePool = $nodePool; } /** * @return NodePool */ public function getNodePool() { return $this->nodePool; } /** * The parent (project, location, cluster name) where the node pool will be * created. Specified in the format `projects/locations/clusters`. * * @param string $parent */ public function setParent($parent) { $this->parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } /** * Deprecated. The Google Developers Console [project ID or project * number](https://cloud.google.com/resource-manager/docs/creating-managing- * projects). This field has been deprecated and replaced by the parent field. * * @deprecated * @param string $projectId */ public function setProjectId($projectId) { $this->projectId = $projectId; } /** * @deprecated * @return string */ public function getProjectId() { return $this->projectId; } /** * Deprecated. The name of the Google Compute Engine * [zone](https://cloud.google.com/compute/docs/zones#available) in which the * cluster resides. This field has been deprecated and replaced by the parent * field. * * @deprecated * @param string $zone */ public function setZone($zone) { $this->zone = $zone; } /** * @deprecated * @return string */ public function getZone() { return $this->zone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CreateNodePoolRequest::class, 'Google_Service_Container_CreateNodePoolRequest');