allValues = $allValues; } /** * @return string */ public function getAllValues() { return $this->allValues; } /** * @param string[] */ public function setAllowedValues($allowedValues) { $this->allowedValues = $allowedValues; } /** * @return string[] */ public function getAllowedValues() { return $this->allowedValues; } /** * @param string[] */ public function setDeniedValues($deniedValues) { $this->deniedValues = $deniedValues; } /** * @return string[] */ public function getDeniedValues() { return $this->deniedValues; } /** * @param bool */ public function setInheritFromParent($inheritFromParent) { $this->inheritFromParent = $inheritFromParent; } /** * @return bool */ public function getInheritFromParent() { return $this->inheritFromParent; } /** * @param string */ public function setSuggestedValue($suggestedValue) { $this->suggestedValue = $suggestedValue; } /** * @return string */ public function getSuggestedValue() { return $this->suggestedValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudOrgpolicyV1ListPolicy::class, 'Google_Service_CloudAsset_GoogleCloudOrgpolicyV1ListPolicy');