egressSettings = $egressSettings; } /** * @return Component[] */ public function getEgressSettings() { return $this->egressSettings; } /** * List of ingress components that should not be accessed via the Internet. * For more information see go/ccaip-private-path-v2. * * @param Component[] $ingressSettings */ public function setIngressSettings($ingressSettings) { $this->ingressSettings = $ingressSettings; } /** * @return Component[] */ public function getIngressSettings() { return $this->ingressSettings; } /** * Private service connect settings. * * @param PscSetting $pscSetting */ public function setPscSetting(PscSetting $pscSetting) { $this->pscSetting = $pscSetting; } /** * @return PscSetting */ public function getPscSetting() { return $this->pscSetting; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PrivateAccess::class, 'Google_Service_CCAIPlatform_PrivateAccess');