path = $path; } /** * @return string */ public function getPath() { return $this->path; } /** * Required. The region the Cloud Run service is deployed in. * * @param string $region */ public function setRegion($region) { $this->region = $region; } /** * @return string */ public function getRegion() { return $this->region; } /** * Required. The name of the Cloud Run service being addressed. See * https://cloud.google.com/run/docs/reference/rest/v1/namespaces.services. * Only services located in the same project as the trigger object can be * addressed. * * @param string $service */ public function setService($service) { $this->service = $service; } /** * @return string */ public function getService() { return $this->service; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CloudRun::class, 'Google_Service_Eventarc_CloudRun');