address = $address; } /** * @return string */ public function getAddress() { return $this->address; } /** * The preexisting partition to be used by the load balancer. This partition * is usually created for the admin cluster for example: 'my-f5-admin- * partition'. * * @param string $partition */ public function setPartition($partition) { $this->partition = $partition; } /** * @return string */ public function getPartition() { return $this->partition; } /** * The pool name. Only necessary, if using SNAT. * * @param string $snatPool */ public function setSnatPool($snatPool) { $this->snatPool = $snatPool; } /** * @return string */ public function getSnatPool() { return $this->snatPool; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VmwareF5BigIpConfig::class, 'Google_Service_GKEOnPrem_VmwareF5BigIpConfig');