mountPath = $mountPath;
}
/**
* @return string
*/
public function getMountPath()
{
return $this->mountPath;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param bool
*/
public function setReadOnly($readOnly)
{
$this->readOnly = $readOnly;
}
/**
* @return bool
*/
public function getReadOnly()
{
return $this->readOnly;
}
/**
* @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(VolumeMount::class, 'Google_Service_CloudRun_VolumeMount');