name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param SecretVolumeSource */ public function setSecret(SecretVolumeSource $secret) { $this->secret = $secret; } /** * @return SecretVolumeSource */ public function getSecret() { return $this->secret; } /** * @param string */ public function setSubPath($subPath) { $this->subPath = $subPath; } /** * @return string */ public function getSubPath() { return $this->subPath; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(WorkspaceBinding::class, 'Google_Service_CloudBuild_WorkspaceBinding');