설명 없음

Instance.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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_Appengine_Instance extends Google_Model
  18. {
  19. public $appEngineRelease;
  20. public $availability;
  21. public $averageLatency;
  22. public $errors;
  23. public $id;
  24. public $memoryUsage;
  25. public $name;
  26. public $qps;
  27. public $requests;
  28. public $startTime;
  29. public $vmDebugEnabled;
  30. public $vmId;
  31. public $vmIp;
  32. public $vmName;
  33. public $vmStatus;
  34. public $vmZoneName;
  35. public function setAppEngineRelease($appEngineRelease)
  36. {
  37. $this->appEngineRelease = $appEngineRelease;
  38. }
  39. public function getAppEngineRelease()
  40. {
  41. return $this->appEngineRelease;
  42. }
  43. public function setAvailability($availability)
  44. {
  45. $this->availability = $availability;
  46. }
  47. public function getAvailability()
  48. {
  49. return $this->availability;
  50. }
  51. public function setAverageLatency($averageLatency)
  52. {
  53. $this->averageLatency = $averageLatency;
  54. }
  55. public function getAverageLatency()
  56. {
  57. return $this->averageLatency;
  58. }
  59. public function setErrors($errors)
  60. {
  61. $this->errors = $errors;
  62. }
  63. public function getErrors()
  64. {
  65. return $this->errors;
  66. }
  67. public function setId($id)
  68. {
  69. $this->id = $id;
  70. }
  71. public function getId()
  72. {
  73. return $this->id;
  74. }
  75. public function setMemoryUsage($memoryUsage)
  76. {
  77. $this->memoryUsage = $memoryUsage;
  78. }
  79. public function getMemoryUsage()
  80. {
  81. return $this->memoryUsage;
  82. }
  83. public function setName($name)
  84. {
  85. $this->name = $name;
  86. }
  87. public function getName()
  88. {
  89. return $this->name;
  90. }
  91. public function setQps($qps)
  92. {
  93. $this->qps = $qps;
  94. }
  95. public function getQps()
  96. {
  97. return $this->qps;
  98. }
  99. public function setRequests($requests)
  100. {
  101. $this->requests = $requests;
  102. }
  103. public function getRequests()
  104. {
  105. return $this->requests;
  106. }
  107. public function setStartTime($startTime)
  108. {
  109. $this->startTime = $startTime;
  110. }
  111. public function getStartTime()
  112. {
  113. return $this->startTime;
  114. }
  115. public function setVmDebugEnabled($vmDebugEnabled)
  116. {
  117. $this->vmDebugEnabled = $vmDebugEnabled;
  118. }
  119. public function getVmDebugEnabled()
  120. {
  121. return $this->vmDebugEnabled;
  122. }
  123. public function setVmId($vmId)
  124. {
  125. $this->vmId = $vmId;
  126. }
  127. public function getVmId()
  128. {
  129. return $this->vmId;
  130. }
  131. public function setVmIp($vmIp)
  132. {
  133. $this->vmIp = $vmIp;
  134. }
  135. public function getVmIp()
  136. {
  137. return $this->vmIp;
  138. }
  139. public function setVmName($vmName)
  140. {
  141. $this->vmName = $vmName;
  142. }
  143. public function getVmName()
  144. {
  145. return $this->vmName;
  146. }
  147. public function setVmStatus($vmStatus)
  148. {
  149. $this->vmStatus = $vmStatus;
  150. }
  151. public function getVmStatus()
  152. {
  153. return $this->vmStatus;
  154. }
  155. public function setVmZoneName($vmZoneName)
  156. {
  157. $this->vmZoneName = $vmZoneName;
  158. }
  159. public function getVmZoneName()
  160. {
  161. return $this->vmZoneName;
  162. }
  163. }