name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * A list of the secondary ranges of the Subnetwork that are allowed to use * NAT. This can be populated only if "LIST_OF_SECONDARY_IP_RANGES" is one of * the values in source_ip_ranges_to_nat. * * @param string[] $secondaryIpRangeNames */ public function setSecondaryIpRangeNames($secondaryIpRangeNames) { $this->secondaryIpRangeNames = $secondaryIpRangeNames; } /** * @return string[] */ public function getSecondaryIpRangeNames() { return $this->secondaryIpRangeNames; } /** * Specify the options for NAT ranges in the Subnetwork. All options of a * single value are valid except NAT_IP_RANGE_OPTION_UNSPECIFIED. The only * valid option with multiple values is: ["PRIMARY_IP_RANGE", * "LIST_OF_SECONDARY_IP_RANGES"] Default: [ALL_IP_RANGES] * * @param string[] $sourceIpRangesToNat */ public function setSourceIpRangesToNat($sourceIpRangesToNat) { $this->sourceIpRangesToNat = $sourceIpRangesToNat; } /** * @return string[] */ public function getSourceIpRangesToNat() { return $this->sourceIpRangesToNat; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RouterNatSubnetworkToNat::class, 'Google_Service_Compute_RouterNatSubnetworkToNat');