cluster = $cluster; } /** * @return Cluster */ public function getCluster() { return $this->cluster; } /** * The parent (project and location) where the cluster will be created. * Specified in the format `projects/locations`. * * @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(CreateClusterRequest::class, 'Google_Service_Container_CreateClusterRequest');