1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\CloudRun; 19 20class GoogleCloudRunV2RevisionTemplate extends \Google\Collection 21{ 22 protected $collection_key = 'volumes'; 23 /** 24 * @var string[] 25 */ 26 public $annotations; 27 /** 28 * @var bool 29 */ 30 public $confidential; 31 /** 32 * @var int 33 */ 34 public $containerConcurrency; 35 protected $containersType = GoogleCloudRunV2Container::class; 36 protected $containersDataType = 'array'; 37 /** 38 * @var string 39 */ 40 public $encryptionKey; 41 /** 42 * @var string 43 */ 44 public $executionEnvironment; 45 /** 46 * @var string[] 47 */ 48 public $labels; 49 /** 50 * @var string 51 */ 52 public $revision; 53 protected $scalingType = GoogleCloudRunV2RevisionScaling::class; 54 protected $scalingDataType = ''; 55 /** 56 * @var string 57 */ 58 public $serviceAccount; 59 /** 60 * @var string 61 */ 62 public $timeout; 63 protected $volumesType = GoogleCloudRunV2Volume::class; 64 protected $volumesDataType = 'array'; 65 protected $vpcAccessType = GoogleCloudRunV2VpcAccess::class; 66 protected $vpcAccessDataType = ''; 67 68 /** 69 * @param string[] 70 */ 71 public function setAnnotations($annotations) 72 { 73 $this->annotations = $annotations; 74 } 75 /** 76 * @return string[] 77 */ 78 public function getAnnotations() 79 { 80 return $this->annotations; 81 } 82 /** 83 * @param bool 84 */ 85 public function setConfidential($confidential) 86 { 87 $this->confidential = $confidential; 88 } 89 /** 90 * @return bool 91 */ 92 public function getConfidential() 93 { 94 return $this->confidential; 95 } 96 /** 97 * @param int 98 */ 99 public function setContainerConcurrency($containerConcurrency) 100 { 101 $this->containerConcurrency = $containerConcurrency; 102 } 103 /** 104 * @return int 105 */ 106 public function getContainerConcurrency() 107 { 108 return $this->containerConcurrency; 109 } 110 /** 111 * @param GoogleCloudRunV2Container[] 112 */ 113 public function setContainers($containers) 114 { 115 $this->containers = $containers; 116 } 117 /** 118 * @return GoogleCloudRunV2Container[] 119 */ 120 public function getContainers() 121 { 122 return $this->containers; 123 } 124 /** 125 * @param string 126 */ 127 public function setEncryptionKey($encryptionKey) 128 { 129 $this->encryptionKey = $encryptionKey; 130 } 131 /** 132 * @return string 133 */ 134 public function getEncryptionKey() 135 { 136 return $this->encryptionKey; 137 } 138 /** 139 * @param string 140 */ 141 public function setExecutionEnvironment($executionEnvironment) 142 { 143 $this->executionEnvironment = $executionEnvironment; 144 } 145 /** 146 * @return string 147 */ 148 public function getExecutionEnvironment() 149 { 150 return $this->executionEnvironment; 151 } 152 /** 153 * @param string[] 154 */ 155 public function setLabels($labels) 156 { 157 $this->labels = $labels; 158 } 159 /** 160 * @return string[] 161 */ 162 public function getLabels() 163 { 164 return $this->labels; 165 } 166 /** 167 * @param string 168 */ 169 public function setRevision($revision) 170 { 171 $this->revision = $revision; 172 } 173 /** 174 * @return string 175 */ 176 public function getRevision() 177 { 178 return $this->revision; 179 } 180 /** 181 * @param GoogleCloudRunV2RevisionScaling 182 */ 183 public function setScaling(GoogleCloudRunV2RevisionScaling $scaling) 184 { 185 $this->scaling = $scaling; 186 } 187 /** 188 * @return GoogleCloudRunV2RevisionScaling 189 */ 190 public function getScaling() 191 { 192 return $this->scaling; 193 } 194 /** 195 * @param string 196 */ 197 public function setServiceAccount($serviceAccount) 198 { 199 $this->serviceAccount = $serviceAccount; 200 } 201 /** 202 * @return string 203 */ 204 public function getServiceAccount() 205 { 206 return $this->serviceAccount; 207 } 208 /** 209 * @param string 210 */ 211 public function setTimeout($timeout) 212 { 213 $this->timeout = $timeout; 214 } 215 /** 216 * @return string 217 */ 218 public function getTimeout() 219 { 220 return $this->timeout; 221 } 222 /** 223 * @param GoogleCloudRunV2Volume[] 224 */ 225 public function setVolumes($volumes) 226 { 227 $this->volumes = $volumes; 228 } 229 /** 230 * @return GoogleCloudRunV2Volume[] 231 */ 232 public function getVolumes() 233 { 234 return $this->volumes; 235 } 236 /** 237 * @param GoogleCloudRunV2VpcAccess 238 */ 239 public function setVpcAccess(GoogleCloudRunV2VpcAccess $vpcAccess) 240 { 241 $this->vpcAccess = $vpcAccess; 242 } 243 /** 244 * @return GoogleCloudRunV2VpcAccess 245 */ 246 public function getVpcAccess() 247 { 248 return $this->vpcAccess; 249 } 250} 251 252// Adding a class alias for backwards compatibility with the previous class name. 253class_alias(GoogleCloudRunV2RevisionTemplate::class, 'Google_Service_CloudRun_GoogleCloudRunV2RevisionTemplate'); 254