説明なし

InterconnectAttachment.php 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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_InterconnectAttachment extends Google_Collection
  18. {
  19. protected $collection_key = 'candidateSubnets';
  20. public $adminEnabled;
  21. public $bandwidth;
  22. public $candidateSubnets;
  23. public $cloudRouterIpAddress;
  24. public $creationTimestamp;
  25. public $customerRouterIpAddress;
  26. public $description;
  27. public $edgeAvailabilityDomain;
  28. public $googleReferenceId;
  29. public $id;
  30. public $interconnect;
  31. public $kind;
  32. public $name;
  33. public $operationalStatus;
  34. public $pairingKey;
  35. public $partnerAsn;
  36. protected $partnerMetadataType = 'Google_Service_Compute_InterconnectAttachmentPartnerMetadata';
  37. protected $partnerMetadataDataType = '';
  38. protected $privateInterconnectInfoType = 'Google_Service_Compute_InterconnectAttachmentPrivateInfo';
  39. protected $privateInterconnectInfoDataType = '';
  40. public $region;
  41. public $router;
  42. public $selfLink;
  43. public $state;
  44. public $type;
  45. public $vlanTag8021q;
  46. public function setAdminEnabled($adminEnabled)
  47. {
  48. $this->adminEnabled = $adminEnabled;
  49. }
  50. public function getAdminEnabled()
  51. {
  52. return $this->adminEnabled;
  53. }
  54. public function setBandwidth($bandwidth)
  55. {
  56. $this->bandwidth = $bandwidth;
  57. }
  58. public function getBandwidth()
  59. {
  60. return $this->bandwidth;
  61. }
  62. public function setCandidateSubnets($candidateSubnets)
  63. {
  64. $this->candidateSubnets = $candidateSubnets;
  65. }
  66. public function getCandidateSubnets()
  67. {
  68. return $this->candidateSubnets;
  69. }
  70. public function setCloudRouterIpAddress($cloudRouterIpAddress)
  71. {
  72. $this->cloudRouterIpAddress = $cloudRouterIpAddress;
  73. }
  74. public function getCloudRouterIpAddress()
  75. {
  76. return $this->cloudRouterIpAddress;
  77. }
  78. public function setCreationTimestamp($creationTimestamp)
  79. {
  80. $this->creationTimestamp = $creationTimestamp;
  81. }
  82. public function getCreationTimestamp()
  83. {
  84. return $this->creationTimestamp;
  85. }
  86. public function setCustomerRouterIpAddress($customerRouterIpAddress)
  87. {
  88. $this->customerRouterIpAddress = $customerRouterIpAddress;
  89. }
  90. public function getCustomerRouterIpAddress()
  91. {
  92. return $this->customerRouterIpAddress;
  93. }
  94. public function setDescription($description)
  95. {
  96. $this->description = $description;
  97. }
  98. public function getDescription()
  99. {
  100. return $this->description;
  101. }
  102. public function setEdgeAvailabilityDomain($edgeAvailabilityDomain)
  103. {
  104. $this->edgeAvailabilityDomain = $edgeAvailabilityDomain;
  105. }
  106. public function getEdgeAvailabilityDomain()
  107. {
  108. return $this->edgeAvailabilityDomain;
  109. }
  110. public function setGoogleReferenceId($googleReferenceId)
  111. {
  112. $this->googleReferenceId = $googleReferenceId;
  113. }
  114. public function getGoogleReferenceId()
  115. {
  116. return $this->googleReferenceId;
  117. }
  118. public function setId($id)
  119. {
  120. $this->id = $id;
  121. }
  122. public function getId()
  123. {
  124. return $this->id;
  125. }
  126. public function setInterconnect($interconnect)
  127. {
  128. $this->interconnect = $interconnect;
  129. }
  130. public function getInterconnect()
  131. {
  132. return $this->interconnect;
  133. }
  134. public function setKind($kind)
  135. {
  136. $this->kind = $kind;
  137. }
  138. public function getKind()
  139. {
  140. return $this->kind;
  141. }
  142. public function setName($name)
  143. {
  144. $this->name = $name;
  145. }
  146. public function getName()
  147. {
  148. return $this->name;
  149. }
  150. public function setOperationalStatus($operationalStatus)
  151. {
  152. $this->operationalStatus = $operationalStatus;
  153. }
  154. public function getOperationalStatus()
  155. {
  156. return $this->operationalStatus;
  157. }
  158. public function setPairingKey($pairingKey)
  159. {
  160. $this->pairingKey = $pairingKey;
  161. }
  162. public function getPairingKey()
  163. {
  164. return $this->pairingKey;
  165. }
  166. public function setPartnerAsn($partnerAsn)
  167. {
  168. $this->partnerAsn = $partnerAsn;
  169. }
  170. public function getPartnerAsn()
  171. {
  172. return $this->partnerAsn;
  173. }
  174. /**
  175. * @param Google_Service_Compute_InterconnectAttachmentPartnerMetadata
  176. */
  177. public function setPartnerMetadata(Google_Service_Compute_InterconnectAttachmentPartnerMetadata $partnerMetadata)
  178. {
  179. $this->partnerMetadata = $partnerMetadata;
  180. }
  181. /**
  182. * @return Google_Service_Compute_InterconnectAttachmentPartnerMetadata
  183. */
  184. public function getPartnerMetadata()
  185. {
  186. return $this->partnerMetadata;
  187. }
  188. /**
  189. * @param Google_Service_Compute_InterconnectAttachmentPrivateInfo
  190. */
  191. public function setPrivateInterconnectInfo(Google_Service_Compute_InterconnectAttachmentPrivateInfo $privateInterconnectInfo)
  192. {
  193. $this->privateInterconnectInfo = $privateInterconnectInfo;
  194. }
  195. /**
  196. * @return Google_Service_Compute_InterconnectAttachmentPrivateInfo
  197. */
  198. public function getPrivateInterconnectInfo()
  199. {
  200. return $this->privateInterconnectInfo;
  201. }
  202. public function setRegion($region)
  203. {
  204. $this->region = $region;
  205. }
  206. public function getRegion()
  207. {
  208. return $this->region;
  209. }
  210. public function setRouter($router)
  211. {
  212. $this->router = $router;
  213. }
  214. public function getRouter()
  215. {
  216. return $this->router;
  217. }
  218. public function setSelfLink($selfLink)
  219. {
  220. $this->selfLink = $selfLink;
  221. }
  222. public function getSelfLink()
  223. {
  224. return $this->selfLink;
  225. }
  226. public function setState($state)
  227. {
  228. $this->state = $state;
  229. }
  230. public function getState()
  231. {
  232. return $this->state;
  233. }
  234. public function setType($type)
  235. {
  236. $this->type = $type;
  237. }
  238. public function getType()
  239. {
  240. return $this->type;
  241. }
  242. public function setVlanTag8021q($vlanTag8021q)
  243. {
  244. $this->vlanTag8021q = $vlanTag8021q;
  245. }
  246. public function getVlanTag8021q()
  247. {
  248. return $this->vlanTag8021q;
  249. }
  250. }