destinationIds = $destinationIds; } /** * @return string[] */ public function getDestinationIds() { return $this->destinationIds; } /** * Optional. Whether to propagate the Kubernetes Service to the route * destination clusters. The Service will always be deployed to the Target * cluster even if the HTTPRoute is not. This option may be used to facilitate * successful DNS lookup in the route destination clusters. Can only be set to * true if destinations are specified. * * @param bool $propagateService */ public function setPropagateService($propagateService) { $this->propagateService = $propagateService; } /** * @return bool */ public function getPropagateService() { return $this->propagateService; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RouteDestinations::class, 'Google_Service_CloudDeploy_RouteDestinations');