connectionLimit = $connectionLimit; } /** * @return string */ public function getConnectionLimit() { return $this->connectionLimit; } /** * The URL for the PSC endpoint to accept * * @param string $endpointUrl */ public function setEndpointUrl($endpointUrl) { $this->endpointUrl = $endpointUrl; } /** * @return string */ public function getEndpointUrl() { return $this->endpointUrl; } /** * The network URL for the network to set the limit for. * * @param string $networkUrl */ public function setNetworkUrl($networkUrl) { $this->networkUrl = $networkUrl; } /** * @return string */ public function getNetworkUrl() { return $this->networkUrl; } /** * The project id or number for the project to set the limit for. * * @param string $projectIdOrNum */ public function setProjectIdOrNum($projectIdOrNum) { $this->projectIdOrNum = $projectIdOrNum; } /** * @return string */ public function getProjectIdOrNum() { return $this->projectIdOrNum; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ServiceAttachmentConsumerProjectLimit::class, 'Google_Service_Compute_ServiceAttachmentConsumerProjectLimit');