high = $high; } /** * @return string */ public function getHigh() { return $this->high; } /** * Output only. The database service provides the least level of resources to * each SQL statement. * * @param string $low */ public function setLow($low) { $this->low = $low; } /** * @return string */ public function getLow() { return $this->low; } /** * Output only. The database service provides a lower level of resources to * each SQL statement. * * @param string $medium */ public function setMedium($medium) { $this->medium = $medium; } /** * @return string */ public function getMedium() { return $this->medium; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AllConnectionStrings::class, 'Google_Service_OracleDatabase_AllConnectionStrings');