104 lines
2.9 KiB
PHP
104 lines
2.9 KiB
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* Copyright 2014 Google Inc.
|
||
|
|
*
|
||
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
||
|
|
* the License at
|
||
|
|
*
|
||
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
*
|
||
|
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||
|
|
* License for the specific language governing permissions and limitations under
|
||
|
|
* the License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Google\Service\Compute;
|
||
|
|
|
||
|
|
class RouterNatSubnetworkToNat extends \Google\Collection
|
||
|
|
{
|
||
|
|
protected $collection_key = 'sourceIpRangesToNat';
|
||
|
|
/**
|
||
|
|
* URL for the subnetwork resource that will use NAT.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $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.
|
||
|
|
*
|
||
|
|
* @var string[]
|
||
|
|
*/
|
||
|
|
public $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]
|
||
|
|
*
|
||
|
|
* @var string[]
|
||
|
|
*/
|
||
|
|
public $sourceIpRangesToNat;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* URL for the subnetwork resource that will use NAT.
|
||
|
|
*
|
||
|
|
* @param string $name
|
||
|
|
*/
|
||
|
|
public function setName($name)
|
||
|
|
{
|
||
|
|
$this->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');
|