Nenhuma descrição

Route.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. class Google_Service_Compute_Route extends Google_Collection
  18. {
  19. protected $collection_key = 'warnings';
  20. public $creationTimestamp;
  21. public $description;
  22. public $destRange;
  23. public $id;
  24. public $kind;
  25. public $name;
  26. public $network;
  27. public $nextHopGateway;
  28. public $nextHopInstance;
  29. public $nextHopIp;
  30. public $nextHopNetwork;
  31. public $nextHopPeering;
  32. public $nextHopVpnTunnel;
  33. public $priority;
  34. public $selfLink;
  35. public $tags;
  36. protected $warningsType = 'Google_Service_Compute_RouteWarnings';
  37. protected $warningsDataType = 'array';
  38. public function setCreationTimestamp($creationTimestamp)
  39. {
  40. $this->creationTimestamp = $creationTimestamp;
  41. }
  42. public function getCreationTimestamp()
  43. {
  44. return $this->creationTimestamp;
  45. }
  46. public function setDescription($description)
  47. {
  48. $this->description = $description;
  49. }
  50. public function getDescription()
  51. {
  52. return $this->description;
  53. }
  54. public function setDestRange($destRange)
  55. {
  56. $this->destRange = $destRange;
  57. }
  58. public function getDestRange()
  59. {
  60. return $this->destRange;
  61. }
  62. public function setId($id)
  63. {
  64. $this->id = $id;
  65. }
  66. public function getId()
  67. {
  68. return $this->id;
  69. }
  70. public function setKind($kind)
  71. {
  72. $this->kind = $kind;
  73. }
  74. public function getKind()
  75. {
  76. return $this->kind;
  77. }
  78. public function setName($name)
  79. {
  80. $this->name = $name;
  81. }
  82. public function getName()
  83. {
  84. return $this->name;
  85. }
  86. public function setNetwork($network)
  87. {
  88. $this->network = $network;
  89. }
  90. public function getNetwork()
  91. {
  92. return $this->network;
  93. }
  94. public function setNextHopGateway($nextHopGateway)
  95. {
  96. $this->nextHopGateway = $nextHopGateway;
  97. }
  98. public function getNextHopGateway()
  99. {
  100. return $this->nextHopGateway;
  101. }
  102. public function setNextHopInstance($nextHopInstance)
  103. {
  104. $this->nextHopInstance = $nextHopInstance;
  105. }
  106. public function getNextHopInstance()
  107. {
  108. return $this->nextHopInstance;
  109. }
  110. public function setNextHopIp($nextHopIp)
  111. {
  112. $this->nextHopIp = $nextHopIp;
  113. }
  114. public function getNextHopIp()
  115. {
  116. return $this->nextHopIp;
  117. }
  118. public function setNextHopNetwork($nextHopNetwork)
  119. {
  120. $this->nextHopNetwork = $nextHopNetwork;
  121. }
  122. public function getNextHopNetwork()
  123. {
  124. return $this->nextHopNetwork;
  125. }
  126. public function setNextHopPeering($nextHopPeering)
  127. {
  128. $this->nextHopPeering = $nextHopPeering;
  129. }
  130. public function getNextHopPeering()
  131. {
  132. return $this->nextHopPeering;
  133. }
  134. public function setNextHopVpnTunnel($nextHopVpnTunnel)
  135. {
  136. $this->nextHopVpnTunnel = $nextHopVpnTunnel;
  137. }
  138. public function getNextHopVpnTunnel()
  139. {
  140. return $this->nextHopVpnTunnel;
  141. }
  142. public function setPriority($priority)
  143. {
  144. $this->priority = $priority;
  145. }
  146. public function getPriority()
  147. {
  148. return $this->priority;
  149. }
  150. public function setSelfLink($selfLink)
  151. {
  152. $this->selfLink = $selfLink;
  153. }
  154. public function getSelfLink()
  155. {
  156. return $this->selfLink;
  157. }
  158. public function setTags($tags)
  159. {
  160. $this->tags = $tags;
  161. }
  162. public function getTags()
  163. {
  164. return $this->tags;
  165. }
  166. /**
  167. * @param Google_Service_Compute_RouteWarnings
  168. */
  169. public function setWarnings($warnings)
  170. {
  171. $this->warnings = $warnings;
  172. }
  173. /**
  174. * @return Google_Service_Compute_RouteWarnings
  175. */
  176. public function getWarnings()
  177. {
  178. return $this->warnings;
  179. }
  180. }