81 lines
2.5 KiB
PHP
81 lines
2.5 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 AliasIpRange extends \Google\Model
|
|
{
|
|
/**
|
|
* The IP alias ranges to allocate for this interface. This IP CIDR range must
|
|
* belong to the specified subnetwork and cannot contain IP addresses reserved
|
|
* by system or used by other network interfaces. This range may be a single
|
|
* IP address (such as 10.2.3.4), a netmask (such as/24) or a CIDR-formatted
|
|
* string (such as10.1.2.0/24).
|
|
*
|
|
* @var string
|
|
*/
|
|
public $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.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $subnetworkRangeName;
|
|
|
|
/**
|
|
* The IP alias ranges to allocate for this interface. This IP CIDR range must
|
|
* belong to the specified subnetwork and cannot contain IP addresses reserved
|
|
* by system or used by other network interfaces. This range may be a single
|
|
* IP address (such as 10.2.3.4), a netmask (such as/24) or a CIDR-formatted
|
|
* string (such as10.1.2.0/24).
|
|
*
|
|
* @param string $ipCidrRange
|
|
*/
|
|
public function setIpCidrRange($ipCidrRange)
|
|
{
|
|
$this->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');
|