duration = $duration; } /** * @return string */ public function getDuration() { return $this->duration; } /** * Time within the maintenance window to start the maintenance operations. * Time format should be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) * format "HH:MM", where HH : [00-23] and MM : [00-59] GMT. * * @param string $startTime */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DailyMaintenanceWindow::class, 'Google_Service_Container_DailyMaintenanceWindow');