defaultGw = $defaultGw; } /** * @return string */ public function getDefaultGw() { return $this->defaultGw; } /** * @param NetworkAdapterList */ public function setNetworkAdapters(NetworkAdapterList $networkAdapters) { $this->networkAdapters = $networkAdapters; } /** * @return NetworkAdapterList */ public function getNetworkAdapters() { return $this->networkAdapters; } /** * @param string */ public function setPrimaryIpAddress($primaryIpAddress) { $this->primaryIpAddress = $primaryIpAddress; } /** * @return string */ public function getPrimaryIpAddress() { return $this->primaryIpAddress; } /** * @param string */ public function setPrimaryMacAddress($primaryMacAddress) { $this->primaryMacAddress = $primaryMacAddress; } /** * @return string */ public function getPrimaryMacAddress() { return $this->primaryMacAddress; } /** * @param string */ public function setPublicIpAddress($publicIpAddress) { $this->publicIpAddress = $publicIpAddress; } /** * @return string */ public function getPublicIpAddress() { return $this->publicIpAddress; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VirtualMachineNetworkDetails::class, 'Google_Service_MigrationCenterAPI_VirtualMachineNetworkDetails');