Ei kuvausta

ResourceView.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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_Resourceviews_ResourceView extends Google_Collection
  18. {
  19. protected $collection_key = 'resources';
  20. public $creationTimestamp;
  21. public $description;
  22. protected $endpointsType = 'Google_Service_Resourceviews_ServiceEndpoint';
  23. protected $endpointsDataType = 'array';
  24. public $fingerprint;
  25. public $id;
  26. public $kind;
  27. protected $labelsType = 'Google_Service_Resourceviews_Label';
  28. protected $labelsDataType = 'array';
  29. public $name;
  30. public $network;
  31. public $resources;
  32. public $selfLink;
  33. public $size;
  34. public function setCreationTimestamp($creationTimestamp)
  35. {
  36. $this->creationTimestamp = $creationTimestamp;
  37. }
  38. public function getCreationTimestamp()
  39. {
  40. return $this->creationTimestamp;
  41. }
  42. public function setDescription($description)
  43. {
  44. $this->description = $description;
  45. }
  46. public function getDescription()
  47. {
  48. return $this->description;
  49. }
  50. /**
  51. * @param Google_Service_Resourceviews_ServiceEndpoint
  52. */
  53. public function setEndpoints($endpoints)
  54. {
  55. $this->endpoints = $endpoints;
  56. }
  57. /**
  58. * @return Google_Service_Resourceviews_ServiceEndpoint
  59. */
  60. public function getEndpoints()
  61. {
  62. return $this->endpoints;
  63. }
  64. public function setFingerprint($fingerprint)
  65. {
  66. $this->fingerprint = $fingerprint;
  67. }
  68. public function getFingerprint()
  69. {
  70. return $this->fingerprint;
  71. }
  72. public function setId($id)
  73. {
  74. $this->id = $id;
  75. }
  76. public function getId()
  77. {
  78. return $this->id;
  79. }
  80. public function setKind($kind)
  81. {
  82. $this->kind = $kind;
  83. }
  84. public function getKind()
  85. {
  86. return $this->kind;
  87. }
  88. /**
  89. * @param Google_Service_Resourceviews_Label
  90. */
  91. public function setLabels($labels)
  92. {
  93. $this->labels = $labels;
  94. }
  95. /**
  96. * @return Google_Service_Resourceviews_Label
  97. */
  98. public function getLabels()
  99. {
  100. return $this->labels;
  101. }
  102. public function setName($name)
  103. {
  104. $this->name = $name;
  105. }
  106. public function getName()
  107. {
  108. return $this->name;
  109. }
  110. public function setNetwork($network)
  111. {
  112. $this->network = $network;
  113. }
  114. public function getNetwork()
  115. {
  116. return $this->network;
  117. }
  118. public function setResources($resources)
  119. {
  120. $this->resources = $resources;
  121. }
  122. public function getResources()
  123. {
  124. return $this->resources;
  125. }
  126. public function setSelfLink($selfLink)
  127. {
  128. $this->selfLink = $selfLink;
  129. }
  130. public function getSelfLink()
  131. {
  132. return $this->selfLink;
  133. }
  134. public function setSize($size)
  135. {
  136. $this->size = $size;
  137. }
  138. public function getSize()
  139. {
  140. return $this->size;
  141. }
  142. }