source: vendor/google/apiclient-services/src/Compute/Interconnect.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 9.7 KB
Line 
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\Compute;
19
20class Interconnect extends \Google\Collection
21{
22 protected $collection_key = 'requestedFeatures';
23 /**
24 * @var bool
25 */
26 public $adminEnabled;
27 /**
28 * @var string[]
29 */
30 public $availableFeatures;
31 protected $circuitInfosType = InterconnectCircuitInfo::class;
32 protected $circuitInfosDataType = 'array';
33 /**
34 * @var string
35 */
36 public $creationTimestamp;
37 /**
38 * @var string
39 */
40 public $customerName;
41 /**
42 * @var string
43 */
44 public $description;
45 protected $expectedOutagesType = InterconnectOutageNotification::class;
46 protected $expectedOutagesDataType = 'array';
47 /**
48 * @var string
49 */
50 public $googleIpAddress;
51 /**
52 * @var string
53 */
54 public $googleReferenceId;
55 /**
56 * @var string
57 */
58 public $id;
59 /**
60 * @var string[]
61 */
62 public $interconnectAttachments;
63 /**
64 * @var string
65 */
66 public $interconnectType;
67 /**
68 * @var string
69 */
70 public $kind;
71 /**
72 * @var string
73 */
74 public $labelFingerprint;
75 /**
76 * @var string[]
77 */
78 public $labels;
79 /**
80 * @var string
81 */
82 public $linkType;
83 /**
84 * @var string
85 */
86 public $location;
87 protected $macsecType = InterconnectMacsec::class;
88 protected $macsecDataType = '';
89 /**
90 * @var bool
91 */
92 public $macsecEnabled;
93 /**
94 * @var string
95 */
96 public $name;
97 /**
98 * @var string
99 */
100 public $nocContactEmail;
101 /**
102 * @var string
103 */
104 public $operationalStatus;
105 /**
106 * @var string
107 */
108 public $peerIpAddress;
109 /**
110 * @var int
111 */
112 public $provisionedLinkCount;
113 /**
114 * @var string
115 */
116 public $remoteLocation;
117 /**
118 * @var string[]
119 */
120 public $requestedFeatures;
121 /**
122 * @var int
123 */
124 public $requestedLinkCount;
125 /**
126 * @var bool
127 */
128 public $satisfiesPzs;
129 /**
130 * @var string
131 */
132 public $selfLink;
133 /**
134 * @var string
135 */
136 public $state;
137
138 /**
139 * @param bool
140 */
141 public function setAdminEnabled($adminEnabled)
142 {
143 $this->adminEnabled = $adminEnabled;
144 }
145 /**
146 * @return bool
147 */
148 public function getAdminEnabled()
149 {
150 return $this->adminEnabled;
151 }
152 /**
153 * @param string[]
154 */
155 public function setAvailableFeatures($availableFeatures)
156 {
157 $this->availableFeatures = $availableFeatures;
158 }
159 /**
160 * @return string[]
161 */
162 public function getAvailableFeatures()
163 {
164 return $this->availableFeatures;
165 }
166 /**
167 * @param InterconnectCircuitInfo[]
168 */
169 public function setCircuitInfos($circuitInfos)
170 {
171 $this->circuitInfos = $circuitInfos;
172 }
173 /**
174 * @return InterconnectCircuitInfo[]
175 */
176 public function getCircuitInfos()
177 {
178 return $this->circuitInfos;
179 }
180 /**
181 * @param string
182 */
183 public function setCreationTimestamp($creationTimestamp)
184 {
185 $this->creationTimestamp = $creationTimestamp;
186 }
187 /**
188 * @return string
189 */
190 public function getCreationTimestamp()
191 {
192 return $this->creationTimestamp;
193 }
194 /**
195 * @param string
196 */
197 public function setCustomerName($customerName)
198 {
199 $this->customerName = $customerName;
200 }
201 /**
202 * @return string
203 */
204 public function getCustomerName()
205 {
206 return $this->customerName;
207 }
208 /**
209 * @param string
210 */
211 public function setDescription($description)
212 {
213 $this->description = $description;
214 }
215 /**
216 * @return string
217 */
218 public function getDescription()
219 {
220 return $this->description;
221 }
222 /**
223 * @param InterconnectOutageNotification[]
224 */
225 public function setExpectedOutages($expectedOutages)
226 {
227 $this->expectedOutages = $expectedOutages;
228 }
229 /**
230 * @return InterconnectOutageNotification[]
231 */
232 public function getExpectedOutages()
233 {
234 return $this->expectedOutages;
235 }
236 /**
237 * @param string
238 */
239 public function setGoogleIpAddress($googleIpAddress)
240 {
241 $this->googleIpAddress = $googleIpAddress;
242 }
243 /**
244 * @return string
245 */
246 public function getGoogleIpAddress()
247 {
248 return $this->googleIpAddress;
249 }
250 /**
251 * @param string
252 */
253 public function setGoogleReferenceId($googleReferenceId)
254 {
255 $this->googleReferenceId = $googleReferenceId;
256 }
257 /**
258 * @return string
259 */
260 public function getGoogleReferenceId()
261 {
262 return $this->googleReferenceId;
263 }
264 /**
265 * @param string
266 */
267 public function setId($id)
268 {
269 $this->id = $id;
270 }
271 /**
272 * @return string
273 */
274 public function getId()
275 {
276 return $this->id;
277 }
278 /**
279 * @param string[]
280 */
281 public function setInterconnectAttachments($interconnectAttachments)
282 {
283 $this->interconnectAttachments = $interconnectAttachments;
284 }
285 /**
286 * @return string[]
287 */
288 public function getInterconnectAttachments()
289 {
290 return $this->interconnectAttachments;
291 }
292 /**
293 * @param string
294 */
295 public function setInterconnectType($interconnectType)
296 {
297 $this->interconnectType = $interconnectType;
298 }
299 /**
300 * @return string
301 */
302 public function getInterconnectType()
303 {
304 return $this->interconnectType;
305 }
306 /**
307 * @param string
308 */
309 public function setKind($kind)
310 {
311 $this->kind = $kind;
312 }
313 /**
314 * @return string
315 */
316 public function getKind()
317 {
318 return $this->kind;
319 }
320 /**
321 * @param string
322 */
323 public function setLabelFingerprint($labelFingerprint)
324 {
325 $this->labelFingerprint = $labelFingerprint;
326 }
327 /**
328 * @return string
329 */
330 public function getLabelFingerprint()
331 {
332 return $this->labelFingerprint;
333 }
334 /**
335 * @param string[]
336 */
337 public function setLabels($labels)
338 {
339 $this->labels = $labels;
340 }
341 /**
342 * @return string[]
343 */
344 public function getLabels()
345 {
346 return $this->labels;
347 }
348 /**
349 * @param string
350 */
351 public function setLinkType($linkType)
352 {
353 $this->linkType = $linkType;
354 }
355 /**
356 * @return string
357 */
358 public function getLinkType()
359 {
360 return $this->linkType;
361 }
362 /**
363 * @param string
364 */
365 public function setLocation($location)
366 {
367 $this->location = $location;
368 }
369 /**
370 * @return string
371 */
372 public function getLocation()
373 {
374 return $this->location;
375 }
376 /**
377 * @param InterconnectMacsec
378 */
379 public function setMacsec(InterconnectMacsec $macsec)
380 {
381 $this->macsec = $macsec;
382 }
383 /**
384 * @return InterconnectMacsec
385 */
386 public function getMacsec()
387 {
388 return $this->macsec;
389 }
390 /**
391 * @param bool
392 */
393 public function setMacsecEnabled($macsecEnabled)
394 {
395 $this->macsecEnabled = $macsecEnabled;
396 }
397 /**
398 * @return bool
399 */
400 public function getMacsecEnabled()
401 {
402 return $this->macsecEnabled;
403 }
404 /**
405 * @param string
406 */
407 public function setName($name)
408 {
409 $this->name = $name;
410 }
411 /**
412 * @return string
413 */
414 public function getName()
415 {
416 return $this->name;
417 }
418 /**
419 * @param string
420 */
421 public function setNocContactEmail($nocContactEmail)
422 {
423 $this->nocContactEmail = $nocContactEmail;
424 }
425 /**
426 * @return string
427 */
428 public function getNocContactEmail()
429 {
430 return $this->nocContactEmail;
431 }
432 /**
433 * @param string
434 */
435 public function setOperationalStatus($operationalStatus)
436 {
437 $this->operationalStatus = $operationalStatus;
438 }
439 /**
440 * @return string
441 */
442 public function getOperationalStatus()
443 {
444 return $this->operationalStatus;
445 }
446 /**
447 * @param string
448 */
449 public function setPeerIpAddress($peerIpAddress)
450 {
451 $this->peerIpAddress = $peerIpAddress;
452 }
453 /**
454 * @return string
455 */
456 public function getPeerIpAddress()
457 {
458 return $this->peerIpAddress;
459 }
460 /**
461 * @param int
462 */
463 public function setProvisionedLinkCount($provisionedLinkCount)
464 {
465 $this->provisionedLinkCount = $provisionedLinkCount;
466 }
467 /**
468 * @return int
469 */
470 public function getProvisionedLinkCount()
471 {
472 return $this->provisionedLinkCount;
473 }
474 /**
475 * @param string
476 */
477 public function setRemoteLocation($remoteLocation)
478 {
479 $this->remoteLocation = $remoteLocation;
480 }
481 /**
482 * @return string
483 */
484 public function getRemoteLocation()
485 {
486 return $this->remoteLocation;
487 }
488 /**
489 * @param string[]
490 */
491 public function setRequestedFeatures($requestedFeatures)
492 {
493 $this->requestedFeatures = $requestedFeatures;
494 }
495 /**
496 * @return string[]
497 */
498 public function getRequestedFeatures()
499 {
500 return $this->requestedFeatures;
501 }
502 /**
503 * @param int
504 */
505 public function setRequestedLinkCount($requestedLinkCount)
506 {
507 $this->requestedLinkCount = $requestedLinkCount;
508 }
509 /**
510 * @return int
511 */
512 public function getRequestedLinkCount()
513 {
514 return $this->requestedLinkCount;
515 }
516 /**
517 * @param bool
518 */
519 public function setSatisfiesPzs($satisfiesPzs)
520 {
521 $this->satisfiesPzs = $satisfiesPzs;
522 }
523 /**
524 * @return bool
525 */
526 public function getSatisfiesPzs()
527 {
528 return $this->satisfiesPzs;
529 }
530 /**
531 * @param string
532 */
533 public function setSelfLink($selfLink)
534 {
535 $this->selfLink = $selfLink;
536 }
537 /**
538 * @return string
539 */
540 public function getSelfLink()
541 {
542 return $this->selfLink;
543 }
544 /**
545 * @param string
546 */
547 public function setState($state)
548 {
549 $this->state = $state;
550 }
551 /**
552 * @return string
553 */
554 public function getState()
555 {
556 return $this->state;
557 }
558}
559
560// Adding a class alias for backwards compatibility with the previous class name.
561class_alias(Interconnect::class, 'Google_Service_Compute_Interconnect');
Note: See TracBrowser for help on using the repository browser.