[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\VMwareEngine;
|
---|
| 19 |
|
---|
| 20 | class NetworkPeering extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var string
|
---|
| 24 | */
|
---|
| 25 | public $createTime;
|
---|
| 26 | /**
|
---|
| 27 | * @var string
|
---|
| 28 | */
|
---|
| 29 | public $description;
|
---|
| 30 | /**
|
---|
| 31 | * @var bool
|
---|
| 32 | */
|
---|
| 33 | public $exchangeSubnetRoutes;
|
---|
| 34 | /**
|
---|
| 35 | * @var bool
|
---|
| 36 | */
|
---|
| 37 | public $exportCustomRoutes;
|
---|
| 38 | /**
|
---|
| 39 | * @var bool
|
---|
| 40 | */
|
---|
| 41 | public $exportCustomRoutesWithPublicIp;
|
---|
| 42 | /**
|
---|
| 43 | * @var bool
|
---|
| 44 | */
|
---|
| 45 | public $importCustomRoutes;
|
---|
| 46 | /**
|
---|
| 47 | * @var bool
|
---|
| 48 | */
|
---|
| 49 | public $importCustomRoutesWithPublicIp;
|
---|
| 50 | /**
|
---|
| 51 | * @var string
|
---|
| 52 | */
|
---|
| 53 | public $name;
|
---|
| 54 | /**
|
---|
| 55 | * @var int
|
---|
| 56 | */
|
---|
| 57 | public $peerMtu;
|
---|
| 58 | /**
|
---|
| 59 | * @var string
|
---|
| 60 | */
|
---|
| 61 | public $peerNetwork;
|
---|
| 62 | /**
|
---|
| 63 | * @var string
|
---|
| 64 | */
|
---|
| 65 | public $peerNetworkType;
|
---|
| 66 | /**
|
---|
| 67 | * @var string
|
---|
| 68 | */
|
---|
| 69 | public $state;
|
---|
| 70 | /**
|
---|
| 71 | * @var string
|
---|
| 72 | */
|
---|
| 73 | public $stateDetails;
|
---|
| 74 | /**
|
---|
| 75 | * @var string
|
---|
| 76 | */
|
---|
| 77 | public $uid;
|
---|
| 78 | /**
|
---|
| 79 | * @var string
|
---|
| 80 | */
|
---|
| 81 | public $updateTime;
|
---|
| 82 | /**
|
---|
| 83 | * @var string
|
---|
| 84 | */
|
---|
| 85 | public $vmwareEngineNetwork;
|
---|
| 86 |
|
---|
| 87 | /**
|
---|
| 88 | * @param string
|
---|
| 89 | */
|
---|
| 90 | public function setCreateTime($createTime)
|
---|
| 91 | {
|
---|
| 92 | $this->createTime = $createTime;
|
---|
| 93 | }
|
---|
| 94 | /**
|
---|
| 95 | * @return string
|
---|
| 96 | */
|
---|
| 97 | public function getCreateTime()
|
---|
| 98 | {
|
---|
| 99 | return $this->createTime;
|
---|
| 100 | }
|
---|
| 101 | /**
|
---|
| 102 | * @param string
|
---|
| 103 | */
|
---|
| 104 | public function setDescription($description)
|
---|
| 105 | {
|
---|
| 106 | $this->description = $description;
|
---|
| 107 | }
|
---|
| 108 | /**
|
---|
| 109 | * @return string
|
---|
| 110 | */
|
---|
| 111 | public function getDescription()
|
---|
| 112 | {
|
---|
| 113 | return $this->description;
|
---|
| 114 | }
|
---|
| 115 | /**
|
---|
| 116 | * @param bool
|
---|
| 117 | */
|
---|
| 118 | public function setExchangeSubnetRoutes($exchangeSubnetRoutes)
|
---|
| 119 | {
|
---|
| 120 | $this->exchangeSubnetRoutes = $exchangeSubnetRoutes;
|
---|
| 121 | }
|
---|
| 122 | /**
|
---|
| 123 | * @return bool
|
---|
| 124 | */
|
---|
| 125 | public function getExchangeSubnetRoutes()
|
---|
| 126 | {
|
---|
| 127 | return $this->exchangeSubnetRoutes;
|
---|
| 128 | }
|
---|
| 129 | /**
|
---|
| 130 | * @param bool
|
---|
| 131 | */
|
---|
| 132 | public function setExportCustomRoutes($exportCustomRoutes)
|
---|
| 133 | {
|
---|
| 134 | $this->exportCustomRoutes = $exportCustomRoutes;
|
---|
| 135 | }
|
---|
| 136 | /**
|
---|
| 137 | * @return bool
|
---|
| 138 | */
|
---|
| 139 | public function getExportCustomRoutes()
|
---|
| 140 | {
|
---|
| 141 | return $this->exportCustomRoutes;
|
---|
| 142 | }
|
---|
| 143 | /**
|
---|
| 144 | * @param bool
|
---|
| 145 | */
|
---|
| 146 | public function setExportCustomRoutesWithPublicIp($exportCustomRoutesWithPublicIp)
|
---|
| 147 | {
|
---|
| 148 | $this->exportCustomRoutesWithPublicIp = $exportCustomRoutesWithPublicIp;
|
---|
| 149 | }
|
---|
| 150 | /**
|
---|
| 151 | * @return bool
|
---|
| 152 | */
|
---|
| 153 | public function getExportCustomRoutesWithPublicIp()
|
---|
| 154 | {
|
---|
| 155 | return $this->exportCustomRoutesWithPublicIp;
|
---|
| 156 | }
|
---|
| 157 | /**
|
---|
| 158 | * @param bool
|
---|
| 159 | */
|
---|
| 160 | public function setImportCustomRoutes($importCustomRoutes)
|
---|
| 161 | {
|
---|
| 162 | $this->importCustomRoutes = $importCustomRoutes;
|
---|
| 163 | }
|
---|
| 164 | /**
|
---|
| 165 | * @return bool
|
---|
| 166 | */
|
---|
| 167 | public function getImportCustomRoutes()
|
---|
| 168 | {
|
---|
| 169 | return $this->importCustomRoutes;
|
---|
| 170 | }
|
---|
| 171 | /**
|
---|
| 172 | * @param bool
|
---|
| 173 | */
|
---|
| 174 | public function setImportCustomRoutesWithPublicIp($importCustomRoutesWithPublicIp)
|
---|
| 175 | {
|
---|
| 176 | $this->importCustomRoutesWithPublicIp = $importCustomRoutesWithPublicIp;
|
---|
| 177 | }
|
---|
| 178 | /**
|
---|
| 179 | * @return bool
|
---|
| 180 | */
|
---|
| 181 | public function getImportCustomRoutesWithPublicIp()
|
---|
| 182 | {
|
---|
| 183 | return $this->importCustomRoutesWithPublicIp;
|
---|
| 184 | }
|
---|
| 185 | /**
|
---|
| 186 | * @param string
|
---|
| 187 | */
|
---|
| 188 | public function setName($name)
|
---|
| 189 | {
|
---|
| 190 | $this->name = $name;
|
---|
| 191 | }
|
---|
| 192 | /**
|
---|
| 193 | * @return string
|
---|
| 194 | */
|
---|
| 195 | public function getName()
|
---|
| 196 | {
|
---|
| 197 | return $this->name;
|
---|
| 198 | }
|
---|
| 199 | /**
|
---|
| 200 | * @param int
|
---|
| 201 | */
|
---|
| 202 | public function setPeerMtu($peerMtu)
|
---|
| 203 | {
|
---|
| 204 | $this->peerMtu = $peerMtu;
|
---|
| 205 | }
|
---|
| 206 | /**
|
---|
| 207 | * @return int
|
---|
| 208 | */
|
---|
| 209 | public function getPeerMtu()
|
---|
| 210 | {
|
---|
| 211 | return $this->peerMtu;
|
---|
| 212 | }
|
---|
| 213 | /**
|
---|
| 214 | * @param string
|
---|
| 215 | */
|
---|
| 216 | public function setPeerNetwork($peerNetwork)
|
---|
| 217 | {
|
---|
| 218 | $this->peerNetwork = $peerNetwork;
|
---|
| 219 | }
|
---|
| 220 | /**
|
---|
| 221 | * @return string
|
---|
| 222 | */
|
---|
| 223 | public function getPeerNetwork()
|
---|
| 224 | {
|
---|
| 225 | return $this->peerNetwork;
|
---|
| 226 | }
|
---|
| 227 | /**
|
---|
| 228 | * @param string
|
---|
| 229 | */
|
---|
| 230 | public function setPeerNetworkType($peerNetworkType)
|
---|
| 231 | {
|
---|
| 232 | $this->peerNetworkType = $peerNetworkType;
|
---|
| 233 | }
|
---|
| 234 | /**
|
---|
| 235 | * @return string
|
---|
| 236 | */
|
---|
| 237 | public function getPeerNetworkType()
|
---|
| 238 | {
|
---|
| 239 | return $this->peerNetworkType;
|
---|
| 240 | }
|
---|
| 241 | /**
|
---|
| 242 | * @param string
|
---|
| 243 | */
|
---|
| 244 | public function setState($state)
|
---|
| 245 | {
|
---|
| 246 | $this->state = $state;
|
---|
| 247 | }
|
---|
| 248 | /**
|
---|
| 249 | * @return string
|
---|
| 250 | */
|
---|
| 251 | public function getState()
|
---|
| 252 | {
|
---|
| 253 | return $this->state;
|
---|
| 254 | }
|
---|
| 255 | /**
|
---|
| 256 | * @param string
|
---|
| 257 | */
|
---|
| 258 | public function setStateDetails($stateDetails)
|
---|
| 259 | {
|
---|
| 260 | $this->stateDetails = $stateDetails;
|
---|
| 261 | }
|
---|
| 262 | /**
|
---|
| 263 | * @return string
|
---|
| 264 | */
|
---|
| 265 | public function getStateDetails()
|
---|
| 266 | {
|
---|
| 267 | return $this->stateDetails;
|
---|
| 268 | }
|
---|
| 269 | /**
|
---|
| 270 | * @param string
|
---|
| 271 | */
|
---|
| 272 | public function setUid($uid)
|
---|
| 273 | {
|
---|
| 274 | $this->uid = $uid;
|
---|
| 275 | }
|
---|
| 276 | /**
|
---|
| 277 | * @return string
|
---|
| 278 | */
|
---|
| 279 | public function getUid()
|
---|
| 280 | {
|
---|
| 281 | return $this->uid;
|
---|
| 282 | }
|
---|
| 283 | /**
|
---|
| 284 | * @param string
|
---|
| 285 | */
|
---|
| 286 | public function setUpdateTime($updateTime)
|
---|
| 287 | {
|
---|
| 288 | $this->updateTime = $updateTime;
|
---|
| 289 | }
|
---|
| 290 | /**
|
---|
| 291 | * @return string
|
---|
| 292 | */
|
---|
| 293 | public function getUpdateTime()
|
---|
| 294 | {
|
---|
| 295 | return $this->updateTime;
|
---|
| 296 | }
|
---|
| 297 | /**
|
---|
| 298 | * @param string
|
---|
| 299 | */
|
---|
| 300 | public function setVmwareEngineNetwork($vmwareEngineNetwork)
|
---|
| 301 | {
|
---|
| 302 | $this->vmwareEngineNetwork = $vmwareEngineNetwork;
|
---|
| 303 | }
|
---|
| 304 | /**
|
---|
| 305 | * @return string
|
---|
| 306 | */
|
---|
| 307 | public function getVmwareEngineNetwork()
|
---|
| 308 | {
|
---|
| 309 | return $this->vmwareEngineNetwork;
|
---|
| 310 | }
|
---|
| 311 | }
|
---|
| 312 |
|
---|
| 313 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 314 | class_alias(NetworkPeering::class, 'Google_Service_VMwareEngine_NetworkPeering');
|
---|