dependency = $dependency; } /** * @return string */ public function getDependency() { return $this->dependency; } /** * Optional. Tells App Lifecycle Manager if this mapping should be used during * lookup or not * * @param bool $ignoreForLookup */ public function setIgnoreForLookup($ignoreForLookup) { $this->ignoreForLookup = $ignoreForLookup; } /** * @return bool */ public function getIgnoreForLookup() { return $this->ignoreForLookup; } /** * Required. Name of the inputVariable on the dependency * * @param string $inputVariable */ public function setInputVariable($inputVariable) { $this->inputVariable = $inputVariable; } /** * @return string */ public function getInputVariable() { return $this->inputVariable; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ToMapping::class, 'Google_Service_SaaSServiceManagement_ToMapping');