127 lines
3.0 KiB
PHP
127 lines
3.0 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\VMwareEngine;
|
|
|
|
class AutoscalingPolicy extends \Google\Model
|
|
{
|
|
protected $consumedMemoryThresholdsType = Thresholds::class;
|
|
protected $consumedMemoryThresholdsDataType = '';
|
|
protected $cpuThresholdsType = Thresholds::class;
|
|
protected $cpuThresholdsDataType = '';
|
|
protected $grantedMemoryThresholdsType = Thresholds::class;
|
|
protected $grantedMemoryThresholdsDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $nodeTypeId;
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $scaleOutSize;
|
|
protected $storageThresholdsType = Thresholds::class;
|
|
protected $storageThresholdsDataType = '';
|
|
|
|
/**
|
|
* @param Thresholds
|
|
*/
|
|
public function setConsumedMemoryThresholds(Thresholds $consumedMemoryThresholds)
|
|
{
|
|
$this->consumedMemoryThresholds = $consumedMemoryThresholds;
|
|
}
|
|
/**
|
|
* @return Thresholds
|
|
*/
|
|
public function getConsumedMemoryThresholds()
|
|
{
|
|
return $this->consumedMemoryThresholds;
|
|
}
|
|
/**
|
|
* @param Thresholds
|
|
*/
|
|
public function setCpuThresholds(Thresholds $cpuThresholds)
|
|
{
|
|
$this->cpuThresholds = $cpuThresholds;
|
|
}
|
|
/**
|
|
* @return Thresholds
|
|
*/
|
|
public function getCpuThresholds()
|
|
{
|
|
return $this->cpuThresholds;
|
|
}
|
|
/**
|
|
* @param Thresholds
|
|
*/
|
|
public function setGrantedMemoryThresholds(Thresholds $grantedMemoryThresholds)
|
|
{
|
|
$this->grantedMemoryThresholds = $grantedMemoryThresholds;
|
|
}
|
|
/**
|
|
* @return Thresholds
|
|
*/
|
|
public function getGrantedMemoryThresholds()
|
|
{
|
|
return $this->grantedMemoryThresholds;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setNodeTypeId($nodeTypeId)
|
|
{
|
|
$this->nodeTypeId = $nodeTypeId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getNodeTypeId()
|
|
{
|
|
return $this->nodeTypeId;
|
|
}
|
|
/**
|
|
* @param int
|
|
*/
|
|
public function setScaleOutSize($scaleOutSize)
|
|
{
|
|
$this->scaleOutSize = $scaleOutSize;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getScaleOutSize()
|
|
{
|
|
return $this->scaleOutSize;
|
|
}
|
|
/**
|
|
* @param Thresholds
|
|
*/
|
|
public function setStorageThresholds(Thresholds $storageThresholds)
|
|
{
|
|
$this->storageThresholds = $storageThresholds;
|
|
}
|
|
/**
|
|
* @return Thresholds
|
|
*/
|
|
public function getStorageThresholds()
|
|
{
|
|
return $this->storageThresholds;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(AutoscalingPolicy::class, 'Google_Service_VMwareEngine_AutoscalingPolicy');
|