ipCidrRange = $ipCidrRange; } /** * @return string */ public function getIpCidrRange() { return $this->ipCidrRange; } /** * The name of a subnetwork secondary IP range from which to allocate an IP * alias range. If not specified, the primary range of the subnetwork is used. * * @param string $subnetworkRangeName */ public function setSubnetworkRangeName($subnetworkRangeName) { $this->subnetworkRangeName = $subnetworkRangeName; } /** * @return string */ public function getSubnetworkRangeName() { return $this->subnetworkRangeName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AliasIpRange::class, 'Google_Service_Compute_AliasIpRange');