actualOutputUrl = $actualOutputUrl; } /** * @return string */ public function getActualOutputUrl() { return $this->actualOutputUrl; } /** * Actual HTTP status code for rule with `urlRedirect` calculated by load * balancer * * @param int $actualRedirectResponseCode */ public function setActualRedirectResponseCode($actualRedirectResponseCode) { $this->actualRedirectResponseCode = $actualRedirectResponseCode; } /** * @return int */ public function getActualRedirectResponseCode() { return $this->actualRedirectResponseCode; } /** * BackendService or BackendBucket returned by load balancer. * * @param string $actualService */ public function setActualService($actualService) { $this->actualService = $actualService; } /** * @return string */ public function getActualService() { return $this->actualService; } /** * The expected output URL evaluated by a load balancer containing the scheme, * host, path and query parameters. * * @param string $expectedOutputUrl */ public function setExpectedOutputUrl($expectedOutputUrl) { $this->expectedOutputUrl = $expectedOutputUrl; } /** * @return string */ public function getExpectedOutputUrl() { return $this->expectedOutputUrl; } /** * Expected HTTP status code for rule with `urlRedirect` calculated by load * balancer * * @param int $expectedRedirectResponseCode */ public function setExpectedRedirectResponseCode($expectedRedirectResponseCode) { $this->expectedRedirectResponseCode = $expectedRedirectResponseCode; } /** * @return int */ public function getExpectedRedirectResponseCode() { return $this->expectedRedirectResponseCode; } /** * Expected BackendService or BackendBucket resource the given URL should be * mapped to. * * @param string $expectedService */ public function setExpectedService($expectedService) { $this->expectedService = $expectedService; } /** * @return string */ public function getExpectedService() { return $this->expectedService; } /** * HTTP headers of the request. * * @param UrlMapTestHeader[] $headers */ public function setHeaders($headers) { $this->headers = $headers; } /** * @return UrlMapTestHeader[] */ public function getHeaders() { return $this->headers; } /** * Host portion of the URL. * * @param string $host */ public function setHost($host) { $this->host = $host; } /** * @return string */ public function getHost() { return $this->host; } /** * Path portion including query parameters in the URL. * * @param string $path */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TestFailure::class, 'Google_Service_Compute_TestFailure');