624 lines
12 KiB
PHP
624 lines
12 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\CloudRun;
|
|
|
|
class GoogleCloudRunV2Revision extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'volumes';
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public $annotations;
|
|
protected $conditionsType = GoogleCloudRunV2Condition::class;
|
|
protected $conditionsDataType = 'array';
|
|
protected $containersType = GoogleCloudRunV2Container::class;
|
|
protected $containersDataType = 'array';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $createTime;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $creator;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $deleteTime;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $encryptionKey;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $encryptionKeyRevocationAction;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $encryptionKeyShutdownDuration;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $etag;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $executionEnvironment;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $expireTime;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $generation;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $gpuZonalRedundancyDisabled;
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public $labels;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $launchStage;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $logUri;
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $maxInstanceRequestConcurrency;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $name;
|
|
protected $nodeSelectorType = GoogleCloudRunV2NodeSelector::class;
|
|
protected $nodeSelectorDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $observedGeneration;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $reconciling;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $satisfiesPzs;
|
|
protected $scalingType = GoogleCloudRunV2RevisionScaling::class;
|
|
protected $scalingDataType = '';
|
|
protected $scalingStatusType = GoogleCloudRunV2RevisionScalingStatus::class;
|
|
protected $scalingStatusDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $service;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $serviceAccount;
|
|
protected $serviceMeshType = GoogleCloudRunV2ServiceMesh::class;
|
|
protected $serviceMeshDataType = '';
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $sessionAffinity;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $timeout;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $uid;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $updateTime;
|
|
protected $volumesType = GoogleCloudRunV2Volume::class;
|
|
protected $volumesDataType = 'array';
|
|
protected $vpcAccessType = GoogleCloudRunV2VpcAccess::class;
|
|
protected $vpcAccessDataType = '';
|
|
|
|
/**
|
|
* @param string[]
|
|
*/
|
|
public function setAnnotations($annotations)
|
|
{
|
|
$this->annotations = $annotations;
|
|
}
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getAnnotations()
|
|
{
|
|
return $this->annotations;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2Condition[]
|
|
*/
|
|
public function setConditions($conditions)
|
|
{
|
|
$this->conditions = $conditions;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2Condition[]
|
|
*/
|
|
public function getConditions()
|
|
{
|
|
return $this->conditions;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2Container[]
|
|
*/
|
|
public function setContainers($containers)
|
|
{
|
|
$this->containers = $containers;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2Container[]
|
|
*/
|
|
public function getContainers()
|
|
{
|
|
return $this->containers;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setCreateTime($createTime)
|
|
{
|
|
$this->createTime = $createTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCreateTime()
|
|
{
|
|
return $this->createTime;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setCreator($creator)
|
|
{
|
|
$this->creator = $creator;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCreator()
|
|
{
|
|
return $this->creator;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setDeleteTime($deleteTime)
|
|
{
|
|
$this->deleteTime = $deleteTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getDeleteTime()
|
|
{
|
|
return $this->deleteTime;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEncryptionKey($encryptionKey)
|
|
{
|
|
$this->encryptionKey = $encryptionKey;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEncryptionKey()
|
|
{
|
|
return $this->encryptionKey;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEncryptionKeyRevocationAction($encryptionKeyRevocationAction)
|
|
{
|
|
$this->encryptionKeyRevocationAction = $encryptionKeyRevocationAction;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEncryptionKeyRevocationAction()
|
|
{
|
|
return $this->encryptionKeyRevocationAction;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEncryptionKeyShutdownDuration($encryptionKeyShutdownDuration)
|
|
{
|
|
$this->encryptionKeyShutdownDuration = $encryptionKeyShutdownDuration;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEncryptionKeyShutdownDuration()
|
|
{
|
|
return $this->encryptionKeyShutdownDuration;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEtag($etag)
|
|
{
|
|
$this->etag = $etag;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEtag()
|
|
{
|
|
return $this->etag;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setExecutionEnvironment($executionEnvironment)
|
|
{
|
|
$this->executionEnvironment = $executionEnvironment;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getExecutionEnvironment()
|
|
{
|
|
return $this->executionEnvironment;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setExpireTime($expireTime)
|
|
{
|
|
$this->expireTime = $expireTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getExpireTime()
|
|
{
|
|
return $this->expireTime;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setGeneration($generation)
|
|
{
|
|
$this->generation = $generation;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getGeneration()
|
|
{
|
|
return $this->generation;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setGpuZonalRedundancyDisabled($gpuZonalRedundancyDisabled)
|
|
{
|
|
$this->gpuZonalRedundancyDisabled = $gpuZonalRedundancyDisabled;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getGpuZonalRedundancyDisabled()
|
|
{
|
|
return $this->gpuZonalRedundancyDisabled;
|
|
}
|
|
/**
|
|
* @param string[]
|
|
*/
|
|
public function setLabels($labels)
|
|
{
|
|
$this->labels = $labels;
|
|
}
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
public function getLabels()
|
|
{
|
|
return $this->labels;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setLaunchStage($launchStage)
|
|
{
|
|
$this->launchStage = $launchStage;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getLaunchStage()
|
|
{
|
|
return $this->launchStage;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setLogUri($logUri)
|
|
{
|
|
$this->logUri = $logUri;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getLogUri()
|
|
{
|
|
return $this->logUri;
|
|
}
|
|
/**
|
|
* @param int
|
|
*/
|
|
public function setMaxInstanceRequestConcurrency($maxInstanceRequestConcurrency)
|
|
{
|
|
$this->maxInstanceRequestConcurrency = $maxInstanceRequestConcurrency;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getMaxInstanceRequestConcurrency()
|
|
{
|
|
return $this->maxInstanceRequestConcurrency;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2NodeSelector
|
|
*/
|
|
public function setNodeSelector(GoogleCloudRunV2NodeSelector $nodeSelector)
|
|
{
|
|
$this->nodeSelector = $nodeSelector;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2NodeSelector
|
|
*/
|
|
public function getNodeSelector()
|
|
{
|
|
return $this->nodeSelector;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setObservedGeneration($observedGeneration)
|
|
{
|
|
$this->observedGeneration = $observedGeneration;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getObservedGeneration()
|
|
{
|
|
return $this->observedGeneration;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setReconciling($reconciling)
|
|
{
|
|
$this->reconciling = $reconciling;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getReconciling()
|
|
{
|
|
return $this->reconciling;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setSatisfiesPzs($satisfiesPzs)
|
|
{
|
|
$this->satisfiesPzs = $satisfiesPzs;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getSatisfiesPzs()
|
|
{
|
|
return $this->satisfiesPzs;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2RevisionScaling
|
|
*/
|
|
public function setScaling(GoogleCloudRunV2RevisionScaling $scaling)
|
|
{
|
|
$this->scaling = $scaling;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2RevisionScaling
|
|
*/
|
|
public function getScaling()
|
|
{
|
|
return $this->scaling;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2RevisionScalingStatus
|
|
*/
|
|
public function setScalingStatus(GoogleCloudRunV2RevisionScalingStatus $scalingStatus)
|
|
{
|
|
$this->scalingStatus = $scalingStatus;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2RevisionScalingStatus
|
|
*/
|
|
public function getScalingStatus()
|
|
{
|
|
return $this->scalingStatus;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setService($service)
|
|
{
|
|
$this->service = $service;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getService()
|
|
{
|
|
return $this->service;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setServiceAccount($serviceAccount)
|
|
{
|
|
$this->serviceAccount = $serviceAccount;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getServiceAccount()
|
|
{
|
|
return $this->serviceAccount;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2ServiceMesh
|
|
*/
|
|
public function setServiceMesh(GoogleCloudRunV2ServiceMesh $serviceMesh)
|
|
{
|
|
$this->serviceMesh = $serviceMesh;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2ServiceMesh
|
|
*/
|
|
public function getServiceMesh()
|
|
{
|
|
return $this->serviceMesh;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setSessionAffinity($sessionAffinity)
|
|
{
|
|
$this->sessionAffinity = $sessionAffinity;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getSessionAffinity()
|
|
{
|
|
return $this->sessionAffinity;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setTimeout($timeout)
|
|
{
|
|
$this->timeout = $timeout;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTimeout()
|
|
{
|
|
return $this->timeout;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setUid($uid)
|
|
{
|
|
$this->uid = $uid;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUid()
|
|
{
|
|
return $this->uid;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setUpdateTime($updateTime)
|
|
{
|
|
$this->updateTime = $updateTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUpdateTime()
|
|
{
|
|
return $this->updateTime;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2Volume[]
|
|
*/
|
|
public function setVolumes($volumes)
|
|
{
|
|
$this->volumes = $volumes;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2Volume[]
|
|
*/
|
|
public function getVolumes()
|
|
{
|
|
return $this->volumes;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2VpcAccess
|
|
*/
|
|
public function setVpcAccess(GoogleCloudRunV2VpcAccess $vpcAccess)
|
|
{
|
|
$this->vpcAccess = $vpcAccess;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2VpcAccess
|
|
*/
|
|
public function getVpcAccess()
|
|
{
|
|
return $this->vpcAccess;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(GoogleCloudRunV2Revision::class, 'Google_Service_CloudRun_GoogleCloudRunV2Revision');
|