defaultMode = $defaultMode; } /** * @return int */ public function getDefaultMode() { return $this->defaultMode; } /** * @param KeyToPath[] */ public function setItems($items) { $this->items = $items; } /** * @return KeyToPath[] */ public function getItems() { return $this->items; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setOptional($optional) { $this->optional = $optional; } /** * @return bool */ public function getOptional() { return $this->optional; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConfigMapVolumeSource::class, 'Google_Service_CloudRun_ConfigMapVolumeSource');