clusterId = $clusterId; } /** * @return string */ public function getClusterId() { return $this->clusterId; } /** * Required. The maintenance policy to be set for the cluster. An empty field * clears the existing maintenance policy. * * @param MaintenancePolicy $maintenancePolicy */ public function setMaintenancePolicy(MaintenancePolicy $maintenancePolicy) { $this->maintenancePolicy = $maintenancePolicy; } /** * @return MaintenancePolicy */ public function getMaintenancePolicy() { return $this->maintenancePolicy; } /** * The name (project, location, cluster name) of the cluster to set * maintenance policy. Specified in the format `projects/locations/clusters`. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Required. The Google Developers Console [project ID or project * number](https://cloud.google.com/resource-manager/docs/creating-managing- * projects). * * @param string $projectId */ public function setProjectId($projectId) { $this->projectId = $projectId; } /** * @return string */ public function getProjectId() { return $this->projectId; } /** * Required. The name of the Google Compute Engine * [zone](https://cloud.google.com/compute/docs/zones#available) in which the * cluster resides. * * @param string $zone */ public function setZone($zone) { $this->zone = $zone; } /** * @return string */ public function getZone() { return $this->zone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SetMaintenancePolicyRequest::class, 'Google_Service_Container_SetMaintenancePolicyRequest');