hostRedirect = $hostRedirect; } /** * @return string */ public function getHostRedirect() { return $this->hostRedirect; } /** * @param bool */ public function setHttpsRedirect($httpsRedirect) { $this->httpsRedirect = $httpsRedirect; } /** * @return bool */ public function getHttpsRedirect() { return $this->httpsRedirect; } /** * @param string */ public function setPathRedirect($pathRedirect) { $this->pathRedirect = $pathRedirect; } /** * @return string */ public function getPathRedirect() { return $this->pathRedirect; } /** * @param string */ public function setPrefixRedirect($prefixRedirect) { $this->prefixRedirect = $prefixRedirect; } /** * @return string */ public function getPrefixRedirect() { return $this->prefixRedirect; } /** * @param string */ public function setRedirectResponseCode($redirectResponseCode) { $this->redirectResponseCode = $redirectResponseCode; } /** * @return string */ public function getRedirectResponseCode() { return $this->redirectResponseCode; } /** * @param bool */ public function setStripQuery($stripQuery) { $this->stripQuery = $stripQuery; } /** * @return bool */ public function getStripQuery() { return $this->stripQuery; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HttpRedirectAction::class, 'Google_Service_Compute_HttpRedirectAction');