enableHttpPortAccess = $enableHttpPortAccess; } /** * @return bool */ public function getEnableHttpPortAccess() { return $this->enableHttpPortAccess; } /** * Output only. The map of port descriptions to URLs. Will only be populated * if enable_http_port_access is true. * * @param string[] $httpPorts */ public function setHttpPorts($httpPorts) { $this->httpPorts = $httpPorts; } /** * @return string[] */ public function getHttpPorts() { return $this->httpPorts; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EndpointConfig::class, 'Google_Service_Dataproc_EndpointConfig');